forked from hashmiarsa/library-book-review_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
421 lines (351 loc) · 11.6 KB
/
script.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
413
414
415
416
// function loadingAnimation() {
// let tl = gsap.timeline();
// tl.from(".loaderContent h1", {
// y: 150,
// opacity: 0,
// duaration: 0.5,
// delay: 1,
// stagger: 0.2,
// });
// tl.from(".timer h2", {
// opacity: 0,
// onStart: function () {
// let time = document.querySelector("#time");
// let grow = 0;
// setInterval(function () {
// grow++;
// if (grow <= 100) {
// time.textContent = grow;
// } else {
// time.textContent = 100;
// }
// }, 20);
// },
// });
// tl.from(".waiting h3", {
// opacity: 0,
// y: 150,
// duaration: 0.5,
// });
// tl.to(".blink h2", {
// opacity: 0,
// duaration: 2,
// animationName: "blinker",
// duaration: 0.2,
// });
// tl.to("#loader .loaderContent h1, .timer h2, .waiting h3,.blink", {
// opacity: 0,
// // delay: 1.2,
// duration: 0.1,
// stagger: 0.1,
// // y:-1200
// });
// tl.to("#loader",{
// opacity:0,
// duration:0.2,
// // delay:0
// })
// tl.from("#page1,#page2,#page3",{
// y:1600,
// opacity:0,
// // delay:0.2,
// ease:Power4,
// duration:0.5
// })
// tl.to("#loader", {
// display: "none",
// });
// tl.from(".heroContainer", {
// y: 1200,
// duration: 1,
// });
// tl.from("#main_nav", {
// opacity: 0,
// y: -100,
// });
// tl.from(".heroContent h2, .heroContent", {
// y: 150,
// opacity: 0,
// // duaration : 0.1,
// stagger: 0.1,
// });
// }
// loadingAnimation();
// gsap.to("#loader",{
// y:-1500,
// duration:4,
// ease:Power4,
// delay:2
// })
// gsap.from("#video,#main",{
// y:1200,
// opacity:0,
// duration:0.5,
// ease:Power4
// })
// GSAP loader timer animation
function loadingAnimation2(){
gsap.from(".timer h2", {
opacity: 0,
duration: 1,
onStart: function () {
let time = document.querySelector("#time");
let grow = 0;
// Timer to increase the number from 0 to 100
let interval = setInterval(function () {
grow++;
if (grow <= 100) {
time.textContent = grow;
} else {
time.textContent = 100;
clearInterval(interval); // Stop the timer once it hits 100
}
}, 20);
},
});
// Loader and main page transition
window.addEventListener('load', function () {
// GSAP Timeline for animations
const tl = gsap.timeline();
// After 5 seconds, move loader up and bring video/main from below
setTimeout(() => {
tl.to("#loader", {
y: "-100%", // Move loader upwards
duration: 1.5,
ease: "power2.inOut"
})
.to("#video", {
top: "0%", // Move video into view from below
duration: 1.5,
ease: "power2.inOut"
}, "-=1") // Start this animation 1 second earlier for smoother transition
.to("#main", {
top: "0%", // Move main content into view from below
duration: 1.5,
ease: "power2.inOut",
onComplete: function () {
// Hide the video and show the main content after the animation completes
document.querySelector('#main').style.display = 'block';
}
}, "-=1");
}, 3000); // Wait 5 seconds before starting the animation
});
}
loadingAnimation2()
function homePageTextAnimation(){
var text=document.querySelector("#text");
gsap.from("#first_text h1",{
y:150,
opacity:0,
delay:3.7,
duration:0.5,
stagger:0.25,
})
gsap.from("#sec_text h1",{
y:150,
opacity:0,
delay:3.7,
duration:0.5,
})
gsap.from("#para",{
y:150,
opacity:0,
delay:4,
duration:0.5,
})
gsap.from("#button",{
y:150,
opacity:0,
delay:4,
duration:0.5,
})
}
homePageTextAnimation()
function Page2scrollTriggerAnimation(){
function Page2scrollTriggerAnimation() {
gsap.from("#text_rec h1", {
y: -150,
opacity: 0,
duration: 1,
ease: "power3.out",
scrollTrigger: {
trigger: "#page2",
start: "top 80%",
toggleActions: "play none none reverse",
},
});
document.addEventListener("DOMContentLoaded", function () {
gsap.from("#rec_upper h1", {
y: -150,
opacity: 0,
duration: 1,
ease: "power2.out",
scrollTrigger: {
trigger: "#rec_upper",
start: "top 80%",
toggleActions: "play none none reverse",
},
});
const recColsUpper = gsap.utils.toArray("#rec_upper .rec_col");
recColsUpper.forEach((col, index) => {
gsap.from(col, {
y: 150,
opacity: 0,
duration: 0.5,
delay: index * 0.1,
ease: "power1.out",
scrollTrigger: {
trigger: "#rec_upper",
start: "top 80%",
toggleActions: "play none none reverse",
onEnter: () => gsap.to(col, { clearProps: "all" }),
onLeaveBack: () => gsap.to(col, { clearProps: "all" }),
},
});
});
gsap.from("#rec_lower h1", {
y: -150,
opacity: 0,
duration: 1,
ease: "power2.out",
scrollTrigger: {
trigger: "#rec_lower",
start: "top 80%",
toggleActions: "play none none reverse",
},
});
const recColsLower = gsap.utils.toArray("#rec_lower .rec_col");
recColsLower.forEach((col, index) => {
gsap.from(col, {
y: 150,
opacity: 0,
duration: 0.5,
delay: index * 0.1,
ease: "power1.out",
scrollTrigger: {
trigger: "#rec_lower",
start: "top 80%",
toggleActions: "play none none reverse",
onEnter: () => gsap.to(col, { clearProps: "all" }),
onLeaveBack: () => gsap.to(col, { clearProps: "all" }),
},
});
});
});
}
Page2scrollTriggerAnimation();
}
Page2scrollTriggerAnimation()
// function borderPage2animation() {
// document.addEventListener("DOMContentLoaded", () => {
// const boxes = document.querySelectorAll('.rec_col');
// const borderDiv = document.getElementById('borderDiv');
// borderDiv.style.position = 'absolute';
// borderDiv.style.border = '5px solid #fff';
// borderDiv.style.pointerEvents = 'none';
// borderDiv.style.opacity = 0;
// borderDiv.style.display = 'none';
// boxes.forEach(box => {
// box.addEventListener('mouseenter', () => {
// const rect = box.getBoundingClientRect();
// gsap.to(borderDiv, {
// duration: 0.9,
// width: rect.width,
// height: rect.height,
// top: (rect.top + window.scrollY) - (window.innerWidth * 0.48) - 5,
// left: rect.left + window.scrollX,
// ease: 'power3.out',
// borderColor: '#FF4411',
// opacity: 1,
// onStart: () => {
// borderDiv.style.display = 'block';
// }
// });
// });
// box.addEventListener('mouseleave', () => {
// const rect = box.getBoundingClientRect();
// const isOut = !(mouseX >= rect.left && mouseX <= rect.right && mouseY >= rect.top && mouseY <= rect.bottom);
// if (isOut) {
// gsap.to(borderDiv, {
// duration: 0.5,
// onComplete: () => {
// borderDiv.style.display = 'none';
// }
// });
// }
// });
// });
// let mouseX = 0;
// let mouseY = 0;
// document.addEventListener('mousemove', (e) => {
// mouseX = e.clientX;
// mouseY = e.clientY;
// });
// });
// }
// borderPage2animation();
function borderPage2animation(){
document.addEventListener("DOMContentLoaded", () => {
const boxes = document.querySelectorAll('.rec_col'); // Select each column in rec_box
const borderDiv = document.getElementById('borderDiv');
// Set borderDiv's initial style for smooth transitions
borderDiv.style.position = 'absolute';
borderDiv.style.border = '5px solid #fff';
borderDiv.style.pointerEvents = 'none'; // Prevent borderDiv from interfering with hover events
// Add event listeners to each box
boxes.forEach(box => {
box.addEventListener('mouseenter', () => {
// Get the current box's position and size
const rect = box.getBoundingClientRect();
// Show borderDiv and animate it to the hovered box's position and size
gsap.to(borderDiv, {
duration: 0.7, // Adjust the duration for smoother animation
width: rect.width,
height: rect.height,
// top: rect.top + window.scrollY, // Adjust position considering scroll
top: (rect.top + window.scrollY) - (window.innerWidth * 0.48)-1,
left: rect.left + window.scrollX,
ease: 'power3.out', // Use a smoother easing curve
borderColor: '#FF4411',
onStart: () => {
borderDiv.style.display = 'block'; // Show the div when animation starts
}
});
});
// Optional hover-out behavior, but we leave the border visible
box.addEventListener('mouseleave', () => {
});
});
});
}
borderPage2animation()
function bookFlipAnimation(){
const images = [
{ front: "#first_image_front", back: "#first_image_back", container: "#first_image" },
{ front: "#second_image_front", back: "#second_image_back", container: "#second_image" },
{ front: "#third_image_front", back: "#third_image_back", container: "#third_image" },
{ front: "#fourth_image_front", back: "#fourth_image_back", container: "#fourth_image" },
{ front: "#fifth_image_front", back: "#fifth_image_back", container: "#fifth_image" },
{ front: "#sixth_image_front", back: "#sixth_image_back", container: "#sixth_image" },
{ front: "#seventh_image_front", back: "#seventh_image_back", container: "#seventh_image" },
{ front: "#eighth_image_front", back: "#eighth_image_back", container: "#eighth_image" },
];
function setupImageHover(frontSelector, backSelector, containerSelector) {
const imgFront = document.querySelector(frontSelector);
const imgBack = document.querySelector(backSelector);
const container = document.querySelector(containerSelector);
const originalSrcFront = imgFront.src;
const originalSrcBack = imgBack.src;
container.addEventListener("mouseover", () => {
imgFront.src = originalSrcBack;
});
container.addEventListener("mouseout", () => {
imgFront.src = originalSrcFront;
console.log("Mouse out event triggered");
});
}
images.forEach(image => {
setupImageHover(image.front, image.back, image.container);
});
}
bookFlipAnimation()