-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.69 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 1.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meditation App 🐵</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Medidate Like a Monk 🐵</h1>
<div class="app">
<div class="vid-container">
<video loop>
<source src="./video/rain.mp4" type="video/mp4">
</video>
</div>
<!-- TIME OPTIONS -->
<div class="time-select">
<button data-time="120">2 Min</button>
<button data-time="300">5 Min</button>
<button data-time="600">10 Min</button>
</div>
<!-- TIME OPTIONS ENDS -->
<!-- AUDIO PLAYER START -->
<div class="player-container">
<audio class="song">
<source src="./sounds/rain.mp3">
</audio>
<img src="./svg/play.svg" alt="Play Button" 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>
<!-- Time Countdown -->
<h3 class="time-display">0:00</h3>
</div>
<!-- AUDIO PLAYER ENDS -->
<div class="sound-picker">
<button data-sound="./sounds/rain.mp3" data-video="./video/rain.mp4"><img src="./svg/rain.svg" alt="rain"></button>
<button data-sound="./sounds/beach.mp3" data-video="./video/beach.mp4"><img src="./svg/beach.svg" alt="Beach"></button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>