-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayer.html
More file actions
executable file
·55 lines (54 loc) · 2.65 KB
/
player.html
File metadata and controls
executable file
·55 lines (54 loc) · 2.65 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
<!DOCTYPE html>
<html>
<head>
<title>Favorite Stations</title>
<meta charset="utf-8"/>
<meta name="description" content="Internet audio player">
<meta name="author" content="DLopez (github.com/ndlopez)">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
<link rel="apple-touch-icon" href="assets/play_btn.png" sizes="192x192">
<link rel="stylesheet" type="text/css" href="static/common.css">
<link rel="stylesheet" type="text/css" href="static/mobile.css">
<link rel="stylesheet" type="text/css" href="static/stylez.css">
<link rel="stylesheet" type="text/css" href="static/player.css">
<!--link rel="stylesheet" type="text/css" href="static/burger.css"-->
<script src="static/these_stations.js"></script>
</head>
<body>
<main>
<section id="amia"></section>
<section class="bkg_cd_case" id="artwork"></section>
</main>
<aside id="player2">
<div id="cover_title" class="padding_5">
<span>You don't get me high anymore</span><span>Phantogram</span>
</div>
<div class="player2 abs_right">
<!--half_col float_left padding_10,half_col float_left-->
<div id="reloadMe" class="player_item"></div>
<div class="player_item">
<svg id="play2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" width="60" height="60" stroke="#2e4054" fill="#bed2e0">
<circle class="paused no_mobil" stroke-width="4" cx="30" cy="30" r="26"/>
<path class="paused" fill="#bed2e0" d="M23 40 L23 20 43 30Z"/></svg>
</div>
<div id="duck_it" class="player_item"></div>
<div class="player_item">
<label for="vol_input" onclick="volume_mute(0)">
<img id="vol_icon" src="assets/volume-svgrepo.svg" width="32"/></label>
<input id="vol_input" class="volume-vertical" type="range" min="0" max="100" value="80" step="10" oninput="audioConnect.volume = this.value/100" onchange="this.oninput()">
</div>
</div>
<div class="no_mobil">
<div id="gifElm" class="equalizer no-audio"><div>
<span></span><span></span><span></span><span></span><!--span></span-->
</div></div>
</div>
</aside>
<!--aside id="station_info">
<div class="col70 float_left"> <span id="title_stat" class="moving-text">♪ Click on a station logo and press the <em>play</em> button to start</span></div>
<span id="timer" class="col30 float_left">00:00</span><span class="col15 float_left align-right">LIVE </span>
</aside-->
<script src="static/multiPlay2.js"></script>
</body>
</html>