-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (42 loc) · 1.88 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<meta charset="UTF-8">
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<script src="https://cdn.jsdelivr.net/npm/p5@1.3.1/lib/p5.js"></script>
<!-- <script language="javascript" type="text/javascript" src="libraries/p5.sound.min.js"></script> -->
<link href="https://api.mapbox.com/mapbox-gl-js/v2.2.0/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v2.2.0/mapbox-gl.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="title">Sonic Urban Transformations</div>
<!-- the overall view container with padding -->
<div class="viewContainer container">
<!-- <button class = "buttonP1"onclick="MyFunction()">PHASE 1</button> -->
<div class="phaseContainer item">
<!-- <button class = "buttonP1">Initial PHASE 1</button>
<button class = "buttonP2">PHASE 2 Part I</button>
<button class = "buttonP2">PHASE 2 Part II</button>
<button class = "buttonP3">PHASE 3 Part I</button> -->
</div>
<div class="timeContainer item">
<div id="timeSVGContainer">
<object id="timelineSVG" data="assets/timeLines.svg" type="image/svg+xml"></object>
</div>
</div>
<div class="pathLinearContainer item">
<div id="p5-sketch-Container">
<!-- Our sketch will go here! -->
</div>
</div>
<!-- <div class="photoContainer item">
</div> -->
<div id="mapboxContainer"></div>
</div>
<script type="text/javascript" src="finalProject.js" ></script>
</body>
</html>