-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calm.html
40 lines (38 loc) · 1.26 KB
/
Calm.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
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Music</title>
<link href="css/style.css" rel="stylesheet"> <!--load all styles -->
<link href="fontawesome-free-5.13.0-web/css/all.css" rel="stylesheet"> <!--load all styles -->
<script defer src="fontawesome-free-5.13.0-web/js/all.js"></script> <!--load all styles -->
</head>
<body>
<audio id="player" ontimeupdate="updateProgress();">
<source id="source">
Audio no soportado
</audio>
<div id="controls">
<div class="timer" id="timer">
</div>
<div class="volumen">
Vol:
<i class="fas fa-volume-down"></i>
<input type="range" name="volumen" id="volumen" min="0" max="1" step="0.01" value="0.75">
<i class="fas fa-volume-up"></i>
</div>
<i class="fas fa-backward fa-5x" onclick="prevMusic();"></i>
<i class="far fa-play-circle fa-5x" onclick="togglePlay();" id="iconPlay"></i>
<i class="fas fa-forward fa-5x" onclick="nextMusic();"></i>
<br>
<span id="currentPlay"></span><br>
<progress id="progress" value="0" max="100" ></progress>
<h3>Calm</h3>
<div id="playList"></div>
</div>
</div>
<p>Música descargada de : <a href="https://www.bensound.com/">https://www.bensound.com/</a></p>
<script type="text/javascript" src="js/Calm.js"></script>
</body>
</html>