-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscritpt.js
115 lines (102 loc) · 3.3 KB
/
scritpt.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
function locoscrolling(){
gsap.registerPlugin(ScrollTrigger);
// Using Locomotive Scroll from Locomotive https://github.com/locomotivemtl/locomotive-scroll
const locoScroll = new LocomotiveScroll({
el: document.querySelector("#main"),
smooth: true
});
// each time Locomotive Scroll updates, tell ScrollTrigger to update too (sync positioning)
locoScroll.on("scroll", ScrollTrigger.update);
// tell ScrollTrigger to use these proxy methods for the ".smooth-scroll" element since Locomotive Scroll is hijacking things
ScrollTrigger.scrollerProxy(".smooth-scroll", {
scrollTop(value) {
return arguments.length ? locoScroll.scrollTo(value, 0, 0) : locoScroll.scroll.instance.scroll.y;
}, // we don't have to define a scrollLeft because we're only scrolling vertically.
getBoundingClientRect() {
return {top: 0, left: 0, width: window.innerWidth, height: window.innerHeight};
},
// LocomotiveScroll handles things completely differently on mobile devices - it doesn't even transform the container at all! So to get the correct behavior and avoid jitters, we should pin things with position: fixed on mobile. We sense it by checking to see if there's a transform applied to the container (the LocomotiveScroll-controlled element).
pinType: document.querySelector("#main").style.transform ? "transform" : "fixed"
});
// each time the window updates, we should refresh ScrollTrigger and then update LocomotiveScroll.
ScrollTrigger.addEventListener("refresh", () => locoScroll.update());
// after everything is set up, refresh() ScrollTrigger and update LocomotiveScroll because padding may have been added for pinning, etc.
ScrollTrigger.refresh();
}
locoscrolling()
function cursorEffect(){
var page1Content=document.querySelector("#page1-content")
var cursor=document.querySelector("#cursor")
page1Content.addEventListener("mousemove",function(sunny){
// cursor.style.left=sunny.x+"px"
// cursor.style.top=sunny.y+"px"
gsap.to(cursor,{
x:sunny.x,
y:sunny.y
})
})
//gsap is a library which make moving element
page1Content.addEventListener("mouseenter",function(){
gsap.to(cursor,{
scale:1,
opacity:1
})
})
page1Content.addEventListener("mouseleave",function(){
gsap.to(cursor,{
scale:0,
opacity:0
})
})
}
cursorEffect();
// function page2Animation(){
gsap.from(".elem h1",{
y:120,
stagger:0.2,
duration:1,
scrollTrigger:{
trigger:"#page2",
scroller:"#main",
start:"top 47%",
end:"top 46 %",
scrub:2
}
})
// page2Animation()
var swiper = new Swiper(".mySwiper", {
slidesPerView: 1,
spaceBetween: 30,
loop: true,
autoplay: {
delay: 2500,
disableOnInteraction: true,
},
});
//timeline is used to run the content at different time in other words this prevent to lauch whole code at a single time
var tl=gsap.timeline()
tl.from("#loader h3",{
x:40,
opacity:0,
duration:1,
stagger:0.1
})
tl.to("#loader h3",{
opacity:0,
x:-10,
duration:1,
stagger:0.1
})
tl.to("#loader",{
opacity:0
})
tl.from("#page1-content h1 span",{
y:100,
opacity:0,
stagger:0.1,
duration:0.5,
delay:-0.5
})
tl.to("#loader",{
display:"none"
})