-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (70 loc) · 1.92 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="./style.css">
<script defer src="./index.js" type="text/javascript"></script>
<title>Study with Us</title>
</head>
<body>
<div class="main">
<div class="video-container">
<video loop>
<source src="./Waves.mp4" type="video/mp4"/>
</video>
</div>
<div class="time-select">
<button data-time="1500">15 Minute</button>
<button data-time="3000">50 Minutes</button>
<button data-time="5400">1H 30 Minutes</button>
<button data-time="7200">2 Hours</button>
<button data-time="10800">3 Hours</button>
</div>
<div class="player-container">
<audio class="album">
<source src="LeOnde.mp3" />
</audio>
<img src="play.svg" alt="play" class="play"/>
<svg
class="track-outline"
width="453"
height="453"
viewBox="0 0 453 453"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="226.5"
cy="226.5"
r="216.5"
stroke="white"
stroke-width="20"
/>
</svg>
<svg
class="moving-outline"
width="453"
height="453"
viewBox="0 0 453 453"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="226.5"
cy="226.5"
r="216.5"
stroke="#018EBA"
stroke-width="20"
/>
</svg>
<h3 class="time-display">0:00</h3>
</div>
<div class="sound-selection">
<button data-sound="./leOnde.mp3" data-video="./Waves.mp4">Play Le Onde</button>
<button data-sound="./UnaMattina.mp3" data-video="./Sunrise.mp4">Play Una Mattina</button>
</div>
</div>
</body>
</html>