DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> 網頁設計之網頁音樂的實現技巧
網頁設計之網頁音樂的實現技巧
編輯:HTML和Xhtml     

當網頁中插入音樂時,要根據不同的後綴名,來寫不同的代碼!下面面就是多種格式文件的詳細使用代碼。
注:
"音樂文件和地址"——待播放文件的文件名,前面帶上絕對路徑,或者本站的相對路徑。
 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> 8.上面的都是使用播放器的,如果只是想播放背景音樂的話可以使用如下簡單語句:
<bgsound src="音樂文件和地址" loop=1>
loop後面是循環的次數,-1代表無限循環。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved