首頁 Home > 線上問答 Q & A > 技術分享 > 怎樣才能背景音樂不中斷?
發表主題 回覆文章
 
元蜜草

怎樣才能背景音樂不中斷?


Views : 4291

大大您好:

我在網頁放了音樂語法

<embed src="02.mp3" hidden="true" loop="true" autostart="true"></embed>

可是一換頁,音樂就重來了

可以請教該怎麼做才能讓音樂不中斷?

謝謝您

3/20/2009 2:52:37 PM

PK
聯絡信箱 造訪網站
RE: 怎樣才能背景音樂不中斷?

你可以使用 頁框

<frameset rows="*,0" frameborder="no" border="0" framespacing="0">
  <frame src="index.htm" name="mainFrame" id="mainFrame" />
  <frame src="music.htm" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" />
</frameset>

把音樂檔案放在 music.htm 就可以了:

<embed src="02.mp3" hidden="true" loop="true" autostart="true"></embed>

如此,每次換頁

其實都是在主頁框中,下頁框都不會變動

音樂自然不會中斷囉 ~

回覆 1.    3/23/2009 11:55:18 AM

元蜜草
RE: 怎樣才能背景音樂不中斷?

謝謝 !!

可以了 ^0^

回覆 2.    4/8/2009 10:38:10 AM

回到上方