-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (28 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0" /> -->
<title>Storyspace</title>
<link rel="stylesheet" type="text/css" href="css/visualization_gallery.css"/>
<link rel="stylesheet" type="text/css" href="css/storyspace.css"/>
</head>
<body>
<!-- #storyspace is parent elment for all visible content -->
<div id="storyspace" class="visualization-gallery"></div>
<!-- #audio contains audio elements when needed, not visible -->
<div id="main-audio"></div>
<!-- Load utility functions first - these are used by core JS but adding them here makes them available to callbacks in custom JS -->
<script type="text/javascript" src="js/utils.js"></script>
<!-- Load core Javascript -->
<script type="text/javascript" src="js/storyspace.js"></script>
<!-- Load presentation config -->
<script type="text/javascript" src="js/config.js"></script>
<!-- Load transform_scale to fit content on smaller displays for development -->
<script type="text/javascript" src="js/transform_scale.js"></script>
<!-- initialize the presentation, passing in the configuration defined in config.js -->
<script>
new Storyspace('#storyspace', config());
</script>
</body>
</html>