This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
76 lines (62 loc) · 2.4 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
70
71
72
73
74
75
76
<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<title>MDJ</title>
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,900,400italic" rel="stylesheet" type="text/css">
<link href="lib/dragdealer/dragdealer.css" rel="stylesheet" type="text/css">
<style type="text/css">
/**
* Example of an initial loading indicator.
* It is recommended to keep this as minimal as possible to provide instant feedback
* while other resources are still being loaded for the first time
*/
html, body {
height: 100%;
background-color: #161616
}
#appLoadingIndicator {
position: absolute;
top: 50%;
left: 50%;
margin-left: -50px;
margin-top: -50px;
text-align: center;
width: 100px;
height: 100px;
background-image: url("resources/loading.png");
background-size: contain;
background-repeat: no-repeat;
-webkit-animation-name: spin;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
#apploadingindicator {
background-image: url("resources/[email protected]");
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
}
}
</style>
<!-- The line below must be kept intact for Sencha Command to build your application -->
<script id="microloader" type="text/javascript" src="touch/microloader/development.js"></script>
<script type="text/javascript" src="lib/id3/dist/id3-minimized.js"></script>
<script type="text/javascript" src="lib/wavesurfer/wavesurfer.js"></script>
<script type="text/javascript" src="lib/wavesurfer/webaudio.js"></script>
<script type="text/javascript" src="lib/wavesurfer/drawer.js"></script>
<script type="text/javascript" src="lib/dragdealer/dragdealer.js"></script>
<script type="text/javascript" src="socket.io/socket.io.js"></script>
</head>
<body>
<div id="appLoadingIndicator">
</div>
</body>
</html>