-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeglider-min.html
53 lines (30 loc) · 1.04 KB
/
timeglider-min.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Timeglider Proof of Min</title>
<link rel="stylesheet" href="css/aristo/jquery-ui-1.8.5.custom.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="js/timeglider/Timeglider.css" type="text/css" media="screen" title="no title" charset="utf-8">
<style type='text/css'>
#placement {
margin:32px;
height:520px;
}
</style>
</head>
<body>
<div id='placement'></div>
<script src="js/jquery-1.4.4.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery-ui-1.8.9.custom.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/timeglider.min.js" type="text/javascript" charset="utf-8"></script>
<script>
$(document).ready(function () {
var tg1 = $("#placement").timeline({
"min_zoom":15,
"max_zoom":70,
"data_source":"json_tests/js_history.json"
});
});
</script>
</body>
</html>