-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
28 lines (23 loc) · 1.07 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
<html>
<head>
<meta charset="utf-8">
<title>Radio Name</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id='body-fx-wrapper'>
<canvas id='visualizer'></canvas>
<div id='foreground' onclick="GetInfo()">
<audio crossorigin='' id='Stream' autoplay="" controls="">
<source src="https://stream.mydnic.be/radio.ogg" type="audio/mp3">
</audio>
<input onclick="setVol(this.value)" min="0" max="1" step="0.01" id="volume-bar" type="range"/>
<svg viewBox="0 0 100 100" onclick='start()' class='play-btn' id='start'><polygon points="0,0 100,50 0,100" /></svg>
<svg viewBox="0 0 100 100" onclick='pause()' class='pause-btn' id='pause'><rect height="100" width="100" /></rect></svg>
<div id="current-volume"></div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>