音乐代码是什么意思

夏伤之歌 1个月前 已收到1个回答 举报

唇寒齿亡 1星

共回答了159个问题采纳率:91.2% 评论

音乐代码就是含有音乐地址的代码。

首先要说的是中间输入的音乐地址必须是网络地址而不是你电脑所在的音乐目录路径地址!! 然后再看下面的吧。。

最简洁的代码是这样的:

<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>这段代码(最简单的)。上面列出的另外两种代码,由于考虑到安全策略问题,故目前在淘宝网上暂时还不能用。但是你可以用到你的个人主页等其他地方啊。

4小时前

25
可能相似的问题

热门问题推荐

Copyright © 2024 微短问答 All rights reserved. 粤ICP备2021119249号 站务邮箱 service@wdace.com