导航:首页 > 音乐推荐 > 音乐播放器循环代码大全

音乐播放器循环代码大全

发布时间:2021-02-25 01:02:09

『壹』 网页多首歌曲循环播放代码

(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">

阅读全文

与音乐播放器循环代码大全相关的资料

热点内容
爱情围墙歌词 浏览:230
道奇酷威广告背景音乐 浏览:106
比喻轻音乐之美的文字 浏览:542
小号音乐下载 浏览:578
歌曲专辑图下载地址 浏览:867
财神驾到歌曲mp3下载 浏览:734
琴歌指弹海阔天空吉他谱 浏览:355
下载mp4格式的音乐 浏览:352
电脑听音乐用什么 浏览:512
最好酷狗音乐播放器 浏览:502
信乐团队的假如简谱 浏览:243
平安酷狗音乐 浏览:760
佳人轻抚桃花mp3下载 浏览:453
infinite网易云音乐 浏览:844
岁月赵忠祥背景音乐 浏览:980
如何将电脑的歌体添加到苹果音乐 浏览:672
fade钢琴mp3 浏览:86
奔跑吧兄弟宋仲基背景音乐 浏览:806
成都彩虹小学音乐老师 浏览:496
凤凰传奇星光歌曲点评 浏览:930