-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (29 loc) · 1.03 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 lang="en">
<head>
<meta charset="utf-8">
<title>Collections Core zoomable mock-up</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="app" class="app">
<div id="current-path" class="path">
</div>
<div id="title" class="title"></div>
<button class="export">Export as video</button>
</div>
<script src="js/vendor/jquery-3.6.0.min.js"></script>
<script src="js/vendor/underscore-umd-min.js"></script>
<script src="js/vendor/d3.v7.min.js"></script>
<script src="js/vendor/d3-color.min.js"></script>
<script src="js/vendor/d3-hierarchy.min.js"></script>
<script src="js/vendor/d3-interpolate.min.js"></script>
<script src="js/vendor/d3-scale.min.js"></script>
<script src="js/vendor/RecordRTC.min.js"></script>
<script src="js/config.js"></script>
<script src="js/app.js"></script>
</body>
</html>