这是我的代码:
我的页面上有一个Flash幻灯片。我使用了thickbox进行登录,但当有人点击登录时,flash会覆盖thickbox。
我已经设法在Firefox上解决了这个问题,但似乎没有任何东西可以在Internet Explorer上运行。
答案 0 :(得分:1)
您需要使用以下某个属性才能让Flash位于“DOM”内而不是“内”。
WMODE =透明 -要么- WMODE =不透明
具有破坏许多功能的缺点。
答案 1 :(得分:1)
"wmode", "transparent"
添加为嵌入函数的参数,或者在swfoject中添加so.addVariable("wmode", "transparent");
答案 2 :(得分: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" />
行
这是使其发挥作用的关键。
希望它对你有所帮助。
再见
答案 3 :(得分:1)
可以使用:
搜索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;
})
答案 4 :(得分:1)
Trey 的答案适用于页面上的所有Flash项目。
tb_remove函数的代码
$('object').each(function(){ this.style.display=this.regDisplay; })
应该放在
里面j("#TB_window").fadeOut("fast",function(){
...
});
这种方式只会在淡出后出现而不是立即......
答案 5 :(得分: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();
}
答案 6 :(得分:1)
简单易行。仅在IE9和FIREFOX上测试过。
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的话来说......就是这样!