forked from Digital-Humanities-Toolkit/timeline-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 875 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
<html>
<head>
<link
title="timeline-styles"
rel="stylesheet"
href="https://cdn.knightlab.com/libs/timeline3/latest/css/timeline.css"
/>
<script src="https://cdn.knightlab.com/libs/timeline3/latest/js/timeline.js"></script>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<script
type="text/javascript"
language="javascript"
src="turing.json"
></script>
<script type="text/javascript">
$.getJSON("turing.json", function (data) {
var timeline_json = data;
window.timeline = new TL.Timeline("timeline-embed", timeline_json);
});
</script>
</head>
<body>
<div id="timeline-embed" style="width: 100%; height: 600px"></div>
</body>
</html>