-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 1.76 KB
/
index.html
File metadata and controls
64 lines (60 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="favicon.png" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0" /> -->
<title>Three.js Fundamentals | Barış Ürüm</title>
<link rel="stylesheet" href="/reset.css" />
<link rel="stylesheet" href="/styles.css" />
<meta property="og:image" content="/resources/img/threejs-fundamentals-og.jpg" />
<meta property="og:title" content="Three.js Fundamentals" />
<meta property="og:description"
content="A case study of several example scenes from three.js manual implemented by Barış Ürüm" />
<meta property="og:image:width" content="880" />
<meta property="og:image:height" content="880" />
</head>
<body>
<main>
<div class="nav-area">
<ul class="nav-buttons">
<li>
<button id="gltfloading">GLTF Loading</button>
</li>
<li>
<button id="lightsncam">Lights & Cam</button>
</li>
<li>
<button id="tankntarget">Tank & Target</button>
</li>
<li>
<button id="scenegraph">Scenegraph</button>
</li>
<li>
<button id="cubes">Cubes</button>
</li>
<li>
<button id="primitives">Primitives</button>
</li>
<li>
<button id="empty">Empty</button>
</li>
<li>
<input id="show-axes" type="checkbox" /> Show Axes
</li>
<li>
<input id="show-grid-controls" type="checkbox" /> Grid Controls
</li>
</ul>
<div id="info"></div>
</div>
<div id="container-controls"></div>
<canvas id="canvas-threejs"></canvas>
<div id="devinfo">
<span>Barış Ürüm 2021</span>
<a href="https://github.com/burumdev" target="_blank" rel="noopener">GitHub</a>
</div>
</main>
<script type="module" src="/main.js"></script>
</body>
</html>