-
Notifications
You must be signed in to change notification settings - Fork 0
/
javascript.js
412 lines (354 loc) · 11.7 KB
/
javascript.js
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// created by Wojciech Przyłuski
// https://github.com/przwojwwp/
// Detect request animation frame
var scroll =
window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.msRequestAnimationFrame ||
window.oRequestAnimationFrame ||
// IE Fallback, you can even fallback to onscroll
function (callback)
{
window.setTimeout(callback, 1000 / 60);
};
var lastPosition = -1;
// my Variables
var lastSection = false;
var replaceItemTop = -1;
var replaceItemBottom = -1;
var replaceItemHeight = -1;
// The Scroll Function
function loop()
{
var top = window.pageYOffset;
// my variables
// my sections to calculate stuff
var sections = document.querySelectorAll(".section");
var replaceContainer = document.querySelectorAll(".js-replace");
var replaceItem = document.querySelectorAll(".js-replace__item");
if (replaceItem.length > 0)
{
// get top position of item from container, because image might not have loaded
replaceItemTop = parseInt(
replaceContainer[0].getBoundingClientRect().top
);
replaceItemHeight = replaceItem[0].offsetHeight;
replaceItemBottom = replaceItemTop + replaceItemHeight;
}
var sectionTop = -1;
var sectionBottom = -1;
var currentSection = -1;
// Fire when needed
if (lastPosition == window.pageYOffset)
{
scroll(loop);
return false;
} else
{
lastPosition = window.pageYOffset;
// Your Function
Array.prototype.forEach.call(sections, function (el, i)
{
sectionTop = parseInt(el.getBoundingClientRect().top);
sectionBottom = parseInt(el.getBoundingClientRect().bottom);
// active section
if (
sectionTop <= replaceItemBottom &&
sectionBottom > replaceItemTop
)
{
// check if current section has bg
currentSection = el.classList.contains("section--bg");
// switch class depending on background image
if (currentSection)
{
replaceContainer[0].classList.remove("js-replace--reverse");
} else
{
replaceContainer[0].classList.add("js-replace--reverse");
}
}
// end active section
// if active Section hits replace area
if (replaceItemTop < sectionTop && sectionTop <= replaceItemBottom)
{
// animate only, if section background changed
if (currentSection != lastSection)
{
document.documentElement.style.setProperty(
"--replace-offset",
(100 / replaceItemHeight) *
parseInt(sectionTop - replaceItemTop) +
"%"
);
}
}
// end active section in replace area
// if section above replace area
if (replaceItemTop >= sectionTop)
{
// set offset to 0 if you scroll too fast
document.documentElement.style.setProperty(
"--replace-offset",
0 + "%"
);
// set last section to current section
lastSection = currentSection;
}
});
}
// Recall the loop
scroll(loop);
}
// Call the loop for the first time
loop();
window.onresize = function (event)
{
loop();
};
// Function to adjust the font size based on the current width and height
function adjustFontSize(width, height)
{
const textContent = document.querySelector(".section-1-text-content");
const maxWidth = 96; // Maximum width at which the font size remains 7vw
const maxHeight = 96; // Maximum height at which the font size remains 7vw
const maxFontSize = 7; // The maximum font size in vw
// Calculate the font size for width and height separately
const widthFontSize = (width / maxWidth) * maxFontSize;
const heightFontSize = (height / maxHeight) * maxFontSize;
// Use the smaller font size to maintain the aspect ratio of the text
const fontSize = Math.min(widthFontSize, heightFontSize);
// Apply the font size to the text content
textContent.style.fontSize = fontSize + "vw";
}
// Function to adjust the position of the text content
function adjustTextPosition()
{
const textContent = document.querySelector(".section-1-text-content");
const section1 = document.querySelector(".section-1");
const initialTop = 48; // Initial top position in percentage (50%)
const finalTop = 30; // Final top position in percentage (32%)
// Calculate the interpolation factor based on the width and height
const interpolationFactor = (initialWidth - width) / (initialWidth - 64);
const topPosition = initialTop - interpolationFactor * (initialTop - finalTop);
// Apply the new top position using CSS top property
textContent.style.top = topPosition + "%";
}
// Function to adjust the font size and update the width and height
function updateSize()
{
section1.style.width = width + "vw";
section1.style.height = height + "vh";
adjustFontSize(width, height);
adjustTextPosition();
}
// Global variable to track content section change
let isContentSectionChanged = false;
//Reels animation
const containerFluid = document.querySelector(".container-fluid");
const section1 = document.querySelector(".section-1");
const initialWidth = 100;
const initialHeight = 96;
let width = initialWidth;
let height = initialHeight;
let pageHolder = true;
let timeoutId;
let sectionResize = true;
let isSectionChanged = false;
// Function to toggle the "overflow: hidden" class on the body based on pageHolder value
function toggleBodyOverflow()
{
document.body.style.overflow = pageHolder ? "hidden" : "auto";
}
// Function to set pageHolder and toggle body overflow
function setPageHolder(value, delay)
{
if (timeoutId) clearTimeout(timeoutId); // Clear previous timeout, if any
timeoutId = setTimeout(function ()
{
pageHolder = value;
toggleBodyOverflow(); // Toggle body overflow based on the new pageHolder value
}, delay);
}
// Function to adjust the font size and update the width and height
function updateSize()
{
section1.style.width = width + "vw";
section1.style.height = height + "vh";
adjustFontSize(width, height);
adjustTextPosition();
}
// Obsługa zdarzenia scroll na przycisku myszy
containerFluid.addEventListener("wheel", function (event)
{
if (event.deltaY < 0)
{
// Scroll w górę
if (scrollY === 0 && width < initialWidth && height < initialHeight)
{
width += 1;
height += 1;
}
} else
{
// Scroll w dół
if (width > 64 && height > 60)
{
width -= 1;
height -= 1;
}
}
// Check if the text content should change
if (width <= 64 && height <= 60 && !isSectionChanged)
{
section1.innerHTML = `
<div class="video-container">
<video src="video/BOSKO_REEL_v4.mp4" controls poster="img/boskoposter.png"></video>
</div>
`;
isSectionChanged = true;
setPageHolder(false, 300); // Set pageHolder to false after a 1-second delay
}
if (width >= 96 && height >= 96 && sectionResize && isSectionChanged)
{
section1.innerHTML = `
<div class="section-1-video-wrapper">
<div class="section-1-curtain"></div>
<video src="video/BOSKO_REEL_v4.mp4" autoplay muted loop></video>
</div>
<div class="section-1-text-content">
<div class="title">
<div class="title-inner">
<div class="bosko">
<div class="bosko-inner">
<span class="word" style="--delay: 0">We </span>
<span class="word" style="--delay: 1">connect</span>
<br />
<span class="word" style="--delay: 2">brands </span>
<span class="word" style="--delay: 3">+ </span>
<span class="word" style="--delay: 4">culture</span>
<br />
<span class="word" style="--delay: 5">to </span>
<span class="word" style="--delay: 6">create </span>
<span class="word" style="--delay: 7">campaigns</span>
<br />
<span class="word" style="--delay: 8">people </span>
<span class="word" style="--delay: 9">love</span>
</div>
</div>
</div>
</div>
</div>
`;
setPageHolder(true, 1); // Set pageHolder to true after a 0.001-second delay
isSectionChanged = false;
}
// Update the size and font size
updateSize();
});
// Call the updateSize function initially to set the initial size and position
updateSize();
// Superpowers Image Animation for Small Screens
if (window.matchMedia('(max-width: 767.99px)').matches)
{
window.addEventListener('scroll', function ()
{
var images = document.querySelectorAll('.brand-experience, .brand-partnership, .branded-content, .creative-medium');
var windowHeight = window.innerHeight;
for (var i = 0; i < images.length; i++)
{
var image = images[i];
var rect = image.getBoundingClientRect();
if (rect.bottom <= windowHeight / 2 && rect.bottom >= windowHeight * 0.15)
{
image.classList.add('expanded');
image.style.transform = 'scale(1.1)';
} else
{
image.classList.remove('expanded');
image.style.transform = 'scale(1)';
}
}
});
}
// Superpowers Image Animation for Small Screens
if (window.matchMedia('(max-width: 767.99px)').matches)
{
window.addEventListener('scroll', function ()
{
var images = document.querySelectorAll('.brand-experience, .brand-partnership, .branded-content, .creative-medium');
var windowHeight = window.innerHeight;
for (var i = 0; i < images.length; i++)
{
var image = images[i];
var rect = image.getBoundingClientRect();
if (rect.bottom <= windowHeight / 2 && rect.bottom >= windowHeight * 0.15)
{
image.classList.add('expanded');
image.style.transform = 'scale(1.1)';
} else
{
image.classList.remove('expanded');
image.style.transform = 'scale(1)';
}
}
});
}
// Superpowers Image Animation for Medium and Larger Screens
var mediumImages = document.querySelectorAll('.brand-experience, .brand-partnership, .branded-content, .creative-medium');
for (var i = 0; i < mediumImages.length; i++)
{
var image = mediumImages[i];
image.addEventListener('mouseenter', function ()
{
this.classList.add('expanded');
this.style.transform = 'scale(1.1)';
});
image.addEventListener('mouseleave', function ()
{
this.classList.remove('expanded');
this.style.transform = 'scale(1)';
});
}
// Starring Image Animation
// Pobieranie wszystkich obrazów z klasą 'img-fluid' wewnątrz sekcji-4-img-container
const images = document.querySelectorAll('.section-4-img-container .img-fluid');
// Ustawienie początkowego stanu obrazów na niewidoczne
images.forEach(image =>
{
image.style.opacity = '0';
});
// Funkcja do obsługi efektu pojawiania się obrazów
function fadeInImages()
{
// Sprawdzanie, czy obraz jest w widoku przeglądarki
images.forEach((image, index) =>
{
const rect = image.getBoundingClientRect();
const windowHeight = window.innerHeight || document.documentElement.clientHeight;
// Jeśli obraz jest w widoku przeglądarki
if (rect.top <= windowHeight)
{
// Opóźnienie pojawiania się obrazu o 0.5 sekundy * indeks obrazu
const delay = 500 * index;
// Ustawienie animacji na obrazie po opóźnieniu
setTimeout(() =>
{
image.style.animation = 'fadeIn 1s forwards ease';
}, delay);
}
});
}
// Obsługa pojawiania się obrazów przy załadowaniu strony
window.addEventListener('load', fadeInImages);
// Obsługa pojawiania się obrazów przy przewijaniu strony
window.addEventListener('scroll', fadeInImages);
// Button to Top
function topFunction()
{
window.scrollTo({
top: 0,
behavior: "smooth"
});
}