2

http://mindfulintegrations.com/signiacapital/index.html

它在 FF3 和 IE8 中使用 SwfObject2 和 wmode=transparent 运行良好,但对于我来说,我无法在 IE7 中获得下拉菜单以覆盖 Flash 内容。任何帮助,将不胜感激。

我尝试过使用 Z-index,老实说,我对它们的理解有些低。也许我可以做一些事情来解决我的问题?

谢谢。

<script type="text/javascript" src="flash/swfobject.js"></script>
    <script type="text/javascript">
        var flashvars = {};
        var params = {};
        params.wmode = "transparent";
        var attributes = {};
        attributes.id = "homemovie";
        swfobject.embedSWF("flash/home_movie.swf", "homemovie", "1024", "330", "9.0.0", false, flashvars, params, attributes);
    </script>

是我的索引页中的脚本。

对于 Z 索引,这是各种 DIV 的 CSS

对于标题容器

#header-container{ position:relative; height:140px; background-color:#FFFFFF; width:100%; z-index:2; }

对于导航栏

#navbar{ position:absolute; left: 300px; top:90px; clear:both; z-index:1; } 

用于闪光元素

#homemovie{
height:330px
position:absolute;
z-index:-1;
}
4

4 回答 4

3

我找到了一个可以在所有浏览器中修复它的纯 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:23:12.230 回答
1

它是您网站的样式表:http: //mindfulintegrations.com/signiacapital/css/style.css

问题出在 #header-content 中,它在 IE7 中添加了您不想要的位置:

#头容器{
/**position:relative;**/ /**覆盖 IE7 的 superfish 修复,删除并且应该可以工作。**/
 高度:140px;
 背景颜色:#FFFFFF;
 宽度:100%;
}
于 2009-06-09T23:14:06.377 回答
0

您能否详细说明您对 z-indexes 的尝试?

我的第一个建议是向 #header-container div 添加更大的 z-index。

Internet Explorer 中的 Z-index 可能很棘手,因为元素可以保留其父级的 z-index。

于 2009-06-09T23:07:17.263 回答
0

尝试以下操作:

.sf-menu a, sf-menu a:hover,sf-menu a.sfHover, .sf-menu li, .sf-menu li li {
  z-index:1;
}
于 2011-12-21T10:27:41.467 回答