ericleesky
|
分享:
x0
|
[JScript][討論] 隨機背景音樂
‧做法:將以下程式碼加入網頁中的<head></head> 即可。
//代表使用 _JavaScript 語法 <!-- var sound1="musci/1.mid" var sound2="musci/2.mid" var sound3="musci/3.mid" //須注意音樂放置位置是否指定正確,否則將因為獨不到檔而沒音樂. //音樂格式可以是 .mid 或是 .ram
var x=Math.round(Math.random()*2) //利用亂數函式決定音樂,例如有3首,就輸入*2,10首,就是*9
if (x==0) x=sound1 else if (x==1) x=sound2 else x=sound3 //已幾首音樂,就必須指定幾行,注意最後一行程式的寫法.
if (navigator.appName=="Microsoft Internet Explorer") document.write('<bgsound src='+'"'+x+'"'+' loop="infinite">') else document.write('<embed src='+'"'+x+'"'+'hidden="true" border="0" width="20" height="20" autostart="true" loop="true">') //--> </script> //代表使用 _JavaScript 語法結束
|