1

这是我的代码:

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

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

4

7 回答 7

1

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

tb_remove 函数的代码

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

应该放在里面

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

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

于 2010-08-17T08:55:41.887 回答
1

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

玛尼的解决方案

  1. 将您的 Flash 内容包装在一个 div 中
  2. 添加到您的对象标签
  3. 在嵌入标签中设置 wmode="transparent"
  4. 使用 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 的话说……就是这样!

于 2011-12-12T21:02:10.817 回答
1

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

于 2009-04-25T19:53:38.360 回答
1

我对以下 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" width="690" height="400" 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" width="690" height="400" name="tech" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"  />                                                             

        </object> 

请注意这行<param name="wmode" value="opaque" /> 这是使其工作的关键。

希望它可以帮助你。

再见

于 2010-01-02T14:30:52.740 回答
1

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

wmode=透明 - 或 - wmode=不透明

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

于 2009-04-25T13:52:47.197 回答
1

好的,在网上搜索了 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();    
 }
于 2010-11-26T00:20:53.047 回答
1

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

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

$('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; })

于 2010-02-26T00:08:08.990 回答