FF3/Windows CSS z-index 在 YouTube 播放器上的问题

43
我遇到了一些CSS/z-index冲突的问题,与YouTube播放器有关。在Windows XP下的Firefox 3中,打开以下页面:http://spokenword.org/program/21396 点击Collect按钮,注意到弹出的
出现在YouTube播放器下面。在其他浏览器中,
会出现在上面。它的z-index值为999999。我已经尝试将包含播放器的元素的z-index设置为较低的值,但没有起作用。有什么办法可以让弹出窗口显示在播放器上方吗?

你使用的Flash版本是什么? - nsdel
5个回答

100

尝试添加wmode参数并将其设置为opaque,如下所示:

(请注意,它包含在两个标签中,一个是<param>标签,另一个是<embed>标签的wmode属性中。)

<object width='425' height='344'> 
    <param name='movie' value='http://www.youtube.com/v/Wj_JNwNbETA&hl=en&fs=1'> 
    <param name='type' value='application/x-shockwave-flash'> 
    <param name='allowfullscreen' value='true'> 
    <param name='allowscriptaccess' value='always'> 
    <param name="wmode" value="opaque" />
    <embed width='425' height='344'
            src='http://www.youtube.com/v/Wj_JNwNbETA&hl=en&fs=1'
            type='application/x-shockwave-flash'
            allowfullscreen='true'
            allowscriptaccess='always'
            wmode="opaque"
    ></embed> 
    </object> 

哈!成功了。我得去看看为什么。如果有的话,我本以为让玩家不透明可能会产生相反的效果。太好了! - Doug Kaye
很遗憾广告网络不会,有时甚至拒绝这样做。他们希望他们的广告能够渗透... - eduncan911
这段代码在IE中可以运行,但在Firefox中无法运行。我使用的是相同的代码。 - David García González

15

尽管CMS的建议是有效的,但有一个重要的更新。如果您想使用'iframe'而不是'embed',只需在视频链接后面添加?wmode=transparent,就可以实现这一点。我认为这更简单、更清洁。

更新,2014年2月

已经过了一段时间,这可能已经过时了。

有人报告说现在&wmode=transparent也可以使用。


1
这真的很好,ile!你从哪里了解到这个更新的? - Tom
4
这是最相关的答案,因为没有人再使用YouTube嵌入标签了。谢谢! - phreakhead
2
太好了!谢谢!确实,这是今天相关的答案 :) - Simon Steinberger
1
同意。这个应该放在最上面。 - Matt Stein

8
我找到了一个纯JS函数,可以在所有浏览器中解决这个问题!
代码如下:
function fix_flash() {
    // loop through every embed tag on the site
    var embeds = document.getElementsByTagName('embed');
    for (i = 0; i < embeds.length; i++) {
        embed = embeds[i];
        var new_embed;
        // everything but Firefox & Konqueror
        if (embed.outerHTML) {
            var html = embed.outerHTML;
            // replace an existing wmode parameter
            if (html.match(/wmode\s*=\s*('|")[a-zA-Z]+('|")/i))
                new_embed = html.replace(/wmode\s*=\s*('|")window('|")/i, "wmode='transparent'");
            // add a new wmode parameter
            else
                new_embed = html.replace(/<embed\s/i, "<embed wmode='transparent' ");
            // replace the old embed object with the fixed version
            embed.insertAdjacentHTML('beforeBegin', new_embed);
            embed.parentNode.removeChild(embed);
        } else {
            // cloneNode is buggy in some versions of Safari & Opera, but works fine in FF
            new_embed = embed.cloneNode(true);
            if (!new_embed.getAttribute('wmode') || new_embed.getAttribute('wmode').toLowerCase() == 'window')
                new_embed.setAttribute('wmode', 'transparent');
            embed.parentNode.replaceChild(new_embed, embed);
        }
    }
    // loop through every object tag on the site
    var objects = document.getElementsByTagName('object');
    for (i = 0; i < objects.length; i++) {
        object = objects[i];
        var new_object;
        // object is an IE specific tag so we can use outerHTML here
        if (object.outerHTML) {
            var html = object.outerHTML;
            // replace an existing wmode parameter
            if (html.match(/<param\s+name\s*=\s*('|")wmode('|")\s+value\s*=\s*('|")[a-zA-Z]+('|")\s*\/?\>/i))
                new_object = html.replace(/<param\s+name\s*=\s*('|")wmode('|")\s+value\s*=\s*('|")window('|")\s*\/?\>/i, "<param name='wmode' value='transparent' />");
            // add a new wmode parameter
            else
                new_object = html.replace(/<\/object\>/i, "<param name='wmode' value='transparent' />\n</object>");
            // loop through each of the param tags
            var children = object.childNodes;
            for (j = 0; j < children.length; j++) {
                try {
                    if (children[j] != null) {
                        var theName = children[j].getAttribute('name');
                        if (theName != null && theName.match(/flashvars/i)) {
                            new_object = new_object.replace(/<param\s+name\s*=\s*('|")flashvars('|")\s+value\s*=\s*('|")[^'"]*('|")\s*\/?\>/i, "<param name='flashvars' value='" + children[j].getAttribute('value') + "' />");
                        }
                    }
                }
                catch (err) {
                }
            }
            // replace the old embed object with the fixed versiony
            object.insertAdjacentHTML('beforeBegin', new_object);
            object.parentNode.removeChild(object);
        }
    }
}

现在你可以使用jQuery在页面加载时直接运行它:
 $(document).ready(function () {
            fix_flash();    
 });

真希望上个月我能看到这个,当时我正在寻找类似的东西!我的搜索从未发现这个页面。最终我写了几乎完全相同的东西! - Adam Heath
按照广告所述工作正常。谢谢! - micahwittman
但要小心,这个解决方案将会在IE<9上隐藏Flash对象。 - lima
嘿,fandelost。对我来说它仍然有效。我在这里使用了它:http://skydiveinisrael.com/,一切看起来都很好。 看一下中间的YouTube视频,然后按一下侧边栏上的图片。你会看到图片在Flash上方弹出,这正是想要的结果... - danfromisrael

3
我们使用jQuery Flash插件将YouTube链接转换为Flash电影。在这种情况下,wmode作为选项传递,以便让YouTube视频出现在我们打开的jQuery对话框下面:
$('a[href^="http://www.youtube.com"]').flash(
    { width: nnn, height: nnn, wmode: 'opaque' }
);

1

我注意到wmode="opaque"会严重影响CPU的使用率。 在我的笔记本上,Chrome的CPU使用率达到了50%(没有使用opaque时只有8%)。 因此,请小心使用这个选项。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接