-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
40 lines (40 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>0x40 Hues of HTML5</title>
<script type="text/javascript">
window.huesConfig = {
"respack": "0x40 Hues 5.0 Defaults",
"defaultSong": 18,
"autoPlay": true
};
</script>
<!-- A couple of polyfills for cool new features -->
<script type="text/javascript" src="es6-promise-2.1.1.js"></script>
<script type="text/javascript" src="fetch-0.8.1.js"></script>
<!--script type="text/javascript" src="es6-array-findindex.js"></script-->
<script type="text/javascript" src="webkit-webaudio-hack.js"></script>
<style type="text/css">
html {
width: 100%;
height: 100%;
}
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
</style>
<link rel="stylesheet" type="text/css" media="all" href="hues-ui.css">
<link rel="stylesheet" type="text/css" media="all" href="hues-m.css">
</head>
<body>
<script type="text/javascript" src="hues.js"></script>
<script type="text/javascript" src="hues-effect.js"></script>
<script type="text/javascript" src="hues-ui-modern.js"></script>
<script type="text/javascript" src="hues-ui.js"></script>
</body>
</html>