-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
69 lines (69 loc) · 3.11 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Meowmeo Player | HTML5 audio player with spectrum visualizer">
<meta name="author" content="Wayou Liu">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Meowmeow Player | HTML5 audio player with spectrum visualizer</title>
<link rel="stylesheet" href="style/main.css">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<header>
<span id="showControl">PLAYLIST</span> <span id="info"> Meow meow Player</span>
</header>
<div class="wrapper">
<aside class="control">
<p class="winTitle">
<span id="time"><small>View on <a href="https://github.com/Wayou/MeowmeowPlayer/" target="_blank">GitHub</a> </small></span>
<span title="close" id="close">X</span>
</p>
<ul id="controlPanel">
<li class='play'>
<div id="pre" class="controlBtn" title="previous">I<</div>
<div id="playBtn" class="controlBtn" title="stop">O</div>
<div id="next" class="controlBtn" title="next">>I</div>
</li>
<li>
<div id="shuffle" title="shuffle the order of songs">
Shuffle
</div>
</li>
<li>
<div id="empty" title="empty the list">
Empty
</div>
</li>
<li>
<div class="add" title="add files to list, you can also drag files to the page">
<label for="addFiles" >Add </label>
<input type="file" id="addFiles" multiple />
</div>
</li>
</ul>
<div class="dividLine"></div>
<ol id="playlist">
</ol>
</aside>
<div id="visualizer">
<canvas width="800" height="350" id="canvas">!Canvas not supported by your browser :(</canvas>
<div id="mirrorWrapper">
<canvas width="800" height="250" id="mirror"></canvas>
</div>
</div>
</div>
<!-- <footer>
<small>Star me on <a href="https://github.com/Wayou/MeowmeowPlayer/" target="_blank">GitHub</a></small>
</footer> -->
<script src="script/mmplayer.js"></script>
<script>
/*(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46794744-6', 'wayou.github.io');
ga('send', 'pageview');*/
</script>
</body>
</html>