-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
167 lines (166 loc) · 5.38 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"></script>
<style>
img[data-module="fancy-image"] {
visibility: hidden;
}
[data-module="loader"] {
background-color: #343434;
}
[data-module="loader"]:not(.is-ready) * {
visibility: hidden;
}
[data-module="loader"] #loader,
[data-module="loader"] #loader * {
visibility: visible;
}
</style>
</head>
<body
style="width: 100%; overflow-x: hidden; height: 100%"
data-module="loader"
>
<!-- <div style="height: 100%; width: 100%">
<div
style="height: 100vh; position: relative"
data-module="home-experience"
></div>
</div> -->
<div style="position: fixed; top: 0; left: 0">
<div data-module="keep-scrolling">Keep Scrolling</div>
</div>
<div
style="
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
"
>
<div data-module="scramble-text">Scroll down</div>
<h1 data-module="fade-in-text">I'm Some Faded In Text</h1>
<h1 data-module="fade-in-text">I'm Some Faded In Text</h1>
</div>
<div
style="
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
"
>
<div data-module="scramble-text">Scroll down</div>
<h1 data-module="fade-in-text">I'm Some Faded In Text</h1>
<h1 data-module="fade-in-text">I'm Some Faded In Text</h1>
</div>
<!-- <div
style="
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
"
>
<div data-module="scramble-text">Scroll down</div>
</div> -->
<!-- <div
style="
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
"
>
<div data-module="scramble-text" data-text="custom text"></div>
</div> -->
<!-- <div
style="
grid-column-gap: 16px;
grid-row-gap: 16px;
grid-template-rows: auto auto;
grid-template-columns: 1fr 1fr;
grid-auto-columns: 1fr;
display: grid;
"
>
<div></div>
<div>
<img
style="max-width: 100%"
class="image"
src="/assets/img/Chris.png"
data-object-fit="contain"
data-module="fancy-image"
data-dither-enabled
data-hover
alt=""
/>
</div>
<div>
<img
style="max-width: 100%"
class="image"
src="/assets/img/Dustin.png"
data-object-fit="contain"
data-module="fancy-image"
data-dither-enabled
data-pixel-animation-enabled
data-hover
alt=""
/>
</div>
<div>
<img
style="max-width: 100%"
class="image"
src="/assets/img/Chris.png"
data-object-fit="contain"
data-module="fancy-image"
data-pixel-animation-enabled
data-hover
alt=""
/>
</div>
<div>
<img
style="max-width: 100%"
class="image"
src="/assets/img/Dustin.png"
data-object-fit="contain"
data-module="fancy-image"
data-hover
alt=""
/>
</div>
</div> -->
<!-- <div style="height: 100vh; background-color: teal"></div> -->
<!-- <div style="height: 100vh; background-color: red"></div> -->
<!-- <div
class="pin-section"
style="
height: 100vh;
background: white;
color: black;
display: flex;
align-items: center;
justify-content: center;
"
>
<p class="pin-text">Pinned</p>
<div id="root"></div>
<h1 data-module="pop-quote"></h1>
</div> -->
<!-- <div style="height: 100vh; background-color: yellow"></div> -->
<!-- <div style="height: 100vh; background-color: red"></div> -->
<script type="module" src="/js/main.js"></script>
</body>
</html>