FLASH遮盖了浮动层解决方法
flash遮盖了浮动层解决方法
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.zzzyk.com/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>flash遮盖了浮动层解决方法</title>
<script language="网页特效">
var arry = document.getelementsbytagname("object");
for(var i=0;i<arry.length;i++)
{
document.getelementbyid(arry[i].id).wmode = "opaque";
}
</script>
</head>
<body>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="908" height="350">
<param name="movie" value="swf/ht6.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" /> //加上这句更简单
<embed src="swf/ht6.swf" wmode="opaque" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="906" height="350"></embed>
</object>
</body>
</html>
补充:flash教程,动画技术