-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
24 lines (24 loc) · 970 Bytes
/
example.html
File metadata and controls
24 lines (24 loc) · 970 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accessible player example</title>
<link href="./styles.css" rel="stylesheet" />
</head>
<body>
<h1>Html5 audio example</h1>
<audio data-title="Test audio" data-showdownloadlink="true" controls>
<source src="solitud_-_count.mp3" type="audio/mp3" />
<source src="solitud_-_count.ogg" type="audio/ogg" />
</audio>
<script type="text/javascript" src="jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="icu_en.js"></script>
<script type="text/javascript" src="translate.js"></script>
<script type="text/javascript" src="en.js"></script>
<script type="text/javascript" src="html5-accessible-audio-player.js"></script>
<script type="text/javascript">
html5AcAudio.configure(html5AcAudio.configVisibility.audioHideScreenReaders | html5AcAudio.configVisibility.audioHideVisually);
</script>
</body>
</html>