『壹』 網頁多首歌曲循環播放代碼
(1)新建一個文本文檔,將需要播放的mp3格式音樂文件包括絕對路徑或者是網址寫入該文本文件,注意:必須一行寫一個文件,如:
D:\whx\music/春江花月夜.mp3
D:\whx\music/化蝶.mp3
D:\whx\music/高山流水1.mp3
或者:
http://www.abc.com/music/
春江花月夜.mp3
http://www.abc.com/music/
化蝶.mp3
http://www.abc.com/music/
高山流水1.mp3
(2)將該文本文件的擴展名改為「M3U」,如:Mymusic.M3U;
(3)將文件存入你自己以後調用的文件夾;
(4)在你的網頁前台的〈body〉間寫如下代碼:
〈embed
src="../music/Mymusic.M3U"
width="200"
height="50"
type="audio/mpeg"
autostart="true"
loop="true">〈/embed>
『貳』 能循環播放的音樂播放器代碼
不好意思,雖然我很想幫你,但是這個問題不是我的能力之內的,只能在搜索了
『叄』 網站能自動循環播放的背景音樂代碼是什麼
新建一個music.html頁面:
HTML部分:
<audio id="bgAudio" controls="controls" autoplay="autoplay" hidden="hidden">
<source src="mp3/wangjie.mp3" type="audio/mp3">
<source src="mp3/wangjie.ogg" type="audio/ogg">
</audio>
js部分:
<script type="text/javascript">
myVid=document.getElementById("bgAudio");
myVid.volume=0.2;
</script>
再新建一個backMusic.html頁面:
HTML部分:
<frameset cols="0%,100%">
<frame src="music.html"/>
<frame src="index.html" />
</frameset>
(3)音樂播放器循環代碼大全擴展閱讀:
<audio> 標簽定義聲音,比如音樂或其他音頻流。
實例:
一段簡單的 HTML 5 音頻:
<audio src="someaudio.wav">您的瀏覽器不支持 audio 標簽。</audio>
屬性:
autoplay:如果出現該屬性,則音頻在就緒後馬上播放。
controls:如果出現該屬性,則向用戶顯示控制項,比如播放按鈕。
loop:如果出現該屬性,則每當音頻結束時重新開始播放。
preload:如果出現該屬性,則音頻在頁面載入時進行載入,並預備播放。
src:要播放的音頻的 URL。
『肆』 VB歌曲循環播放代碼
加在後面
Private
Sub
WindowsMediaPlayer1_PlayStateChange(ByVal
NewState
As
Long)
If
NewState
=
1
Then
'1為停止(一曲播完)
WindowsMediaPlayer1.Controls.play
'再播放
End
If
End
Sub
全部循環的話就要加判斷了。。。用個變數當專累加器,來記錄放屬著第幾首。
寫一個大概的意思,因為我不知道你是用什麼來存放歌曲列表的。。。所以
dim
a
Private
Sub
WindowsMediaPlayer1_PlayStateChange(ByVal
NewState
As
Long)
If
NewState
=
1
Then
'1為停止(一曲播完)
a=a+1
if
a>歌曲總數
then
a=1'第一首是1
WindowsMediaPlayer1.url=歌曲(a)
End
If
End
Sub
『伍』 求音樂播放器的代碼
autostart="true"中true或1表示自動播放,false或0表示手動播放
loop="true" 中的true或1表示重復播放,false或0表示只播放一次
width= height= 中的數字分別表示播放器的寬度和高度 =0表示隱藏播放器
EnableContextMenu="0" 禁右鍵
ShowStatusBar="1" (帶顯示文件播放信息)
=======================================================
隱藏(hidden=true)播放器(不循環)
<EMBED src=音樂網址 hidden=true type=audio/x-ms-wma AUTOSTART="1">
-----------------------------------------------------------
隱藏(hidden=true)播放器(循環)
<EMBED src=音樂網址 hidden=true type=audio/mpeg AUTOSTART="1" loop="-1">
---------------------------------------------------------------
黑色[style="FILTER: xray()"]循環[loop="-1"]播放器
<EMBED style="FILTER: xray()" src=音樂網址 width=360 height=30 type=audio/mpeg volume="0" autostart="true" loop="-1">
--------------------------------------------------------------------------------
淺蘭色循環(loop="-1")播放器
<EMBED src=音樂網址 width=300 height=45 type=audio/mpeg loop="-1" autostart="true" volume="0">
--------------------------------------------------------------------------
掩飾自動播放器
<TABLE style="FILTER: Alpha(Opacity=100, FinishOpacity=0, Style=2, StartX=20, StartY=40, FinishX=0, FinishY=0)gray(); WIDTH: 200px; HEIGHT: 83px">
<TBODY>
<TR>
<TD><EMBED src=音樂網址 width=200 height=40 type=audio/mpeg panel="0" autostart="true" loop="true">
</TD></TR></TBODY></TABLE>
-------------------------------------
連播放時選擇曲目的播放器
<EMBED pluginspage=http://www.microsoft.com/windows/mediaplayer/download/default.asp width=400 height=172 type=application/x-mplayer2 FileName="音樂網址" SHOWCONTROLS="1" SHOWSTATUSBAR="1" SHOWDISPLAY="1" SHOWGOTOBAR="1" AUTOSTART="true" PlayCount="1">
----------------------------------------------------------------------------------------------
顯示曲名的黑色帶彩自動播放器
<EMBED style="FILTER: invert()" src=音樂網址 width=320 height=45 type=audio/x-ms-wma ShowStatusBar="1" loop="true" autostart="true">
-------------------------------------------------------------------------
顯示曲名的灰白色面板
<EMBED style="FILTER: Gray()" src="鏈接地址" width=300 height=69 type=application/x-mplayer2 loop="-1" showcontrols="1" ShowDisplay="0" ShowStatusBar="1" autostart="1"></EMBED>
------------------------------------------
灰白面板
<embed style="FILTER: Gray()" src=鏈接地址 width=300 height=45 loop="-1" autostart="true"></EMBED>
---------------------------------------------------------------
(帶顯示文件播放信息)
<EMBED src="鏈接地址" width=300 height=69 type=application/x-mplayer2 loop="-1" showcontrols="1" ShowDisplay="0" ShowStatusBar="1" autostart="1"></EMBED>
-----------------------------------------------
黑色帶彩棕色面板
<EMBED style="FILTER: invert()" src=鏈接地址 width=300 height=45 loop="-1" autostart="true"></EMBED>
---------------------------------------------------------------------
淺紫播放器
<TABLE borderColor=#4F3256 background=http://www.dabaoku.com/sucai/shejilei/bj/pic/0197.jpg border=1>
<TBODY><TR>
<TD style="FILTER: alpha(opacity=50,style=3)">
<P align=center><EMBED src=音樂網址 width=300 height=25 type=audio/mpeg loop="-1" autostart="false" volume="0">
</P></TD></TR></TBODY></TABLE>
----------------------------------------------------------------------------------------------
粉色
<TABLE borderColor=navy background=http://bbs.sm618.com/UploadFile/2005-9/200592522275884778.jpg border=0>
<TBODY><TR>
<TD style="FILTER: alpha(opacity=50,style=3)">
<P align=center><EMBED src=音樂網址 width=300 height=45 type=audio/mpeg loop="-1" autostart="0" volume="0">
</P></TD></TR></TBODY></TABLE>
------------------------------------------------------------------------------------
黃色閃光
<TABLE style="BORDER-RIGHT: #000000 3px dashed; BORDER-TOP: #000000 3px dashed; BORDER-LEFT: #000000 3px dashed; BORDER-BOTTOM: #000000 3px dashed" cellSpacing=0 cellPadding=0 bgColor=#00000>
<TBODY><TR><TD>
<TABLE borderColor=navy background=http://nxm.16789.net/s-helpSite/domName/nxm/20041114123131568.gif border=0>
<TBODY><TR>
<TD style="FILTER: alpha(opacity=50,style=3)">
<P align=center><EMBED src=音樂網址 width=400 height=35 type=audio/mpeg loop="-1" autostart="0" loop="-1">
</P></TD></TR></TBODY></TABLE>
</TD></TR></TBODY></TABLE>
--------------------------------------------------------------------------------
藍色閃光
<TABLE borderColor=#dee4fe cellSpacing=3 cellPadding=0 background=http://www.yhbbs.com/UploadFile/2004-12/2004123023101352.gif border=2><TBODY><TR><TD><TABLE align=center border=0>
<TBODY><TR><TD style="FILTER: alpha(opacity=60,style=3)">
<P align=center><EMBED style="FILTER: Gray" src=音樂網址 width=400 height=35 type=audio/mpeg volume="0" autostart="false" loop="-1">
</P></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
-------------------------------------------------------------------------
花邊黑色
<TABLE style="BORDER-RIGHT: #000000 3px dashed; BORDER-TOP: #000000 3px dashed; BORDER-LEFT: #000000 3px dashed; BORDER-BOTTOM: #000000 3px dashed" cellSpacing=0 cellPadding=0 bgColor=#00000>
<TBODY><TR><TD>
<TABLE borderColor=#000000 align=center border=1>
<TBODY><TR><TD>
<P align=center><EMBED style="FILTER: Xray" src=音樂網址 width=400 height=35 type=audio/mpeg volume="0" autostart="false" loop="-0">
</P></TD></TR></TBODY></TABLE>
</TD></TR></TBODY></TABLE>
-----------------------------------------------------------------------------------------------------
粉色花邊
<TABLE style="BORDER-RIGHT: #ff69b4 3px dotted; BORDER-TOP: #ff69b4 3px dotted; BORDER-LEFT: #ff69b4 3px dotted; BORDER-BOTTOM: #ff69b4 3px dotted" cellSpacing=0 cellPadding=0 align=center bgColor=white>
<TBODY>
<TR>
<TD>
<TABLE borderColor=#ff69b4 align=center bgColor=#ffccf5 border=2>
<TBODY>
<TR>
<TD style="FILTER: alpha(opacity=100,style=3)">
<P align=center><EMBED src=音樂網址 width=300 height=25 type=audio/mpeg volume="0" autostart="false" loop="-0">
</P></TD></TR></TBODY></TABLE>
</TD></TR></TBODY></TABLE>
-------------------------------------------------------------------------------------------
禁右鍵播放器
<EMBED style="BORDER-RIGHT: silver 1px solid; BORDER-TOP: silver 1px solid; BORDER-LEFT: silver 1px solid; BORDER-BOTTOM: silver 1px solid" src=音樂網址 width=200 height=40 type=audio/x-mplayer2 console="video" showstatusbar="0" EnableContextMenu="0" volume="0" autostart="0" loop="-1">
---------------------------------------------------------------------------------
上下移動
<MARQUEE style="LEFT: 230px; ; TOP: 300px" scrollAmount=1 scrollDelay=200 direction=up behavior=alternate width=300 height=400><br><MARQUEE scrollAmount=1 scrollDelay=100 behavior=alternate><br><TABLE style="FILTER: progid:DXImageTransform.Microsoft.Shadow(color:#7ec0ee ,direction:145,strength:20)" cellSpacing=0 cellPadding=0 border=1>
<br><TBODY><br><TR><br><TD>
<EMBED style="FILTER: gray()" src=音樂網址 width=200 height=20 type=audio/mpeg showstatusbar="1" volume="0" loop="-1" autostart="1">
</TD></TR></TBODY></TABLE></MARQUEE></MARQUEE>
-------------------------------------------------------------------
(顯示文件標簽信息)藍色
<DIV><EMBED src="鏈接地址" loop="-1" width=300 height=140 balance="true" showpositioncontrols="true" showtracker="true" showaudiocontrols="true" showcontrols="true" showstatusbar="true" showdisplay="true" displaysize="0" volume="100" autosize="true" autostart="true" animationatstart="true" transparentatstart="true"></EMBED></div>
--------------------------------------------------
(顯示文件標簽信息)灰白
<DIV><EMBED style="FILTER: Gray()" src="鏈接地址" loop="-1" width=300 height=140 balance="true" showpositioncontrols="true" showtracker="true" showaudiocontrols="true" showcontrols="true" showstatusbar="true" showdisplay="true" displaysize="0" volume="100" autosize="true" autostart="true" animationatstart="true" transparentatstart="true"></EMBED></div>
----------------------------------------------------
(顯示文件標簽信息)黑彩
<DIV><EMBED style="FILTER: invert()" src="鏈接地址" loop="-1" width=300 height=140 balance="true" showpositioncontrols="true" showtracker="true" showaudiocontrols="true" showcontrols="true" showstatusbar="true" showdisplay="true" displaysize="0" volume="100" autosize="true" autostart="true" animationatstart="true" transparentatstart="true"></EMBED></div>
-----------------------------------------------------------
(顯示文件標簽信息)黑
<DIV><EMBED style="FILTER: xray()" src="鏈接地址" loop="-1" width=300 height=140 balance="true" showpositioncontrols="true" showtracker="true" showaudiocontrols="true" showcontrols="true" showstatusbar="true" showdisplay="true" displaysize="0" volume="100" autosize="true" autostart="true" animationatstart="true" transparentatstart="true"></EMBED></div>
===================================================
連放
<EMBED style="FILTER: Gray()" src=音樂網址 width=500 height=35 type=audio/x-ms-wma controls="StatusBar,TACCtrl,ControlPanel" border="0" autostart="1" playcount="0" showtracker="1" volume="0"></EMBED>
=========================================================
圖片播放器!
<TABLE style="FILTER: alpha(opacity=100 Style=0 FinishOpacity=100)" borderColor=#000000 height=249 cellSpacing=0 cellPadding=0 width=314 background=http://blog.chosun.com/web_file/blog/167/9167/1/rosa-77-06-3.gif border=0>
<TBODY>
<TR>
<TD width=314 height=180 cellpadding="0" cellspacing="0"></TD></TR>
<TR>
<TD align=left>
<P align=center>
<EMBED style="FILTER: alpha(opacity=100 Style=3 FinishOpacity=0)black(); style: " src=音樂網址 width=310 height=28 type=video/x-ms-asf loop="-1" autostart="1" volume="0">
</P></TD></TR></TBODY></TABLE>
=================================================
以上效果分見如下::為免各效果同時播放,以下autostart=0
autostart="true"中true或1表示自動播放,false或0表示手動播放 loop="true" 中的true或1表示重復播放,false或0表示只播放一次 width= height= 中的數字分別表示播放器的寬度和高度 =0表示隱藏播放器 EnableContextMenu="0" 禁右鍵 ShowStatusBar="1" (帶顯示文件播放信息)
=======================================================
隱藏(hidden=true)播放器(不循環)
-----------------------------------------------------------
隱藏(hidden=true)播放器(循環)
『陸』 歌曲列表循環播放的代碼
多首歌曲可以用記事本輸入歌曲地址,然後另存為.m3u文件
<EMBED autostart="true" SRC="這里寫.m3u文件地回址" width="0" height="0" loop="999">
loop="-1"是循環播放答
999是999次循環播放
『柒』 播放器循環播放的代碼
<embed id="embdy1" src="http://www.tkkl.com/2004819172123651.wma" type=application/x-mplayer2 autostart="1" showcontrols="1" width="384" height="45" loop="true"></embed>
『捌』 使音樂循環播放的網頁代碼
這個有時就這樣,很奇怪,有的瀏覽器可以,有的就是不行內
可以試容試audio標簽
<audio src="1.mp3" id="audio1" hidden="false" autoplay="true" loop="true">
</audio>
『玖』 網頁音樂播放器代碼-怎麼循環播放
<param name="playcount" value="100">