-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3js</title>
<style>
html {height: 100%; display: flex; justify-content: center; align-items: center;}
body {margin:0; padding: 0; text-align: center;}
.card {border: 1px solid; border-radius: 8px; width: 300px; height: 300px; padding: 0 32px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;}
a {font-size: 1.125rem; font-weight: bold; text-decoration: none; color: #000; padding: 4px; margin: 4px;}
a:hover {color: orange;}
</style>
</head>
<body>
<p>WebGL / threejs</p>
<div class="card">
<a href="https://github.com/webgldev/threejs-journey/tree/demo/chapter">Tutorial</a>
<a href="https://webgldev.github.io/threejs-journey/demo/17_Haunted_house/index.html">Haunted house</a>
<a href="https://webgldev.github.io/threejs-journey/demo/18_Particles/index.html">Particles</a>
<a href="https://webgldev.github.io/threejs-journey/demo/19_Galaxy_generator/index.html">Galaxy generator</a>
<a href="https://webgldev.github.io/threejs-journey/demo/21_Scroll_based_animation/index.html">Scroll based animation</a>
</div>
</body>
</html>