-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path001_index.html
More file actions
35 lines (35 loc) · 900 Bytes
/
Copy path001_index.html
File metadata and controls
35 lines (35 loc) · 900 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Kinetic Object Simulation</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<style>
body { margin: 0; }
canvas { display: block; }
button {
position: fixed;
bottom: 10px;
left: 10px;
padding: 5px 10px;
background-color: lightgrey;
color: black;
border: none;
cursor: pointer;
font-size: 10px;
}
button:hover {
background-color: rgb(5, 254, 250);
}
</style>
</head>
<body>
<div id="container"></div>
<button id="saveButton">Save Log</button>
<script src="js/002_scene.js"></script>
<script src="js/002_fractalObject.js"></script>
<script src="js/002_weather.js"></script>
<script src="js/002_trail.js"></script>
<script src="js/002_log.js"></script>
<script src="js/002_animate.js"></script>
</body>
</html>