-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
32 lines (25 loc) · 866 Bytes
/
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
<html>
<title>时间轴插件</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<link href="timeline/css/timeline.css" rel="stylesheet" />
<style>
button{
padding:.5em 1em;
margin-top:2em;
}
</style>
<body>
<div id="demo"></div>
<button id="reload">切换皮肤</button>
</body>
<!--[if (gt IE 8)|!(IE)]><!-->
<script type="text/javascript" src="timeline/js/jquery-3.1.1.js"></script>
<script type="text/javascript" src="timeline/js/raphael.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script type="text/javascript" src="timeline/js/jquery-1.11.3.js"></script>
<script type="text/javascript" src="timeline/js/raphael.js"></script>
<![endif]-->
<script type="text/javascript" src="timeline/js/timeline.js"></script>
<script type="text/javascript" src="js/demo.js"></script>
</html>