forked from aperkaz/web-radio-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.42 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
<!DOCTYPE HTML>
<html>
<head>
<title>Radio Jukebox</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<script type="text/javascript" src="playback.js" ></script>
</head>
<body class="loading">
<div id="wrapper">
<div id="bg"></div>
<div id="overlay"></div>
<div id="main">
<!-- Header -->
<header id="header">
<h1>Radio Jukebox</h1>
<p>
<a id="paradise" onclick="loadStream(0)" style="cursor:pointer"> Paradise </a> •
<a id="paradise" onclick="loadStream(1)" style="cursor:pointer"> Dance </a> •
<a id="paradise" onclick="loadStream(2)" style="cursor:pointer"> Folk </a> •
<a id="paradise" onclick="loadStream(3)" style="cursor:pointer"> Punk </a>
</p>
<nav>
<ul>
<li><a id="playbackButton" href="#" class="icon fa-play" onclick="changePlayback()"><span class="label">Music</span></a></li>
</ul>
</nav>
<div id="label">
</div>
</header>
</div>
</div>
<script>
window.onload = function() { document.body.className = ''; }
window.ontouchmove = function() { return false; }
window.onorientationchange = function() { document.body.scrollTop = 0; }
</script>
</body>
</html>