-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·47 lines (43 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>黑龙江科技大学多媒体课件开发工作室</title>
<meta name="description" content="TimelineJS example">
<style>
html, body {
height:100%;
padding: 0;
margin: 0;
}
#timeline-embed {
margin:0 !important;
border:0 solid #CCC !important;
padding:0 !important;
-webkit-border-radius:0 !important;
-moz-border-radius:0 !important;
border-radius:0 !important;
-moz-box-shadow:0 0 0 rgba(0, 0, 0, 0.25) !important;
-webkit-box-shadow:0 0 0 rgba(0, 0, 0, 0.25) !important;
box-shadow:0 0 0 rgba(0, 0, 0, 0.25) !important;
}
</style>
</head>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
var timeline_config = {
width: "100%",
height: "100%",
source: 'data.json',
start_at_end: true, //OPTIONAL
//hash_bookmark: true, //OPTIONAL
css: 'compiled/css/timeline.css', //OPTIONAL
js: 'compiled/js/timeline-min.js' //OPTIONAL
}
</script>
<script type="text/javascript" src="compiled/js/timeline-embed.js"></script>
<!-- END Timeline Embed -->
</body>
</html>