-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (67 loc) · 3.12 KB
/
index.html
File metadata and controls
72 lines (67 loc) · 3.12 KB
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
65
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signed Distance Functions</title>
<style>
body { margin: 0; }
canvas { display: block; }
.exampleImg {
width: 60%;
}
.exampleImg:hover {
box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.25), 0 10px 20px 0 rgba(0, 0, 0, 0.19); /* Shadow on hover */
}
</style>
<!-- Bootstrap JS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body>
<!--Navbar-->
<nav id="main-navbar" class="navbar sticky-top navbar-expand-lg bg-body-tertiary" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="/SDF/">SDF</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</nav>
<main class="container-fluid">
<div class="row mt-5">
<div class="col-md-6">
<a href="./pages/bridge.html"><img src="./imgs/bridgeExample.JPG" class="rounded exampleImg mx-auto d-block" alt="Bridge"></img></a>
</div>
<div class="col-md-6">
<a href="./pages/lavaLamp.html"><img src="./imgs/lavaExample.JPG" class="rounded exampleImg mx-auto d-block" alt="Lava Lamp"></img></a>
</div>
</div>
<div class="row mt-5">
<div class="col-md-6">
<a href="./pages/mouse.html"><img src="./imgs/mouseExample.JPG" class="rounded exampleImg mx-auto d-block" alt="Mouse"></img></a>
</div>
<div class="col-md-6">
<a href="./pages/primitive.html"><img src="./imgs/primitiveExample.JPG" class="rounded exampleImg mx-auto d-block" alt="Primitive"></img></a>
</div>
</div>
<div class="row mt-5">
<div class="col-md-6">
<a href="./pages/truss.html"><img src="./imgs/colorTrussExample.png" class="rounded exampleImg mx-auto d-block" alt="Truss"></img></a>
</div>
<div class="col-md-6">
<a href="./pages/snes.html"><img src="./imgs/snesController.png" class="rounded exampleImg mx-auto d-block" alt="SNES Controller"></img></a>
</div>
</div>
</main>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.164.1/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.164.1/examples/jsm/"
}
}
</script>
</body>
</html>