-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·34 lines (29 loc) · 1.36 KB
/
index.html
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
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Demo page</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link type="text/css" rel="stylesheet" rev="stylesheet" media="screen" href="./css/css/screen.css" />
<script src="./js/jquery.min.js" type="text/javascript"></script>
<script src="./js/player.js" type="text/javascript"></script>
</head>
<body>
<div class='audio-container' name='Example with existing sources'>
<audio name="fisrt source" url="./data/sample.ogg"></audio>
<audio name="second source" url="./data/sample.ogg"></audio>
<audio name="third source" url="./data/sample.ogg"></audio>
</div>
<div class='audio-container' name='Example with existing sources' preload="none">
<audio name="fisrt source" url="./data/sample.ogg"></audio>
<audio name="second source" url="./data/sample.ogg"></audio>
<audio name="third source" url="./data/sample.ogg"></audio>
</div>
<div class='audio-container' name='Example with missing tracks'>
<audio name="first source" url="./data/link_to_my_soundfile.ogg"></audio>
<audio name="second source" url="./data/link_to_my_second_soundfile.ogg"></audio>
</div>
</body>
</html>