forked from jumear/stirfry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iNat_Chrome_audio_control_example.html
35 lines (31 loc) · 1.12 KB
/
iNat_Chrome_audio_control_example.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
34
35
<html>
<head>
</head>
<style>
body { margin:10px; }
h2 { margin:30px 10px 10px 10px; padding:0px; font:15pt sans-serif; }
p { margin:10px; padding:0px; font:10pt sans-serif; }
.highlight { color:orange; }
</style>
<body>
<h2>Default Audio Control</h2>
<p>
<audio controls preload="none"><br />
<source src="https://static.inaturalist.org/sounds/93996.wav" type="audio/x-wav"><br />
</audio><br />
</p>
<audio controls preload="none">
<source src="https://static.inaturalist.org/sounds/93996.wav" type="audio/x-wav">
</audio>
<h2>Audio Control with Nodownload Option</h2>
<!--// see https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/controlsList //-->
<p>
<audio controls <span class="highlight">controlsList="nodownload"</span> preload="none"><br />
<source src="https://static.inaturalist.org/sounds/93996.wav" type="audio/x-wav"><br />
</audio><br />
</p>
<audio controls controlsList="nodownload" preload="none">
<source src="https://static.inaturalist.org/sounds/93996.wav" type="audio/x-wav">
</audio>
</body>
</html>