-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
174 lines (154 loc) · 4.3 KB
/
script.js
File metadata and controls
174 lines (154 loc) · 4.3 KB
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
function loco(){
gsap.registerPlugin(ScrollTrigger);
// Using Locomotive Scroll from Locomotive https://github.com/locomotivemtl/locomotive-scroll
const locoScroll = new LocomotiveScroll({
el: document.querySelector("#main"),
smooth: true
});
locoScroll.on("scroll", ScrollTrigger.update);
ScrollTrigger.scrollerProxy("#main", {
scrollTop(value) {
return arguments.length ? locoScroll.scrollTo(value, 0, 0) : locoScroll.scroll.instance.scroll.y;
},
getBoundingClientRect() {
return {top: 0, left: 0, width: window.innerWidth, height: window.innerHeight};
},
pinType: document.querySelector("#main").style.transform ? "transform" : "fixed"
});
ScrollTrigger.addEventListener("refresh", () => locoScroll.update());
ScrollTrigger.refresh();
}
loco()
Shery.mouseFollower();
Shery.makeMagnet(".magnet-target");
document.querySelector("#text").addEventListener("mousemove", function (dets) {
gsap.to(".mousefollower", {
scale: 20
})
})
document.querySelector("#text").addEventListener("mouseleave", function (dets) {
gsap.to(".mousefollower", {
scale: 1
})
})
function sound() {
var sound = document.querySelector("#sound h2")
var spann = document.querySelector("#sound h2 span")
var aud = new Audio("./music.mp3")
var click = true
sound.addEventListener("click", function () {
if (click == true) {
aud.play()
aud.loop = true
spann.textContent = "off"
click = false
}
else {
aud.pause()
spann.textContent = "on"
click = true
}
})
}
sound()
function menu() {
var menu = document.querySelector("#menu")
var flag = false
menu.addEventListener("click", function () {
console.log("object")
if (flag == true) {
gsap.to("#main", {
backgroundColor: "black"
})
gsap.to("#navigation", {
x: "0%"
})
flag = false
}
else {
gsap.to("#main", {
backgroundColor: "rgba(40, 38, 38, 0.212)"
})
gsap.to("#navigation", {
x: "-40vw"
})
flag = true
}
})
}
menu()
function pageTwo() {
var effect = document.querySelectorAll(".effect")
effect.forEach(function (h) {
var clutter = ""
h.textContent.split(" ").forEach(function (word) {
clutter += ` <span>${word}</span>`
})
h.innerHTML = clutter
})
var tl = gsap.timeline({
scrollTrigger: {
trigger: "#page2",
scroller: "#main",
start: "top 60%",
end: "top 0%",
scrub: 1
}
})
tl
.to("#arrow", {
rotate: 90
})
.to(".effect1 span", {
color: "white",
stagger: 0.2
})
.to(".effect2 span", {
color: "white",
stagger: 0.2
})
}
pageTwo()
function skill() {
var txt = document.querySelectorAll(".txt")
txt.forEach(function (h2) {
var clutter2 = ""
h2.textContent.split("").forEach(function (letter) {
clutter2 += `<span>${letter}</span>`
})
h2.innerHTML = clutter2
h2.addEventListener("mousemove", function () {
gsap.to("#main", {
backgroundColor: "#0000007e"
})
})
h2.addEventListener("mouseleave", function () {
gsap.to("#main", {
backgroundColor: "black"
})
})
})
}
skill()
function footer(){
var clutter3 = ""
document.querySelector("#say h1").textContent.split("").forEach(function(letter){
clutter3 += `<span>${letter}</span>`
})
document.querySelector("#say h1").innerHTML = clutter3
gsap.from("#say h1 span",{
y:"100%",
stagger:0.1,
scrollTrigger:{
trigger:"#say",
scroller:"#main",
start:"top 88%",
end:"top 80%",
scrub:1,
}
})
}
footer()
document.querySelector("#mail").addEventListener("click",function(event){
window.location.href = "mailto:rprithvi939@gmail.com"
})