给网页添加背景音乐方法
由html有embed属性,我们只要给他添加背景音乐地址就可以了下面举实例说明了。
循环播放
<embed src="bgsound.mp3" autostart="true" loop="true">
=================================================================================
控制播器高宽
<embed src="bgsound.mp3" autostart="true" width="400" height="20">
=================================================================================
隐藏播放器
<embed src="bgsound.mp3" autostart="true" loop="true" hidden="true">
=================================================================================
<body>
<p>html background music test</p>
<embed src="bgsound.mp3" autostart="true">
</body>