-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
171 lines (125 loc) · 3.96 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
// document.addEventListener("DOMContentLoaded", function () {
// const cursorDot = document.getElementById("cursor-dot");
// document.addEventListener("mousemove", function (e) {
// // Update the position of the dot based on cursor coordinates
// cursorDot.style.left = e.pageX + "px";
// cursorDot.style.top = e.pageY + "px";
// });
// // Ensure the dot stays within the window
// document.addEventListener("mouseleave", function () {
// // Move the dot to a position outside the window to hide it
// cursorDot.style.left = "-100px";
// cursorDot.style.top = "-100px";
// });
// });
const scroll = new LocomotiveScroll({
el: document.querySelector("#main"),
smooth: true,
});
var timeout;
function circlechaptakaro() {
clearTimeout(timeout);
// define default scale value
var scalex = 1;
var yscale = 1;
var xprev = 0;
var yprev = 0;
window.addEventListener("mousemove", function (dets) {
xscale = gsap.utils.clamp(.8, 1.2, dets.clientX - xprev);
yscale = gsap.utils.clamp(.8, 1.2, dets.clientY - yprev);
xprev = dets.clientX;
yprev = dets.clientY;
circleMousefollower(xscale, yscale);
timeout = setTimeout(function () {
// document.querySelector("#cursor-dot").style.transform = `translate(${dets.clientX}px, ${dets.clientY}px) scale(1, 1)`;
}, 100);
// console.log(xdiff,ydiff );
});
}
circlechaptakaro();
function circleMousefollower(xscale, yscale) {
window.addEventListener("mousemove", function (dets) {
document.querySelector('#cursor-dot').style.transform = `translate(${dets.clientX}px,${dets.clientY}px) scale(${xscale},${yscale})`;
})
}
function firstPageAnim() {
const tl = gsap.timeline();
tl.from("nav", {
y: "-10",
opacity: 0,
duration: 1.5,
ease: Expo.easeInOut,
})
.to(".boundingelem", {
y: 0,
ease: Expo.easeInOut,
duration: 2,
delay: -1,
stagger: .2
})
.from('#chotafooter', {
y: -'10',
opacity: 0,
duration: 1.5,
delay: -1,
ease: Expo.easeInOut
})
}
firstPageAnim();
circleMousefollower();
document.querySelectorAll(".elem").forEach(function (elem) {
var rotate= 0;
var diffe=0;
elem.addEventListener("mouseleave", function (dets) {
// Target the image within the current ".elem"
gsap.to(elem.querySelector("h1"),{
opacity:.5,
paddingLeft:'0px',
ease: "power2.Out"
})
gsap.to(elem.querySelector("h5"),{
opacity:.5,
ease: "power2.Out"
})
// Use GSAP to animate the opacity of the image
gsap.to( elem.querySelector("img"), {
// display: block,
opacity: 0,
ease: Power3,
duration:0.5,
// Log mouse coordinates
// console.log(details.clientX, details.clientY);
});
});
elem.addEventListener("mousemove", function (dets) {
var diff = dets.clientY - elem.getBoundingClientRect().top;
diffe=dets.clientX-rotate;
rotate= dets.clientX;
// Target the image within the current ".elem"
gsap.to(elem.querySelector("h1"),{
opacity:.2,
paddingLeft:'2.5%',
ease: "power2"
})
gsap.to(elem.querySelector("h5"),{
opacity:.2,
ease: "power2",
})
// Use GSAP to animate the opacity of the image
gsap.to( elem.querySelector("img"), {
opacity: 1,
ease: Power3,
top:diff,
left: dets.clientX,
rotate:gsap.utils.clamp(-20,20,diffe*.8) });
// Log mouse coordinates
// console.log(details.clientX, details.clientY);
});
});
// Assuming there's a parent element containing all the circles with the ID "iconset"
function scrollToBottom() {
window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });
}
document.querySelectorAll(".circle").forEach(function(circle) {
circle.addEventListener('click', scrollToBottom);
});