-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (38 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Music</title>
<link rel="stylesheet" type="text/css" href="stylesheet/index.css">
<link rel="stylesheet" type="text/css" href="stylesheet/design.css">
<link rel="stylesheet" type="text/css" href="stylesheet/circle.css">
<script src="node_modules/jquery/dist/jquery.js" onload="window.$ = window.jQuery = module.exports;"></script>
<!--<script type="text/javascript" src="node_modules/electron-open-link-in-browser/build/electron-open-link-in-browser.js"></script>-->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<!--<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">-->
</head>
<body>
<div id="circle-big" class="circle big">
<div id="circle" class="circle small" onclick="circle()">
<!--<div id="sector"></div>-->
</div>
</div>
<div id="tags"></div>
<ul id="playlist"></ul>
<div id="equalizer"></div>
<video autoplay muted></video>
<!--<a id="showVideo" onclick="showVideo()">Video</a>-->
</body>
<script>
require('./renderer.js')
</script>
<script src="javascript/index.js"></script>
<script src="javascript/tags.js"></script>
<script src="javascript/last.fm.js"></script>
<script src="javascript/playlist.js"></script>
<script src="javascript/youtube.js"></script>
<script src="javascript/equalizer.js"></script>
<!--<script src="javascript/lib/linkfinder.js"></script>-->
<!--<script src="javascript/lib/youtube.js"></script>-->
<!--<script src="javascript/lib/youtubemp3.js"></script>-->
</html>