-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (26 loc) · 984 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
<head>
<!-- jQuery -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<!-- always load the CSS -->
<link rel="stylesheet" type="text/css" href="http://cdn.knightlab.com/libs/timeline/latest/css/timeline.css">
<!-- BEGIN TimelineJS -->
<script type="text/javascript" src="http://cdn.knightlab.com/libs/timeline/latest/js/storyjs-embed.js"></script>
<style>
.event-line { background: yellow; }
</style>
<script>
$(document).ready(function() {
createStoryJS({
type: 'timeline',
width: '100%',
height: '700',
source: 'logic-timeline.json',
embed_id: 'logic-timeline'
});
});
</script>
<!-- END TimelineJS -->
</head>
<body>
<div id="logic-timeline"></div>
</body>