forked from yvesvinckier/threejs-scrollable-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (85 loc) · 2.96 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<title>Threejs scrollable page</title>
<meta charset="UTF-8" />
<meta name="robots" content="noindex" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav class="nav--bar">
<img src="./assets/logo.svg" class="logo" />
<button class="button--navbar">BUY NOW</button>
</nav>
<div class="container">
<section class="section first">
<div class="section--one--container">
<h1>Doris Armchair</h1>
<p>
Before they sold out salvia aesthetic, hexagon disrupt sustainable
vaporware crucifix succulents kale chips. Selvage knausgaard
scenester.
</p>
<button class="button--hero">KNOW MORE</button>
</div>
</section>
<section class="section second">
<div class="section--two--container">
<h2>Smooth design</h2>
<p>
Humblebrag pickled listicle yes plz williamsburg shoreditch tumblr,
put a bird on it cred knausgaard snackwave scenester. Before they
sold out salvia aesthetic.
</p>
</div>
</section>
<section class="section third">
<div class="section--third--container">
<h2>Softness of the upholstery</h2>
<p>
Humblebrag pickled listicle yes plz williamsburg shoreditch tumblr,
put a bird on it cred knausgaard snackwave scenester. Before they
sold out salvia aesthetic.
</p>
<button class="button--customize">CUSTOMIZE</button>
</div>
</section>
<footer>
<button class="button--footer">BACK TO TOP</button>
<p class="credit">
Armachair creator :
<a href="https://skfb.ly/6CnvG">Doris Armchair, Shetland Pink</a> by
MADE.COM is licensed under
<a href="http://creativecommons.org/licenses/by-nc/4.0/"
>Creative Commons Attribution-NonCommercial</a
>
</p>
</footer>
</div>
<div id="webgi-canvas-container">
<canvas id="webgi-canvas"></canvas>
<button class="button--customize button--exit">EXIT</button>
</div>
<div class="customizer--container">
<ul class="strap--colors">
<li class="button--colors green"></li>
<li class="button--colors red"></li>
<li class="button--colors violet"></li>
</ul>
</div>
<script src="src/index.ts"></script>
</body>
</html>