网页中的音乐播放代码有以下几种:
第一种:页面代码中的<head></head>之间加入
<bgsound src="音乐url" loop="-1">
这段代码。
第二种:
在网页代码中的<style></style>标签之间加入一个“Embed”标签,
<embed src="音乐url" autostart="true" loop="true" width="80" height="20">
第三种:
使用超链接
<a href="horse.mp3">Play the sound</a>
<script src="http://mediaplayer.yahoo.com/latest"></script>
第四种:
使用 HTML5 <audio> 元素
<audio controls>
<source src="horse.mp3" type="audio/mpeg">
<source src="horse.ogg" type="audio/ogg">
Your browser does not support this audio format.
</audio>
|