-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
30 lines (27 loc) · 951 Bytes
/
test.html
File metadata and controls
30 lines (27 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
</head>
<body>
<!--<embed src="media/LoveIsSimple.mp3" hidden="no" autostart="true" loop="true">-->
<audio preload autoplay loop id="music">
<source src="../media/LoveIsSimple.mp3" type="audio/mpeg">
</audio>
<script type="text/javascript">
window.onload = function(){
setInterval("toggleSound()",1);
}
function toggleSound() {
var music = document.getElementById("music");//获取ID
if (music.paused) { //判读是否播放
music.paused=false;
music.play(); //没有就播放
}
}
</script>
<!-- <embed frameborder="no" border="0" marginwidth="0" marginheight="0" width=300 height=280 autostart="true"-->
<!-- src="//music.163.com/outchain/player?type=0&id=4950890732&auto=1&height=430"></embed>-->
</body>
</html>