Flash 在 Internet Explorer 上覆盖厚框

Posted

技术标签:

【中文标题】Flash 在 Internet Explorer 上覆盖厚框【英文标题】:Flash overlays thickbox on Internet Explorer 【发布时间】:2010-10-21 19:07:38 【问题描述】:

这是我的代码:

我的页面上有一个 Flash 幻灯片。我使用的是thickbox登录,但是当有人点击登录时,flash会覆盖thickbox。

我已经设法在 Firefox 上解决了这个问题,但在 Internet Explorer 上似乎没有任何问题。

【问题讨论】:

【参考方案1】:

您需要使用以下属性之一才能使 Flash 位于 DOM“内部”而不是其上方。

wmode=透明 -要么- wmode=不透明

具有破坏许多功能的缺点。

【讨论】:

不幸的是,我已经尝试过了,但它似乎不起作用。 :( 感谢您的回复。【参考方案2】:

spender 是正确的,但他没有解释太多。 wmode 是嵌入 swf 时在 html 中设置的属性,需要将其设置为透明。因此,如果您使用 AC_RunActiveContent,您将添加 "wmode", "transparent" 作为嵌入函数的参数,或者在 swfoject 中添加 so.addVariable("wmode", "transparent");

【讨论】:

【参考方案3】:

我对以下 flash 对象也有同样的问题:

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"   id="tech" align="middle">
          <param name="allowScriptAccess" value="sameDomain" />
          <param name="movie" value="banner/banner.swf?xml_path=banner/slides.xml" />
          <param name="quality" value="high" />
          <param name="wmode" value="opaque" />
          <embed src="banner/banner.swf?xml_path=banner/slides.xml" quality="high"   name="tech" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"  />                                                             

        </object> 

注意&lt;param name="wmode" value="opaque" /&gt;这一行 这是让它发挥作用的关键。

希望对你有帮助。

再见

【讨论】:

【参考方案4】:

在thickbox.js 文件中你可以使用这个:

搜索 tb_show 函数并将其添加到“try”末尾的“catch”之前:

$('object').each(function() this.regDisplay=this.style.display; this.style.display='none'; )

$('#TB_window object').each(function() this.style.display=this.regDisplay; )

搜索 tb_remove 函数,并在返回前添加:

$('object').each(function() this.style.display=this.regDisplay; )

【讨论】:

【参考方案5】:

Trey 的答案适用于页面上的所有 Flash 项目。

tb_remove 函数的代码

$('object').each(function() this.style.display=this.regDisplay; )

应该放在里面

j("#TB_window").fadeOut("fast",function()
...
);

这样它只会在淡出之后出现,而不是立即出现......

【讨论】:

【参考方案6】:

好的, 在网上搜索了 2 天后,我找到了一个纯 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();    
 

【讨论】:

【参考方案7】:

简单的方法。仅在 IE9 和 Firefox 上测试。

Mani's Solution

    将 Flash 内容包装在 div 中 添加到您的对象标签 在嵌入标签中设置 wmode="transparent" 使用 css 为您的 div 设置位置和 z-index(不要设置负 z-index 值,因为它会使您的 flash 消失)

CSS

#flash 
position: relative; /*or absolute*/
z-index: 0;

XHTML

<div id="flash">
<object ...>
  <param name="wmode" value="transparent">
  <embed ... wmode="transparent">
</object>
</div>

而且,用 Mani 的话说……就是这样!

【讨论】:

以上是关于Flash 在 Internet Explorer 上覆盖厚框的主要内容,如果未能解决你的问题,请参考以下文章

Internet Explorer 8 及更低版本的 SVG 支持

使用 jQuery animate CSS opacity fade 和 @font-face 给 Internet Explorer 带来非常难看的字体渲染?

在同一台计算机上运行 Internet Explorer 6、Internet Explorer 7 和 Internet Explorer 8

为啥即使在模拟 Internet Explorer 8 文档模式时,Internet Explorer 11 也不支持条件注释?

对于某些情况,如 Internet Explorer 特定的 CSS 或 Internet Explorer 特定的 JavaScript 代码,如何仅针对 Internet Explorer 10?

如何从 Internet Explorer 11 降级到 Internet Explorer 10?