-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
107 lines (101 loc) · 3.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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="shortcut icon" type="image/x-icon" href="./assets/favicon.ico" />
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<title>iZEN</title>
</head>
<body>
<header class="lead content mt-4 text-center text-light px-1git statusgi">
For a lot more info about this topic, I suggest visiting my
<a href="about/about.html" class="mb-5 lead"> INTRO</a>
to meditation page
</header>
<div class="app">
<div class="vid-container">
<video loop>
<!-- <source src="./assets/video/rain.webm" type="video/webm" /> -->
<source src="./assets/video/rain-converted.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
<div class="time-select">
<button data-time="120" class="btn btn-info">
<b>2</b>
<span id="time" class="bold text-primary">Minutes</span>
</button>
<button data-time="300" class="btn btn-info medium-mins">
<b>5</b>
<span id="time" class="bold text-danger">Minutes</span>
</button>
<button data-time="600" class="btn btn-info long-mins">
<b>10</b>
<span id="time" class="bold text-default">Minutes</span>
</button>
</div>
<div class="player-container">
<audio class="song">
<source src="./assets/sounds/rain.mp3" />
</audio>
<img src="./assets/svg/play.svg" 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="teal"
stroke-width="20"
/>
</svg>
<img src="./assets/svg/replay.svg" class="replay" />
<h3 class="time-display">0:00</h3>
</div>
<div class="sound-picker">
<button
data-sound="./assets/sounds/rain.mp3"
data-video="./assets/video/rain-converted.mp4"
>
<img src="./assets/svg/rain.svg" alt="Rain sound" />
</button>
<button
data-sound="./assets/sounds/beach.mp3"
data-video="./assets/video/beach-converted.mp4"
>
<img src="./assets/svg/beach.svg" alt="Ocean sound" />
</button>
</div>
</div>
<footer class="lead content mt-4 text-center text-light px-1git statusgi">
May I also suggest the
<a href="BreatherApp/index.html" class="mb-5 lead"> Breather app </a>
</footer>
<script src="./js/app.js"></script>
</body>
</html>