-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo2.html
41 lines (29 loc) · 1.24 KB
/
demo2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0" /> -->
<title>Storyspace demo</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 presentation Javascript -->
<script type="text/javascript" src="js/storyspace.js"></script>
<!-- Load config -->
<script type="text/javascript" src="js/config_demo2.js"></script>
<!-- Scale down content for normal displays -->
<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>