-
Notifications
You must be signed in to change notification settings - Fork 1
/
cursor.js
87 lines (74 loc) ยท 2.11 KB
/
cursor.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
// console.clear();
// const { gsap } = window;
// const cursorOuter = document.querySelector(".cursor--large");
// const cursorInner = document.querySelector(".cursor--small");
// let isStuck = false;
// let mouse = {
// x: -100,
// y: -100,
// };
// // Just in case you need to scroll
// let scrollHeight = 0;
// window.addEventListener('scroll', function(e) {
// scrollHeight = window.scrollY
// })
// let cursorOuterOriginalState = {
// width: cursorOuter.getBoundingClientRect().width,
// height: cursorOuter.getBoundingClientRect().height,
// };
// const buttons = document.querySelectorAll("main button");
// buttons.forEach((button) => {
// button.addEventListener("pointerenter", handleMouseEnter);
// button.addEventListener("pointerleave", handleMouseLeave);
// });
// document.body.addEventListener("pointermove", updateCursorPosition);
// document.body.addEventListener("pointerdown", () => {
// gsap.to(cursorInner, 0.15, {
// scale: 2,
// });
// });
// document.body.addEventListener("pointerup", () => {
// gsap.to(cursorInner, 0.15, {
// scale: 1,
// });
// });
// function updateCursorPosition(e) {
// mouse.x = e.pageX;
// mouse.y = e.pageY;
// }
// function updateCursor() {
// gsap.set(cursorInner, {
// x: mouse.x,
// y: mouse.y,
// });
// if (!isStuck) {
// gsap.to(cursorOuter, {
// duration: 0.15,
// x: mouse.x - cursorOuterOriginalState.width/2,
// y: mouse.y - cursorOuterOriginalState.height/2,
// });
// }
// requestAnimationFrame(updateCursor);
// }
// updateCursor();
// function handleMouseEnter(e) {
// isStuck = true;
// const targetBox = e.currentTarget.getBoundingClientRect();
// gsap.to(cursorOuter, 0.2, {
// x: targetBox.left,
// y: targetBox.top + scrollHeight,
// width: targetBox.width,
// height: targetBox.width,
// borderRadius: 0,
// backgroundColor: "rgba(255, 255, 255, 0.1)",
// });
// }
// function handleMouseLeave(e) {
// isStuck = false;
// gsap.to(cursorOuter, 0.2, {
// width: cursorOuterOriginalState.width,
// height: cursorOuterOriginalState.width,
// borderRadius: "50%",
// backgroundColor: "transparent",
// });
// }