gpt4 book ai didi

css - HTML5 背景视频不断出现,带有媒体查询

转载 作者:太空宇宙 更新时间:2023-11-03 23:18:17 26 4
gpt4 key购买 nike

所以我的 wordpress CMS 上有这个背景视频,但是现在我想告诉它在较小的设备上隐藏起来;它不断出现。这里出了什么问题?这是代码:

.header-unit {
height: 618px;
border: 0px solid #000;
border-right:none;
border-left: none;
position: relative;
padding: 20px;
}
#video-container {
position: absolute;
}

#video-container {
top:0%;
left:0%;
height:100%;
width:100%;
-webkit-filter: blur(7px);
-webkit-transition: all 3s ease;
-moz-transition: all 3s ease;
-ms-transition: all 3s ease;
-o-transition: all 3s ease;
transition: all 3s ease;
overflow: hidden;
}

#video-container:hover {
-webkit-filter: blur(0px);
-moz-opacity: 1;
opacity: 1;
}
video {
position:absolute;
z-index:0;
}
video.fillWidth {
width: 100%;

@media only screen and (max-width: 479px) and (min-width: 0px)
.video-container {
background:none;!important
}

顺便说一句,我看到过类似的问题,但答案对我没有帮助:-)

这是 HTML:

<div class="header-unit">
<div id="video-container">
<video autoplay loop class="fillWidth">
<source src=".../uploads/2015/03/test.mp4" type="video/mp4"/>
</video>
</div><!-- end video-container -->
</div><!-- end .header-unit -->

最佳答案

您的媒体查询针对的是 .video-container 类而不是#video-container id,并且您的视频是 html 元素而不是背景元素

改变

@media only screen and (max-width: 479px) and (min-width: 0px)
.video-container {
background:none;!important
}

@media only screen and (max-width: 479px) and (min-width: 0px)
#video-container {
display:none;!important
}

关于css - HTML5 背景视频不断出现,带有媒体查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29657394/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com