forked from peterhadlaw/personal-website-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththreejs-animation.html
22 lines (21 loc) · 918 Bytes
/
threejs-animation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Three.js Animation</title>
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
</head>
<body>
<!-- Navigation Bar -->
<!-- Your existing nav bar code here -->
<!-- Three.js Animation Script -->
<script src="assets/js/torus-animation.js"></script>
<script src="assets/js/three-animation.js"></script>
</body>
</html>