-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·53 lines (50 loc) · 2.05 KB
/
index.html
File metadata and controls
executable file
·53 lines (50 loc) · 2.05 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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Atmospheric Depth Gallery | Codrops</title>
<meta
name="description"
content="A Three.js depth gallery where images shape their own environment — mood-driven GLSL backgrounds, parallax motion, and velocity-reactive effects." />
<meta
name="keywords"
content="three.js, webgl, codrops, scroll, 3d gallery, depth, z-axis, mood, motion" />
<meta name="author" content="Codrops" />
<link rel="icon" type="image/svg+xml" href="https://tympanus.net/favicon/favicon.svg" />
<link rel="shortcut icon" href="https://tympanus.net/favicon/favicon.ico" />
<script>
document.documentElement.className = 'js'
</script>
</head>
<body class="demo-1">
<main>
<header class="frame">
<h1 class="frame__title">
Atmospheric Depth Gallery by
<a href="https://houmahani.com" target="_blank">Houmahani Kane</a>
</h1>
<a class="frame__back" href="https://tympanus.net/codrops/?p=111409">Article</a>
<a class="frame__archive" href="https://tympanus.net/codrops/hub/">All demos</a>
<a class="frame__github" href="https://github.com/houmahani/codrops-depth-gallery/">GitHub</a>
<nav class="frame__tags">
<a href="https://tympanus.net/codrops/hub/tag/scroll/">#scroll</a>
<a href="https://tympanus.net/codrops/hub/tag/three-js/">#three.js</a>
<a href="https://tympanus.net/codrops/hub/tag/webgl/">#webgl</a>
<a href="https://tympanus.net/codrops/hub/tag/glsl/">#glsl</a>
</nav>
<nav class="frame__credit">
<p>
Color chip layout inspired by
<a href="https://www.instagram.com/p/DU2JTU_AEwM/?img_index=3" target="_blank">@thisislandscape</a>
</p>
<p>Press D to see the debug tools</p>
</nav>
</header>
<div class="content">
<canvas class="webgl"></canvas>
</div>
</main>
<script type="module" src="./src/main.js"></script>
</body>
</html>