如何在Youtube视频(z-index)上显示div?

时间:2011-08-10 19:34:28

标签: flash video youtube z-index

我想在YouTube视频上展示一个div,但无法让它发挥作用。我知道如果您将wmode设置为transparentopaque它应该有效,但我只在<embed><object>标记时才看到这项工作用来。 YouTube现在将视频嵌入到<iframe>中,所以当我尝试使用时,它无效。这是我的代码的样子。

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title></title>
        <style type="text/css">@import "reset.css";</style> 
        <style type="text/css">
            body {
            background:#000;
            font:62.5%/240% Helvetica, Arial, sans-serif;
            overflow:hidden; /* To avoid showing a scrollbar */
            }
            div {
            background:#f00;
            position:absolute;
            min-width:100%;
            min-height:100px;
            z-index:99; 
            }
        </style>
    </head>
    <body>
        <div></div>
        <iframe width="100%" height="100%" src="http://www.youtube.com/v/8lVJV--SrGg&loop=1&autoplay=1&autohide=1&hd=1&modestbranding=1" frameborder="0"  allowfullscreen></iframe>
    </body>
    </html>

4 个答案:

答案 0 :(得分:19)

我在嵌入“链接”的末尾添加了?wmode = opaque,它对我有用。

http://www.youtube.com/embed/I7a3acpVp1g ?wmode = opaque为我工作。所以完全是

 <iframe width="250" height="188" src="http://www.youtube.com/embed/I7a3acpVp1g?wmode=opaque" frameborder="0" allowfullscreen></iframe>

答案 1 :(得分:6)

显然当使用iframe时,它会自动将wmode设置为窗口,因此请尝试通过修改iframe src直接设置flash播放器的wmode:

src="http://www.youtube.com/v/8lVJV--SrGg?loop=1&autoplay=1&autohide=1&hd=1&modestbranding=1&wmode=opaque"

如您所见,我将&wmode=opaque添加到参数列表的末尾。这应该使您现在可以覆盖div。参数也以?开头,而不是&

答案 2 :(得分:1)

在rel = 0之后(我已经有了这个)我添加了这个&amp; modestbranding = 1&amp; wmode = opaque“现在这适用于所有主流浏览器,包括IE11.0。所以,这对我有用。 非常感谢2015年新年快乐!致该社区的所有成员。

答案 3 :(得分:0)

试试这段代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"   
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title></title>
        <style type="text/css">@import "reset.css";</style> 
        <style type="text/css">
            body {
            background:#000;
            font:62.5%/240% Helvetica, Arial, sans-serif;
            overflow:hidden; /* To avoid showing a scrollbar */
            }
            div {
            background:#f00;
            position:absolute;
            min-width:100%;
            min-height:100px;
            z-index:99; 
            }
            iframe {
            position:absolute;
            min-width:100%;
            min-height:100%;
            }
        </style>
    </head>
    <body>
        <div></div>
        <iframe src="http://www.youtube.com/v/8lVJV--SrGg?loop=1" frameborder="0"></iframe>
    </body>
    </html>