forked from akashnimare/foco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (92 loc) · 2.54 KB
/
index.html
File metadata and controls
96 lines (92 loc) · 2.54 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Foco - Stay Focused</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body class="arrow">
<div class="container">
<div class="control-section">
<div id="mute-button" class="on" title="mute"></div>
<div id="close-button" class="close">Close</div>
</div>
<div class="player-section">
<ul class="player">
<li class="cafe">
<h2>Cafe</h2>
<div class="clear"></div>
<audio id="cafe" loop>
<source src="resources/cafe.mp3" type="audio/mpeg">
</audio>
<div>
<input id="cafeToggle" type="checkbox" value="cafe">
<label for="cafeToggle">
<span>Toggle Audio</span>
</label>
<input max="100" min="0" step="1" type="range" value="100">
<div class="clear"></div>
</div>
</li>
<li class="rain">
<h2>Rain</h2>
<div class="clear"></div>
<audio id="rain" loop>
<source src="resources/rain.mp3" type="audio/mpeg">
</audio>
<div>
<input id="rainToggle" type="checkbox" value="rain">
<label for="rainToggle">
<span>Toggle Audio</span>
</label>
<input max="100" min="0" step="1" type="range" value="100">
</div>
</li>
<li class="fire">
<h2>Fire</h2>
<div class="clear"></div>
<audio id="Fire" loop>
<source src="resources/fire.mp3" type="audio/mpeg">
</audio>
<div>
<input id="FireToggle" type="checkbox" value="Fire">
<label for="FireToggle">
<span>Toggle Audio</span>
</label>
<input max="100" min="0" step="1" type="range" value="100">
</div>
</li>
<li class="drops">
<h2>Drops</h2>
<div class="clear"></div>
<audio id="drops" loop>
<source src="resources/raindrops.mp3" type="audio/mpeg">
</audio>
<div>
<input id="dropsToggle" type="checkbox" value="drops">
<label for="dropsToggle">
<span>Toggle Audio</span>
</label>
<input max="100" min="0" step="1" type="range" value="100">
</div>
</li>
<li class="night">
<h2>Night</h2>
<div class="clear"></div>
<audio id="night" loop>
<source src="resources/night.mp3" type="audio/mpeg">
</audio>
<div>
<input id="nightToggle" type="checkbox" value="night">
<label for="nightToggle">
<span>Toggle Audio</span>
</label>
<input max="100" min="0" step="1" type="range" value="100">
</div>
</li>
</ul>
</div>
</div>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>