html 加载文件.swf、音乐文件

来源:互联网 发布:网络电视直播机顶盒 编辑:程序博客网 时间:2024/05/19 19:33
Flash、MP4、music:
 <embed style="RIGHT: 10px; POSITION: absolute; TOP: 10px" align="center" src="swf/.swf" width="1024" height="580 " type="application/x-shockwave-flash" wmode="transparent" quality="high" ;> </embed>


提示:src=*.swf 这里是你的SWF文件地址,你可以用网页上的,也可以从你图像组里面调用,确保地址正确,否则根本无法找到文件。width="00" height="00" 这里的参数你可以根据自己的需要设置。
  1. html5音乐播放器代码:

1
2
3
4
5
<audio controls>
    <source src=”http://xx.com/html5/cc.ogg” />
    <source src=”http://xx.com/html5/cc.mp3″ />
    <source src=”http://xx.com/html5/cc.wav” />
</audio>
2.html5加载MP4文件
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
您的浏览器不支持Video标签。
</video>
原创粉丝点击