gpt4 book ai didi

html - 将关闭按钮固定在视频的右上角

转载 作者:行者123 更新时间:2023-11-28 12:21:25 26 4
gpt4 key购买 nike

当您第一次访问我的页面时,我有一个全屏播放的视频。我想在右上角有一个关闭按钮,但我只能把它放在窗口的右上角,而不是实际的视频

JSFIDDLE

  <div id="vid">
<a href="#" class="close_vid"/></a>
<video width="100%" height="100%" autoplay>
<source src="aa.ogg" type="video/ogg">
<source src="aa.mp4" type="video/mp4">
<source src="aa.webm" type="video/webm">
<object data="aa.mp4" width="100%" height="100%">
<embed width="100%" height="100%" src="movie.swf">
</object>
</video>
</div>

我的 CSS

#vid {
background-color: black;
clear: both;
float: left;
height: 100%;
list-style: none outside none;
position: relative;
width: 100%;
z-index: 900;
}

#vid .close_vid {
background: url(icons/zoom-on.png) no-repeat;
top: 6px;
cursor: pointer;
height: 290px;
opacity: 1;
position: absolute;
width: 29px;
z-index: 999;
right: 5px;
}

最佳答案

#vid .close_vid {
position: relative;
}

关于html - 将关闭按钮固定在视频的右上角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18836703/

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