手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >关于flash遮盖div浮动层的解决方法
关于flash遮盖div浮动层的解决方法
摘要:网上的解决方案:From:http://codingforums.com/showthread.php?t=95109(a)placeFla...

网上的解决方案:

From:http://codingforums.com/showthread.php?t=95109

(a) place Flash embed script in <div> container (I use SWFObject.js)[将flash嵌入脚本放到一个div容器中]

(b) add wmode=transparent to Flash embed script[增加wmode=transparent 到flash嵌入脚本]

(c) set <div id="flashcontent"> container with z-index:-1; [将外层容器的z-index设置为-1]

(d) set <body> tag with style .. position:relative;left:0px;top:0px;z-index:0;

(otherwise Firefox does not accept negative z-index)

(e) set floating iframe in container with z-index: 99;[将浮动的iframe在容器中的zindex设置为99]

(f) use CSS to position flashcontent and htmlcontent containers.[使用css来调整flash容器和html容器的位置]

其他方案网上比较多见,不做阐述.在此说下使用第一个方案如何解决:

复制代码 代码如下:

var so = new SWFObject("XXX.swf", "flashId", "宽度", "高度", "版本", "背景色");

//设置flash不遮盖div层

so.addParam("wmode", "opaque");

so.write("flashcontent");

如此设置即可让flash无法遮盖住div.

【关于flash遮盖div浮动层的解决方法】相关文章:

js去除浏览器默认底图的方法

javascript元素动态创建实现方法

Jquery实现动态切换图片的方法

javascript用函数实现对象的方法

js实现鼠标划过给div加透明度的方法

javascript实现行拖动的方法

js实现键盘Enter键提交表单的方法

JS实现窗口加载时模拟鼠标移动的方法

javascript实现动态改变层大小的方法

JS或jQuery获取ASP.NET服务器控件ID的方法

精品推荐
分类导航