如何为每个flash对象添加wmode =“transparent”;嵌入标签?

时间:2010-04-24 12:43:44

标签: flash transparency transparent wmode

我有一个显示来自issuu.com的动态Flash内容的页面。我需要添加wmode="transparent",否则导航菜单会在flash下显示。使用jQuery或简单的java脚本有一个简短的方法吗?

每次添加闪光灯时,我都不想更改嵌入代码。

6 个答案:

答案 0 :(得分:11)

确定, 在网上搜索答案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();
      // Call Function
 }); 

答案 1 :(得分:8)

您可以使用此Jquery代码:

$("object[type='application/x-shockwave-flash']").append('<param name="wMode" value="transparent"/>');

答案 2 :(得分:3)

我无法让Mannaz版本正常工作,并想要一个更简洁的jQuery函数将元素重写到页面中,所以写了一个新的:

    function fixFlash() {
        $('object').each(function(){
            $(this).find('embed').attr('wmode','transparent');
            if($(this).find('param[name=wmode]').attr('value') != 'transparent') {
                $(this).prepend('<param name="wmode" value="transparent" />');
            }
            temp_var = $(this).parent().html();
            $(this).parent().html(temp_var);
        });
    }
    // Put function execute into onload area
    fixFlash();

答案 3 :(得分:2)

在stackoverflow中的另一篇文章中,使用JQuery可以正常工作

$("embed").attr("wmode", "opaque").wrap('<div>');

I use this when using a FCKeditor youtube plugin, as the plugin doesn't wrap the embed node with a object node.

  $('embed').each(function(){
    if($(this).parent()[0]['tagName'] !='OBJECT'){
      $(this).attr("wmode", "opaque").wrap('<div>');
    }
  });

答案 4 :(得分:1)

上次检查时,JS改变wmode无法正常工作。创建Flash对象后,更改其wmode值没有实际效果。

你需要在后端或者如果不可能的话,在JS BUT中写这个对象之前做这个。

HTH

答案 5 :(得分:1)

这是我可以找到的最简单且与浏览器兼容的解决方案,以便在页面呈现后删除wMode =“window”对象。

在Internet Explorer中,一旦将对象的子节点插入DOM,就无法对其进行修改。最好的解决方案是通过修改outerHTML来重新插入/重新呈现它。

在大多数其他浏览器中,修改object / embed的属性是可能的,但一旦渲染就没有效果。这里,元素在相同位置的重新插入导致重新渲染。 .wrap()。unwrap()是jQuery中出现的最简单的方法。

$("embed[wmode=window], embed:not([wmode])").attr("wmode", "opaque").wrap("<div/>").unwrap();
$("object:has(param[name=wmode][value=window]), object:not(:has(> param[name=wmode]))").each(object);

function object() {
  this.outerHTML = this.outerHTML.replace(/<(?:[^">]+|(["']).*?\1)*>/, '$&<param name="wmode" value="opaque"/>');
}