gpt4 book ai didi

css - 在 div 内移动视频

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

我正在创建一个带有视频标题的网站。实现一切顺利。尽管有一件事进展不顺利。

实际上,我应该能够在 div 中重新定位视频,以便看到另一部分内容。 (见截图) Screenshot

我想要的是视频会往上,这样我就可以看到视频的下半部分。

现在在 505px 高度之后有一个溢出。

有人可以帮我解决这个问题吗?

我使用的css:

#cover
{
width: auto;
height: 505px;
}

.header-unit1
{
height: 505px;
border-right:none;
border-left: none;
position: relative;
padding: 20px;
}

#video-container1
{
position: absolute;
z-index:-10;
}

#video-container1
{
top:0%;
left:0%;
height:505px;
width:100%;
overflow: hidden;
}

#testvid video
{
position:absolute;
}

#testvid video.fillWidth1
{
width: 100%;
}

任何提示都会很好!

最佳答案

以下是(我认为)您想要完成的总体思路:

HTML:

<div class="container">
<video ...></video>
</div>

CSS:

.container {
width:100%;
height: 505px;
position:relative;
overflow:hidden;
}

video{
max-width:100%;
position:absolute;
top:0px;
}

然后为视频顶部位置设置动画。您可以使用 Javascript 或添加另一个类,例如 video.animated { top: 50px; }

关于css - 在 div 内移动视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21285566/

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