首頁,我們需要準(zhǔn)備2個(gè)文件
1,index.html
2,redirect.swf
在index.html中body內(nèi)的代碼" />
有的時(shí)候我們會(huì)需要這樣的功能,通過html插入一個(gè)flash文件來實(shí)現(xiàn)域名和網(wǎng)頁跳轉(zhuǎn),而不是只通過html插入javascript來跳轉(zhuǎn),那么如何操作呢?
首頁,我們需要準(zhǔn)備2個(gè)文件
1,index.html
2,redirect.swf
在index.html中body內(nèi)的代碼如下:
<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="1" height="1">
<param name="movie" value="redirect.swf" />
<param name="quality" value="high" />
<param name="flashvars" value="values=055178|com" />
<param name="wmode" value="opaque" />
<embed flashvars="values=055178|com" wmode="transparent" src="redirect.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1" height="1"></embed>
</object>
在上方代碼中,我標(biāo)紅的2個(gè)地方,請(qǐng)將分割線之前的部分替換為域名的前綴,分割線之后替換為域名的后綴即可。
那么redirect.swf其實(shí)是redirect.fla轉(zhuǎn)換生成的,redirect.fla,下面教你如何制作redirect.fla
1,打開flash軟件
2,創(chuàng)建flash as2.0文件
3,在先進(jìn)幀創(chuàng)建關(guān)鍵幀
4,鼠標(biāo)點(diǎn)擊先進(jìn)幀,按F9,打開腳本面板,將下方代碼插入到面板中
var arr:Array = new Array();
arr = values.split("|");
getURL("http://www."+arr[0]+"."+arr[1]);
5,直接保存即可,按ctrl+enter生成redirect.swf
后將redirect.swf和index.html放在一起,即可訪問。這樣能完美實(shí)現(xiàn)flash通過embed傳值并跳轉(zhuǎn)網(wǎng)頁的方法。
掃一掃
關(guān)注新圖聞科技
全國咨詢熱線
186-0984-0880