-
-
Notifications
You must be signed in to change notification settings - Fork 252
/
snowflakeCursor.js
224 lines (185 loc) · 5.71 KB
/
snowflakeCursor.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
export function snowflakeCursor(options) {
let hasWrapperEl = options && options.element;
let element = hasWrapperEl || document.body;
let possibleEmoji = ["❄️"];
let width = window.innerWidth;
let height = window.innerHeight;
let cursor = { x: width / 2, y: width / 2 };
let particles = [];
let canvas, context, animationFrame;
let canvImages = [];
const prefersReducedMotion = window.matchMedia(
"(prefers-reduced-motion: reduce)"
);
// Re-initialise or destroy the cursor when the prefers-reduced-motion setting changes
prefersReducedMotion.onchange = () => {
if (prefersReducedMotion.matches) {
destroy();
} else {
init();
}
};
function init() {
// Don't show the cursor trail if the user has prefers-reduced-motion enabled
if (prefersReducedMotion.matches) {
console.log(
"This browser has prefers reduced motion turned on, so the cursor did not init"
);
return false;
}
canvas = document.createElement("canvas");
context = canvas.getContext("2d");
canvas.style.top = "0px";
canvas.style.left = "0px";
canvas.style.pointerEvents = "none";
if (hasWrapperEl) {
canvas.style.position = "absolute";
element.appendChild(canvas);
canvas.width = element.clientWidth;
canvas.height = element.clientHeight;
} else {
canvas.style.position = "fixed";
document.body.appendChild(canvas);
canvas.width = width;
canvas.height = height;
}
context.font = "12px serif";
context.textBaseline = "middle";
context.textAlign = "center";
possibleEmoji.forEach((emoji) => {
let measurements = context.measureText(emoji);
let bgCanvas = document.createElement("canvas");
let bgContext = bgCanvas.getContext("2d");
bgCanvas.width = measurements.width;
bgCanvas.height = measurements.actualBoundingBoxAscent * 2;
bgContext.textAlign = "center";
bgContext.font = "12px serif";
bgContext.textBaseline = "middle";
bgContext.fillText(
emoji,
bgCanvas.width / 2,
measurements.actualBoundingBoxAscent
);
canvImages.push(bgCanvas);
});
bindEvents();
loop();
}
// Bind events that are needed
function bindEvents() {
element.addEventListener("mousemove", onMouseMove);
element.addEventListener("touchmove", onTouchMove, { passive: true });
element.addEventListener("touchstart", onTouchMove, { passive: true });
window.addEventListener("resize", onWindowResize);
}
function onWindowResize(e) {
width = window.innerWidth;
height = window.innerHeight;
if (hasWrapperEl) {
canvas.width = element.clientWidth;
canvas.height = element.clientHeight;
} else {
canvas.width = width;
canvas.height = height;
}
}
function onTouchMove(e) {
if (e.touches.length > 0) {
for (let i = 0; i < e.touches.length; i++) {
addParticle(
e.touches[i].clientX,
e.touches[i].clientY,
canvImages[Math.floor(Math.random() * canvImages.length)]
);
}
}
}
function onMouseMove(e) {
if (hasWrapperEl) {
const boundingRect = element.getBoundingClientRect();
cursor.x = e.clientX - boundingRect.left;
cursor.y = e.clientY - boundingRect.top;
} else {
cursor.x = e.clientX;
cursor.y = e.clientY;
}
addParticle(
cursor.x,
cursor.y,
canvImages[Math.floor(Math.random() * possibleEmoji.length)]
);
}
function addParticle(x, y, img) {
particles.push(new Particle(x, y, img));
}
function updateParticles() {
if (particles.length == 0) {
return;
}
context.clearRect(0, 0, width, height);
// Update
for (let i = 0; i < particles.length; i++) {
particles[i].update(context);
}
// Remove dead particles
for (let i = particles.length - 1; i >= 0; i--) {
if (particles[i].lifeSpan < 0) {
particles.splice(i, 1);
}
}
if (particles.length == 0) {
context.clearRect(0, 0, width, height);
}
}
function loop() {
updateParticles();
animationFrame = requestAnimationFrame(loop);
}
function destroy() {
canvas.remove();
cancelAnimationFrame(animationFrame);
element.removeEventListener("mousemove", onMouseMove);
element.removeEventListener("touchmove", onTouchMove);
element.removeEventListener("touchstart", onTouchMove);
window.addEventListener("resize", onWindowResize);
};
/**
* Particles
*/
function Particle(x, y, canvasItem) {
const lifeSpan = Math.floor(Math.random() * 60 + 80);
this.initialLifeSpan = lifeSpan; //
this.lifeSpan = lifeSpan; //ms
this.velocity = {
x: (Math.random() < 0.5 ? -1 : 1) * (Math.random() / 2),
y: 1 + Math.random(),
};
this.position = { x: x, y: y };
this.canv = canvasItem;
this.update = function (context) {
this.position.x += this.velocity.x;
this.position.y += this.velocity.y;
this.lifeSpan--;
this.velocity.x += ((Math.random() < 0.5 ? -1 : 1) * 2) / 75;
this.velocity.y -= Math.random() / 300;
const scale = Math.max(this.lifeSpan / this.initialLifeSpan, 0);
const degrees = 2 * this.lifeSpan;
const radians = degrees * 0.0174533; // not perfect but close enough
context.translate(this.position.x, this.position.y);
context.rotate(radians);
context.drawImage(
this.canv,
(-this.canv.width / 2) * scale,
-this.canv.height / 2,
this.canv.width * scale,
this.canv.height * scale
);
context.rotate(-radians);
context.translate(-this.position.x, -this.position.y);
};
}
init();
return {
destroy: destroy
}
}