65
|
1 |
<!DOCTYPE html> |
|
2 |
<html lang="fr"> |
|
3 |
<head> |
|
4 |
<meta charset="utf-8" /> |
|
5 |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
|
6 |
<title>Tests Timeline</title> |
|
7 |
<meta name="description" content="" /> |
|
8 |
<meta name="author" content="Institut de Recherche et d'Innovation (IRI)" /> |
|
9 |
<link rel="stylesheet" type="text/css" href="css/timeline.css" /> |
74
|
10 |
<link rel="stylesheet" type="text/css" href="css/ui-lightness/jquery-ui-1.8.21.custom.css" /> |
77
|
11 |
<style type="text/css"> |
|
12 |
h1 { |
|
13 |
text-align: center; font-size: 20px; font-weight: bold; margin: 5px; |
|
14 |
} |
|
15 |
#timeline { |
|
16 |
width: 950px; margin: 5px auto; |
|
17 |
} |
|
18 |
</style> |
74
|
19 |
<script type="text/javascript" src="lib/jquery-min.js"> </script> |
|
20 |
<script type="text/javascript" src="lib/jquery.mousewheel.min.js"> </script> |
|
21 |
<script type="text/javascript" src="lib/jquery-ui-1.8.21.custom.min.js"> </script> |
|
22 |
<script type="text/javascript" src="lib/underscore-min.js"> </script> |
|
23 |
<script type="text/javascript" src="lib/raphael-min.js"> </script> |
|
24 |
<script type="text/javascript" src="lib/mustache.js"> </script> |
|
25 |
<script type="text/javascript" src="js/timeline.js"> </script> |
65
|
26 |
<script type="text/javascript"> |
|
27 |
var _tl; |
|
28 |
$(function() { |
|
29 |
_tl = new Tlns.Classes.Timeline({ |
77
|
30 |
url_univers: 'data/api_univers.json', |
|
31 |
urls_occurrences: [ |
|
32 |
{ |
|
33 |
url: 'data/api_occurrence_publication.json', |
|
34 |
type: 'publication' |
|
35 |
}], |
65
|
36 |
container: "timeline", |
77
|
37 |
level: 1, |
65
|
38 |
sync_now: false, |
77
|
39 |
central_time: Date.parse("2012-07-26T00:00:00Z") |
65
|
40 |
}); |
|
41 |
}); |
|
42 |
</script> |
|
43 |
</head> |
|
44 |
|
|
45 |
<body> |
77
|
46 |
<h1>Tests Timeline</h1> |
74
|
47 |
<div id="timeline"> </div> |
65
|
48 |
</body> |
|
49 |
</html> |