-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (55 loc) · 1.56 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
<html>
<head>
<title>Spinteny</title>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<script type="text/javascript" src="build/spinteny-compiled.js"></script>
<script type="text/javascript" src="data.js"></script>
<style type="text/css">
html,body { height: 100%; margin: 0; padding: 0; }
#container { margin: 0; padding: 0; }
.goog-slider-vertical,
.goog-slider-horizontal {
background-color: rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
}
.goog-slider-thumb {
position: absolute;
background-color: rgba(80, 80, 80, 1.0);
overflow: hidden;
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.goog-slider-thumb-dragging {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
.goog-slider-vertical .goog-slider-thumb {
left: 0;
height: 40px;
width: 100%;
}
.goog-slider-horizontal .goog-slider-thumb {
top: 0;
width: 40px;
height: 100%;
}
.goog-slider-disabled {
background-color: lightgray
}
</style>
<script>
var sp;
function load() {
sp = new Spinteny("container", chroms, map);
}
</script>
</head>
<body onload="load();">
<div id="container" style="width: 100%; height: 100%;"></div>
</body>
</html>