We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c15ac commit 13453dcCopy full SHA for 13453dc
public/bg-effects.js
@@ -115,12 +115,12 @@
115
resize();
116
window.addEventListener('resize', resize);
117
118
- const count = 40;
+ const count = 60;
119
const particles = Array.from({ length: count }, () => ({
120
x: Math.random() * canvas.width,
121
y: Math.random() * canvas.height,
122
- r: 1 + Math.random(),
123
- alpha: 0.08 + Math.random() * 0.07,
+ r: 1.5 + Math.random() * 1.5,
+ alpha: 0.15 + Math.random() * 0.1,
124
vx: (Math.random() - 0.5) * 0.3,
125
vy: (Math.random() - 0.5) * 0.3,
126
phase: Math.random() * Math.PI * 2,
0 commit comments