站内搜索: 请输入搜索关键词

当前页面: 开发资料首页Javascript 专题各种媒体在线播放代码

各种媒体在线播放代码

摘要: 各种媒体在线播放代码
<tr> <td>

现在有自己blog的人越来越多了,大家也都想在自己的blog上勾画出自己的特色,比如个性的首页、个性的介绍以及向大家推荐自己喜欢的音乐等。为了给大家也给自己提供方便,整理了一些流行格式的在线播放代码,以备添加之用。

【文中的一些标号的说明】
"Filename with full URL"——待播放文件的文件名,前面带上绝对路径,或者本站的相对路径。
width_num——指定一个作为宽度的数字;
height_num——指定一个作为高度的数字;

1.mid

autostart="true" loop="true" height=height_num width=width_num>

2.mp3

src="Filename with full URL" border="0"

pluginspage="http://www.apple.com/quicktime/download/indext.html">

3.avi

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

4.flash

quality="high" scale="showall" menu="true">

5.mpg

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

6.mov

src="Filename with full URL" border="0" pluginspage="http://www.apple.com/

quicktime/download/indext.html">

7.rm

" height="height_num">

src="Filename with full URL" type="audio/x-pn-realaudio-plugin" autostart="true" nolabels="0" autogotourl="-1">

8.上面的都是使用播放器的,如果只是想播放背景音乐的话可以使用如下简单语句:
loop=1>
loop后面是循环的次数,-1代表无限循环。

</td> </tr> </table>
↑返回目录
前一篇: 小窗口大学问_玩转弹出窗口
后一篇: 屏蔽F5、Ctrl+N、Alt+F4的源码