html添加背景音乐代码实例详解

发布时间:2019-07-18编辑:脚本学堂
本文详细介绍了html添加背景音乐代码的方法,一些html背景音乐的例子,有需要的朋友参考下。

如何在html中添加背景音乐代码,方法可是有很多。

下面为大家详细介绍。

网页背景音乐代码:
 

<embed src="http://xxx.com/xxx.mp3" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash" type="application/x-shockwave-flash" width="1" height="1"></embed>
 

mid表示音效文件

<embed src="1.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash" type="application/x-shockwave-flash" width="1" height="1"></embed>
 

上面的网页背景音乐代码可以加入flash动画的绝对地址(或相对地址)

<embed width=1 height=1 autostart="true" loop="true" controls=playbutton console=clip1 nolabels=true type="audio/x-pn-realaudio-plugin" src="1.ram"> </embed>
 

ram格式的音乐文件专用网页背景音乐代码:
 

<embed src="1.mid" align="center" border="0" width="1" height="1" width="100" autostart="true" loop="true">
 

指定播放器的大小(width、heigh)、是否自动(autostart标记)、是否循环播放(loop标记),而浏览者则可以自主地决定是否播放音乐。
此代码可以当作网页中插入flash动画的代码用。只要把1.mid替换为flash动画的相对地址或决对地址就ok了。

<embed src="1.mp3" align="center" border="0" width="1" height="1" width="100" autostart="true" loop="true">
 

此代码可以加mp3形式的音乐为网页背景音乐
 

<embed src="http://xxx.com/xxx.mp3" width="0" height="0" border=0 autostart="ture" loop="ture"></embed>
 

mid表示音效文件

<bgsound src="1.mid" loop=3>
 

表示将1.mid音效文件插入到页面为背景音乐,并循环播放3次。
 

<embed src="1.mid" hidden="true">
 

mid表示音效文件

<bgsound src="1.mid" loop="infinte">
 

mid表示音效文件

<embed src="1.mid" hidden="true" loop="true">
 

mid表示音效文件

<bgsound src=1.mid loop="-1">
 

mid表示音效文件

注:如果有修改整个html代码的权限,使用如下方法更好。
将这段代码插入到<head></head>之间
打开网站即可听到背景音乐:
 

<bgsound src=china.mid loop="-1">
 

注意,这种当网页最小化之后,音乐会消失。