<b>符合web尺度的网页中调用Flash的办法</b>[Flash设计]
本文“<b>符合web尺度的网页中调用Flash的办法</b>[Flash设计]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
若何让网页中嵌入的Flash标签也符合web尺度.目前还没有一个完善的办理办法,这篇文章中,我们将Flash嵌入标签写入js文件中,通过变量传送参数的办法来躲避不符合尺度的标签.
请注意,这只是一个变通的办法,换汤不换药,并未能终究办理存在的问题,通过考证只是一种表象,这样的思绪是不是可取,在实际操作中请大家自行考虑.
首先成立一个JS文件flash.js.写入以下代码:
function swf(file,w,h) { document.write(’<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="’+w+’" height="’+h+’"> ’); document.write(’<param name="movie" value="’ + file + ’">’); document.write(’<param name="quality" value="high"> ’); document.write(’<param name="wmode" value="transparent"> ’); document.write(’<param name="menu" value="false"> ’); document.write(’<embed src="’ + file + ’" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="’+w+’" height="’+h+’"></embed> ’); document.write(’</object> ’); } |
上面的js脚本定义了一个函数swf,并设置三个变量,它们辨别是:flile文件链接,w宽度,h高度.在XHTML中向这个函数传送变量便可实现flash的嵌入.以下代码:
<div id="flash"> <script type="text/javascript" language="javascript">swf(’dwww.swf’,’500’,’220’);</script> </div> |
成立id为flash的div作为一容器,在其内部嵌入js脚本,变量顺次为:文件途径、宽度、高度!
看下面的全部代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
以上是“<b>符合web尺度的网页中调用Flash的办法</b>[Flash设计]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |