-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
234 lines (220 loc) · 6.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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!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" />
<title>minime</title>
<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=Gloock&family=Manrope&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<section class="front-page">
<!--
<img
class="hero"
src="https://cdn.glitch.global/69225e86-d061-4cf0-a1b8-2ad0e7b45536/meditating2.jpg?v=1682582970048"
alt="meditating"
/>
-->
<nav>
<div class="logo">
<img
src="https://cdn.glitch.global/69225e86-d061-4cf0-a1b8-2ad0e7b45536/flower.png?v=1682576352079"
alt="logo"
/>
<h1>minime</h1>
</div>
<div class="links">
<a href="#">our story</a>
<a href="#">practice</a>
<a href="#">classes</a>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
width="44"
height="18"
viewbox="0 0 44 18"
fill="none"
>
<line
class="line"
y1="1"
x2="44"
y2="1"
stroke="white"
stroke-width="2"
/>
<line
class="line"
y1="9"
x2="27"
y2="9"
stroke="white"
stroke-width="2"
/>
<line
class="line"
y1="17"
x2="11"
y2="17"
stroke="white"
stroke-width="2"
/>
</svg>
</nav>
<div class="selling-point">
<h2>Find your inner self.</h2>
<h3 class="fadeindown">
Try meditation, hot yoga, and strength-training classes tailored to
fit your personal lifestyle.
</h3>
<div class="ctas">
<button class="cta-sec">Explore classes</button>
<button class="cta-main">Sign up today!</button>
</div>
</div>
</section>
<section class="classes">
<div class="classes-description">
<h2>Classes crafted for you</h2>
<h3 class="faded">Replenish your mind and body.</h3>
</div>
<div class="videos">
<div class="meditation">
<h3>Meditation</h3>
<video
playsinline
muted
loop
class="video"
src="https://cdn.glitch.global/69225e86-d061-4cf0-a1b8-2ad0e7b45536/meditation.mp4?v=1682584141683"
></video>
</div>
<div class="yoga">
<h3>Hot Yoga</h3>
<video
playsinline
muted
loop
class="video"
src="https://cdn.glitch.global/69225e86-d061-4cf0-a1b8-2ad0e7b45536/yoga.mp4?v=1682584131551"
></video>
</div>
<div class="strength">
<h3>Strength Training</h3>
<video
playsinline
muted
loop
class="video"
src="https://cdn.glitch.global/69225e86-d061-4cf0-a1b8-2ad0e7b45536/pilates.mp4?v=1682584127840"
></video>
</div>
</div>
</section>
<section class="about">
<div class="our-story">
<h2>Our Story...</h2>
<p class="faded">
Minnie has been practicing the art of yoga for over 10 years. Inspired
by her teachers, she seeks to move mountains with a compassionate
heart through spreading this art to others in this world. With a
curious and creative vision, she continues to cultivate a peace of
mind everywhere.
</p>
</div>
<img
src="https://cdn.glitch.global/69225e86-d061-4cf0-a1b8-2ad0e7b45536/stones.jpg?v=1682637243406"
alt="our-story"
/>
</section>
<!-- JS begins here -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/ScrollTrigger.min.js"></script>
<script src="/script.js"></script>
<script>
const burger = document.querySelector("nav svg");
const ctasButtons = document.querySelectorAll(".ctas button");
ctasButtons.forEach((node) => {
node.onmouseenter = (e) => {
let myButton = e.currentTarget;
if (myButton.classList.contains("cta-sec")) {
myButton.classList.toggle("cta-sec-hover");
} else {
myButton.classList.toggle("cta-main-hover");
}
};
node.onmouseout = (e) => {
let myButton = e.currentTarget;
if (myButton.classList.contains("cta-sec")) {
myButton.classList.toggle("cta-sec-hover");
} else {
myButton.classList.toggle("cta-main-hover");
}
};
});
burger.addEventListener("click", () => {
if (burger.classList.contains("active")) {
gsap.to(".links", { x: "100%" });
gsap.to(".line", { stroke: "rgba(222, 222, 222)" });
gsap.set("body", { overflow: "auto" });
gsap.set("body", { overflowX: "hidden" });
} else {
gsap.to(".links", { x: "0%" });
gsap.to(".line", { stroke: "rgba(27, 27, 27)" });
gsap.fromTo(
".links a",
{ opacity: 0, y: 0 },
{ opacity: 1, y: 10, delay: 0.5, stagger: 0.3 }
);
gsap.set("body", { overflow: "hidden" });
}
burger.classList.toggle("active");
});
const videos = gsap.utils.toArray(".video");
gsap.set(videos, { opacity: 0 });
videos.forEach((video) => {
ScrollTrigger.create({
trigger: video,
start: "top center",
end: "bottom center",
markers: false,
onEnter: () => {
gsap.to(video, { opacity: 1 });
video.play();
},
onEnterBack: () => video.play(),
onLeave: () => video.pause(),
onLeaveBack: () => video.pause(),
});
});
var fadedElements = document.querySelectorAll(".faded");
fadedElements.forEach((faded) => {
var top = faded.getBoundingClientRect().top;
if (top < window.innerHeight - 40) {
faded.classList.add("already-on-page");
} else {
faded.classList.add("not-on-page");
}
});
window.addEventListener("scroll", () => {
fadedElements.forEach((faded) => {
var top = faded.getBoundingClientRect().top;
console.log(top, window.innerHeight);
if (
top < window.innerHeight - 40 &&
faded.classList.contains("not-on-page")
) {
faded.classList.add("fadeinup");
}
});
});
</script>
</body>
</html>