第一种方法


css 代码:

复制代码代码如下:
.b970-a{width:970px; height:103px; margin:4px auto; overflow:hidden;}
html 代码:
<div class="b970-a"> <
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://imgbuyun.weixiu-service.com/up79/202309/ylvmoigxytu.cab" width="970" height="107">
<param name="movie" value="images/flash_ad-3-26.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="images/flash_ad-3-26.swf" width="970" height="107" quality="high" pluginspage="http://imgbuyun.weixiu-service.com/up79/202309/pwvvpo3vsqi" type="application/x-shockwave-flash" wmode="transparent"></embed>
</object>
</div>

第二种方法 兼容性好


css 代码:

复制代码代码如下:
.b970-a{width:970px; height:103px; margin:5px auto; z-index:2; overflow:hidden;}
html 代码:
<object width="970" height="103"
codebase="http://imgbuyun.weixiu-service.com/up79/202309/edey32fiwv1.cab"
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<param value="images/flash_ad-3-26.swf" name="movie">
<param value="high" name="quality">
<param value="transparent" name="wmode">
<param value="exactfit" name="SCALE">
<embed width="970" height="103" wmode="transparent" type="application/x-shockwave-flash"
pluginspage="http://imgbuyun.weixiu-service.com/up79/202309/kczxeocsqfy.html"
quality="high" src="images/flash_ad-3-26.swf">
</object>

如何在HTML中加载Flash(2种实现方法)