-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
59 lines (49 loc) · 1.22 KB
/
main.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
/* ===( CODE AASHU )=== */
const scrollRevealOption = {
distance: "50px",
origin: "bottom",
duration: 1000,
};
// header container
ScrollReveal().reveal(".header__container img", {
duration: 1000,
});
ScrollReveal().reveal(".header__content", {
...scrollRevealOption,
origin: "right",
delay: 500,
});
ScrollReveal().reveal(".header__tag", {
...scrollRevealOption,
origin: "left",
delay: 1000,
});
// festive container
ScrollReveal().reveal(".festive__content .section__header", {
...scrollRevealOption,
});
ScrollReveal().reveal(".festive__content .section__description", {
...scrollRevealOption,
delay: 500,
});
ScrollReveal().reveal(".festive__content .festive__btn", {
...scrollRevealOption,
delay: 1000,
});
// shopping container
ScrollReveal().reveal(".shopping__card", {
...scrollRevealOption,
interval: 500,
});
// festive container
ScrollReveal().reveal(".explore__content .section__header", {
...scrollRevealOption,
});
ScrollReveal().reveal(".explore__content .section__description", {
...scrollRevealOption,
delay: 500,
});
ScrollReveal().reveal(".explore__content .explore__btn", {
...scrollRevealOption,
delay: 1000,
});