使用 z-index 更改 div 可见性
我正在开发一个只有一页的网站。我有几个默认隐藏的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 jQuery 轻松设置 z-index 属性:
确保文档准备好后就触发 jQuery。
You can set the z-index property with jQuery easily:
Make sure you're firing the jQuery once the document is ready.
使用 jQuery 设置 zIndex
$('#video1').css('zIndex', '100');
use jQuery to set the zIndex
$('#video1').css('zIndex', '100');
尝试
代替
try
instead of