Css Flash横幅与其他代码重叠

Css Flash横幅与其他代码重叠,css,flash,html,Css,Flash,Html,当显示第三方的闪光横幅时,它们与我的代码重叠: 测试URL是:(多次刷新页面,您将看到) 代码是: <div style="width:100%"> <div id="banner"> <script> <!-- var d = new Date(); r = escape(d.getTime()*Math.random()); document.writeln('<script src="http://tracking.novem.pl/ro

当显示第三方的闪光横幅时,它们与我的代码重叠:

测试URL是:(多次刷新页面,您将看到)

代码是:

<div style="width:100%">
<div id="banner">

<script>
<!--
var d = new Date();
r = escape(d.getTime()*Math.random());
document.writeln('<script src="http://tracking.novem.pl/rotator/CD31115/59&js=1&r='+r+'&keyword="><\/script>');
//-->
</script><div id='beacon_1' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://test.otwierac.pl/reklamy/www/delivery/lg.php?bannerid=1&amp;campaignid=1&amp;zoneid=0&amp;loc=http%3A%2F%2Fwww.test.otwierac.pl%2F&amp;referer=http%3A%2F%2Ftest.otwierac.pl%2F&amp;cb=6d0002d6e4' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div>
</div>
</div>
如何解决这个问题?横幅应该居中,不要与我的文字重叠。

有一个flash参数 wmode:不透明

我们应该这样做

编辑

从: 不透明-SWF内容与页面上的其他HTML元素一起分层。SWF文件是不透明的,它隐藏了页面上在它后面分层的所有内容。与wmode=window或wmode=direct相比,此选项降低了播放性能。

编辑:

尝试:


是的,后来注意到了。但要明确的是,我的回答对这个问题是有效的。或者,如果你想修改第三方,或者在另一个函数中包装JS脚本,如果可能的话,添加WMODE参数。也许没有第三方横幅的附加API吗?我在谈论屏幕中间的大旗。顺便说一句,您的标记非常混乱,请尝试修复它,否则您将在将来的更新中遇到问题。
#banner
{
    margin-top:10px;
    width:950px;
    margin:0 auto;
    text-align:center;
}
#banner {
    height: 315px;
    margin-top: 10px;
    text-align: center;
    width: 950px;
}