音樂代碼是什么意思?
音樂代碼就是含有音樂地址的代碼。首先要說的是中間輸入的音樂地址必須是網絡地址而不是你電腦所在的音樂目錄路徑地址!! 然后再看下面的吧。。最簡潔的代碼是這樣的:
<bgsound src="你的背景音樂地址" loop=-1>
或者:
<embed autostart="true" loop="-1" controls="ControlPanel" width="0" height="0" src="你的背景音樂地址">
兩者的最大區別在于前者頁面被最小化之后音樂就停了;后者頁面最小化后音樂還是照舊播放,直到窗口被關閉。
共同點是,頁面是當前窗口的時候,按ESC鍵,音樂都會停。
以上兩段代碼都是放在<head></head>之間的.
把如下代碼加入<body>區域中,頁面打開時就會有隨機播放背景音樂
<SCRIPT language="java - script">
<!--
var sound1="song1.mid"
var sound2="song2.mid"
var sound3="song3.mid"
var sound4="song4.mid"
var sound5="song5.mid"
var sound6="song6.mid"
var sound7="song7.mid"
var sound8="song8.mid"
var sound9="song9.mid"
var sound10="song10.mid"
var x=Math.round(Math.random()*9)
if (x==0) x=sound1
else if (x==1) x=sound2
else if (x==2) x=sound3
else if (x==3) x=sound4
else if (x==4) x=sound5
else if (x==5) x=sound6
else if (x==6) x=sound7
else if (x==7) x=sound8
else if (x==8 ) x=sound9
else x=sound10
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>
把你找來的音樂分別替換上面“songN.mid”部分,然后把這短代碼貼在<head>之間就好了。
需要說明的一點是:目前裝修咱們的店鋪公告板的時候,只能用<bgsound>這段代碼(最簡單的)。上面列出的另外兩種代碼,由于考慮到安全策略問題,故目前在淘寶網上暫時還不能用。但是你可以用到你的個人主頁等其他地方啊。