使用 z-index 更改 div 可见性

发布于 2024-12-01 14:04:41 字数 270 浏览 0 评论 0原文

我正在开发一个只有一页的网站。我有几个默认隐藏的 HTML5 视频,当单击链接时,它们会显示在覆盖(模式)框中。

目前我只是用 JS 显示和隐藏它们,但是“display: none;”页面加载似乎会在视频显示后导致视频控件出现问题...

因此,为了避免完全隐藏视频,我认为将它们重新排列在主要内容后面,并使用 z-index 将每个视频放在前面。我不担心旧浏览器的 z-index 问题。

有没有一种简单的方法可以用 JQuery 来做到这一点,或者我必须编写一个自定义函数?

I'm working on a 1-page website. I've got several HTML5 videos that are hidden by default and when clicking on a link they are displayed in a overlay (modal) box.

At the moment I'm just showing and hiding them with JS however the "display: none;" on page load seems to cause an issue with the controls of the video once it's been revealed...

So to avoid hiding the videos altogether I thought instead to rearrange them behind the main content and bring each one to the front by using z-index. I'm not concerned about z-index issues with old browsers.

is there an easy way to do this with JQuery or would I have to write a custom function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

脱离于你 2024-12-08 14:04:41

您可以使用 jQuery 轻松设置 z-index 属性:

$('#video1').css('z-index', '10');

确保文档准备好后就触发 jQuery。

You can set the z-index property with jQuery easily:

$('#video1').css('z-index', '10');

Make sure you're firing the jQuery once the document is ready.

煞人兵器 2024-12-08 14:04:41

使用 jQuery 设置 zIndex

$('#video1').css('zIndex', '100');

use jQuery to set the zIndex

$('#video1').css('zIndex', '100');

红衣飘飘貌似仙 2024-12-08 14:04:41

尝试

visibility:hidden;

代替

display:none;

try

visibility:hidden;

instead of

display:none;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文