-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path401.html
272 lines (272 loc) · 11.1 KB
/
401.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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Wed Feb 05 2025 09:21:05 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="668e5792bf664077c93af8d4" data-wf-site="668e5792bf664077c93af899">
<head>
<meta charset="utf-8">
<title>Protected page</title>
<meta content="Protected page" property="og:title">
<meta content="Protected page" property="twitter:title">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Webflow" name="generator">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/vulpem-venture.webflow.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["Azeret Mono:100,200,300,regular,500,600,700,800,900"] }});</script>
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
<link href="images/favicon.jpg" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.jpg" rel="apple-touch-icon"><!-- Custom Scrollbar. -->
<style>
body::-webkit-scrollbar {
width: 8px;
}
body::-webkit-scrollbar-track {
background-color: rgba(0, 0, 0, .05);
-webkit-border-radius: 20px;
border-radius: 20px;
}
body::-webkit-scrollbar-thumb {
-webkit-border-radius: 20px;
border-radius: 20px;
background: rgb(54, 49, 49);
}
</style>
<!-- Keep this css code to improve the font quality -->
<style>
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-o-font-smoothing: antialiased;
}
</style>
<!-- Scrolling text animations -->
<style>
[text-split] {opacity: 0;}
html.w-editor [text-split] {opacity: 1;}
.word {
overflow: hidden;
padding-bottom: 0.1em;
margin-bottom: -0.1em;
transform-origin: bottom;
}
</style>
<!-- Encrypted-text Animation -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const specialChars = '!@#$%^&*()_+{}:"<>?[];,./';
function getRandomChar() {
return specialChars[Math.floor(Math.random() * specialChars.length)];
}
function encryptText(text) {
return text.split('').map(char => getRandomChar()).join('');
}
const links = document.querySelectorAll('.encrypted-link');
const triggers = document.querySelectorAll('.hover-trigger');
if (links.length === triggers.length) {
triggers.forEach((trigger, index) => {
const link = links[index];
const originalText = link.textContent;
let animationRunning = false;
trigger.addEventListener('mouseenter', function() {
if (animationRunning) return;
animationRunning = true;
const encryptedText = encryptText(originalText);
let idx = 0;
const interval = setInterval(function() {
link.textContent = link.textContent.split('').map((char, i) => {
return i <= idx ? originalText[i] : getRandomChar();
}).join('');
idx++;
if (idx >= originalText.length) {
clearInterval(interval);
setTimeout(function() {
link.textContent = originalText;
animationRunning = false;
}, 750); // 1 seconde avant de revenir au texte original
}
}, 50); // Change de caractère toutes les 75ms
});
trigger.addEventListener('mouseleave', function() {
link.textContent = originalText; // Réinitialiser le texte quand la souris quitte
animationRunning = false; // Permettre de rejouer l'animation
});
});
} else {
console.error('Le nombre de déclencheurs et de liens ne correspond pas.');
}
});
</script>
<!-- Disable current link -->
<script>
// Désactiver les liens ayant la classe 'w--current'
document.addEventListener('DOMContentLoaded', function() {
var currentLinks = document.querySelectorAll('.w--current');
currentLinks.forEach(function(link) {
// Désactiver l'événement de clic
link.addEventListener('click', function(event) {
event.preventDefault();
event.stopPropagation();
});
// Ajouter un style pour indiquer que le lien est désactivé (facultatif)
link.style.pointerEvents = 'none';
link.style.cursor = 'default';
});
});
</script>
<!-- [Attributes by Finsweet] Disable scrolling -->
<script defer="" src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-scrolldisable@1/scrolldisable.js"></script>
<style>
html.lenis {
height: auto;
}
.lenis.lenis-smooth {
scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
overscroll-behavior: contain;
}
.lenis.lenis-stopped {
overflow: hidden;
}
</style>
</head>
<body>
<div class="utility_component">
<div class="utility_form-block w-password-page w-form">
<form id="email-form" name="email-form" data-name="Email Form" action="/.wf_auth" method="post" class="utility_form w-password-page" data-wf-page-id="668e5792bf664077c93af8d4" data-wf-element-id="60d3fa3a5a19c1169cd58c4100000000000c"><img width="106" src="https://d3e54v103j8qbb.cloudfront.net/static/utility-lock.ae54711958.svg" alt="" class="utility_image">
<h3>Protected Page</h3>
<div class="padding-xxsmall"></div><input class="form_input w-password-page w-input" autofocus="true" maxlength="256" name="pass" data-name="field" placeholder="Enter your password" type="password" id="pass">
<div class="padding-xxsmall"></div><input type="submit" data-wait="Please wait..." class="button w-password-page w-button" value="Submit">
<div class="form_message-error-wrapper w-password-page w-form-fail">
<div class="form_message-error">
<div>Incorrect password. Please try again.</div>
</div>
</div>
<div style="display:none" class="w-password-page w-embed w-script"><input type="hidden" name="path" value="<%WF_FORM_VALUE_PATH%>"><input type="hidden" name="page" value="<%WF_FORM_VALUE_PAGE%>"></div>
<div style="display:none" class="w-password-page w-embed w-script">
<script type="application/javascript">(function _handlePasswordPageOnload() {
if (/[?&]e=1(&|$)/.test(document.location.search)) {
document.querySelector('.w-password-page.w-form-fail').style.display = 'block';
}
})()</script>
</div>
</form>
</div>
</div>
<script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=668e5792bf664077c93af899" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="js/webflow.js" type="text/javascript"></script><!-- Scrolling text animations -->
<script src="https://cdn.jsdelivr.net/gh/timothydesign/script/split-type.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/ScrollTrigger.min.js"></script>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
// Split text into spans
let typeSplit = new SplitType("[text-split]", {
types: "words, chars",
tagName: "span"
});
// Link timelines to scroll position
function createScrollTrigger(triggerElement, timeline) {
// Reset tl when scroll out of view past bottom of screen
ScrollTrigger.create({
trigger: triggerElement,
start: "top bottom",
onLeaveBack: () => {
timeline.progress(0);
timeline.pause();
}
});
// Play tl when scrolled into view (60% from top of screen)
ScrollTrigger.create({
trigger: triggerElement,
start: "top 98%",
onEnter: () => timeline.play()
});
}
$("[words-slide-up]").each(function (index) {
let tl = gsap.timeline({ paused: true });
tl.from($(this).find(".word"), { opacity: 0, yPercent: 100, duration: 0.5, ease: "back.out(2)", stagger: { amount: 0.5 } });
createScrollTrigger($(this), tl);
});
$("[words-rotate-in]").each(function (index) {
let tl = gsap.timeline({ paused: true });
tl.set($(this).find(".word"), { transformPerspective: 1000 });
tl.from($(this).find(".word"), { rotationX: -90, duration: 0.6, ease: "power2.out", stagger: { amount: 0.6 } });
createScrollTrigger($(this), tl);
});
$("[words-slide-from-right]").each(function (index) {
let tl = gsap.timeline({ paused: true });
tl.from($(this).find(".word"), { opacity: 0, x: "1em", duration: 0.6, ease: "power2.out", stagger: { amount: 0.2 } });
createScrollTrigger($(this), tl);
});
$("[letters-slide-up]").each(function (index) {
let tl = gsap.timeline({ paused: true });
tl.from($(this).find(".char"), { yPercent: 100, duration: 0.2, ease: "power1.out", stagger: { amount: 0.6 } });
createScrollTrigger($(this), tl);
});
$("[letters-slide-down]").each(function (index) {
let tl = gsap.timeline({ paused: true });
tl.from($(this).find(".char"), { yPercent: -120, duration: 0.3, ease: "power1.out", stagger: { amount: 0.7 } });
createScrollTrigger($(this), tl);
});
$("[letters-fade-in]").each(function (index) {
let tl = gsap.timeline({ paused: true });
tl.from($(this).find(".char"), { opacity: 0, duration: 0.2, ease: "power1.out", stagger: { amount: 0.8 } });
createScrollTrigger($(this), tl);
});
$("[letters-fade-in-random]").each(function (index) {
let tl = gsap.timeline({ paused: true });
tl.from($(this).find(".char"), { opacity: 0, duration: 0.07, ease: "power1.out", stagger: { amount: 0.5, from: "random" } });
createScrollTrigger($(this), tl);
});
$("[scrub-each-word]").each(function (index) {
let tl = gsap.timeline({
scrollTrigger: {
trigger: $(this),
start: "top 90%",
end: "top center",
scrub: true
}
});
tl.from($(this).find(".word"), { opacity: 0.2, duration: 0.2, ease: "power1.out", stagger: { each: 0.4 } });
});
// Avoid flash of unstyled content
gsap.set("[text-split]", { opacity: 1 });
});
</script>
<script src="https://cdn.jsdelivr.net/gh/studio-freight/[email protected]/bundled/lenis.min.js"></script>
<script>
// LENIS SMOOTH SCROLL
let lenis;
if (Webflow.env("editor") === undefined) {
lenis = new Lenis({
lerp: 0.1,
wheelMultiplier: 0.7,
gestureOrientation: "vertical",
normalizeWheel: false,
smoothTouch: false
});
function raf(time) {
lenis.raf(time);
requestAnimationFrame(raf);
}
requestAnimationFrame(raf);
}
$("[data-lenis-start]").on("click", function () {
lenis.start();
});
$("[data-lenis-stop]").on("click", function () {
lenis.stop();
});
$("[data-lenis-toggle]").on("click", function () {
$(this).toggleClass("stop-scroll");
if ($(this).hasClass("stop-scroll")) {
lenis.stop();
} else {
lenis.start();
}
});
</script>
</body>
</html>