mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-08 10:09:11 -06:00
107 lines
3.0 KiB
TypeScript
107 lines
3.0 KiB
TypeScript
import { p5i, P5I } from 'p5i';
|
|
import React, { useEffect, useRef } from 'react';
|
|
|
|
const Dots: React.FC = () => {
|
|
const canvasRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
const {
|
|
mount,
|
|
unmount,
|
|
background,
|
|
stroke,
|
|
noise,
|
|
resizeCanvas,
|
|
cos,
|
|
sin,
|
|
TWO_PI,
|
|
} = p5i();
|
|
|
|
let w = window.innerWidth;
|
|
let h = window.innerHeight;
|
|
const offsetY = window.scrollY;
|
|
|
|
const SCALE = 200;
|
|
const LENGTH = 10;
|
|
const SPACING = 15;
|
|
const TARGET_FRAMERATE = 8;
|
|
const TIMESCALE = 12 / TARGET_FRAMERATE;
|
|
|
|
function getForceOnPoint(x: number, y: number, z: number) {
|
|
return (noise(x / SCALE, y / SCALE, z) - 0.5) * 2 * TWO_PI;
|
|
}
|
|
|
|
const pointIds = new Set<string>();
|
|
const points: { x: number, y: number, opacity: number }[] = [];
|
|
|
|
function addPoints() {
|
|
for (let x = -SPACING / 2; x < w + SPACING; x += SPACING) {
|
|
for (let y = -SPACING / 2; y < h + offsetY + SPACING; y += SPACING) {
|
|
const id = `${x}-${y}`;
|
|
if (pointIds.has(id)) continue;
|
|
pointIds.add(id);
|
|
points.push({ x, y, opacity: Math.random() * 0.5 + 0.5 });
|
|
}
|
|
}
|
|
}
|
|
|
|
function setup({ createCanvas, stroke, frameRate, background, noFill, noiseSeed }: P5I) {
|
|
createCanvas(w, h);
|
|
background('#000000');
|
|
stroke('rgba(170, 170, 170, 0.05)');
|
|
noFill();
|
|
|
|
frameRate(TARGET_FRAMERATE);
|
|
noiseSeed(Date.now());
|
|
|
|
addPoints();
|
|
}
|
|
|
|
function draw({ circle, frameCount }: P5I) {
|
|
background('#000000');
|
|
const t = (frameCount / 80) * TIMESCALE;
|
|
|
|
// if (frameCount % 10000) console.log(frameRate());
|
|
|
|
for (const p of points) {
|
|
const rad = getForceOnPoint(p.x, p.y, t);
|
|
const length = (noise(p.x / SCALE, p.y / SCALE, t * 2) + 0.5) * LENGTH;
|
|
const nx = p.x + cos(rad) * length;
|
|
const ny = p.y + sin(rad) * length;
|
|
|
|
// const center_distance = Math.sqrt((x - w / 2) ** 2 + (y - h / 2) ** 2);
|
|
// if (center_distance < 350)
|
|
// opacity = 0;
|
|
// opacity =
|
|
stroke(200, 200, 200, (Math.abs(cos(rad)) * 0.8 + 0.2) * p.opacity * 255 * 0.5);
|
|
circle(nx, ny - offsetY, 1);
|
|
}
|
|
}
|
|
|
|
function restart() {
|
|
if (canvasRef.current) {
|
|
mount(canvasRef.current, { setup, draw });
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
restart();
|
|
|
|
const handleResize = () => {
|
|
w = window.innerWidth;
|
|
h = window.innerHeight;
|
|
resizeCanvas(w, h);
|
|
addPoints();
|
|
};
|
|
|
|
window.addEventListener('resize', handleResize);
|
|
|
|
return () => {
|
|
window.removeEventListener('resize', handleResize);
|
|
unmount();
|
|
};
|
|
}, []);
|
|
|
|
return <div ref={canvasRef} className='fixed left-0 right-0 top-0 bottom-0 pointer-events-none -z-1 animate-bg delay-500' />;
|
|
};
|
|
|
|
export default Dots; |