网站建设中怎样让网页播放音乐,和网页背景音乐代码是什么,怎样放网页背景音乐?

在网站建设中,我们会常涉及到多媒体文件, 下面我们就先来介绍一下在网站中播放音乐的方法,其中包括:.mid、.mp3、.avi、.flash、.mpg、.mov、.rm 和背景音乐添加的方法.

网站建设中,我们会常涉及到多媒体文件,  下面我们就先来介绍一下在网站中播放音乐的方法,其中包括:.mid、.mp3、.avi、.flash、.mpg、.mov、.rm 和背景音乐添加的方法.

根据不同的格式,有不同的代码 下面是相信代码介绍:
     
在下面的代码使用中需要注明的是:

"音乐文件和地址"——待播放文件的文件名,前面带上绝对路径,或者本站的相对路径。

width_num——是指一个作为宽度的数字;

height_num——是指一个作为高度的数字;

1.mid 
      <embed src="音乐文件和路径" type="audio/midi" hidden="false" autostart="true"

loop="true" height=height_num width=width_num></embed>

2.mp3
      <embed controller="true" width="width_num" height="height_num"

src="音乐文件和路径" border="0" pluginspage=

"http://www.apple.com/quicktime/download/indext.html"></embed>

3.avi
      <embed src="音乐文件和路径" border="0" width="width_num" height=

"height_num" type="application/x-mplayer2"></embed>

4.flash
      <embed src="音乐文件和路径" pluginspage=

"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="width_num" height="height_num" play="true" loop="true"

quality="high" scale="showall" menu="true"></embed>

5.mpg
      <embed src="音乐文件和路径" border="0" width="width_num"

height="height_num" type="application/x-mplayer2"></embed>

6.mov
      <embed controller="true" width="width_num" height="height_num"

src="音乐文件和路径" border="0" pluginspage=

"http://www.apple.com/quicktime/download/indext.html"></embed>

7.rm
      <OBJECT>" height="height_num">
      <PARAM NAME="CONTROLS" VALUE="ImageWindow">
      <PARAM NAME="AUTOSTART" Value="true">
      <PARAM NAME="SRC" VALUE="音乐文件和地址">
      <embed height="高" width="宽" controls="ImageWindow"

src="音乐文件和路径" type=

"audio/x-pn-realaudio-plugin" autostart="true" nolabels="0"

autogotourl="-1"></OBJECT>

上面使用方式是介绍网页中的播放器的,下面我们来看一下在网站中背景音乐的添加方法:

代码很简单:
      <bgsound src="音乐文件和地址" loop=1

loop后面是循环的次数,-1代表无限循环。

你学会了吗?

文章转载:http://www.gehut.cn/

(0)

相关推荐