Skip to content

Commit e9f14b2

Browse files
committed
feat: Implement canvas-based neural network background animation and migrate to Vite build system.
1 parent c4019ce commit e9f14b2

File tree

2 files changed

+1
-49
lines changed

2 files changed

+1
-49
lines changed

src/neural-network.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class NeuralNetwork {
9898
// Draw particle
9999
this.ctx.beginPath();
100100
this.ctx.arc(p.x, p.y, p.size, 0, Math.PI * 2);
101-
this.ctx.fillStyle = `rgba(0, 242, 255, 0.5)`; // Semi-transparent particles
101+
this.ctx.fillStyle = 'rgba(0, 242, 255, 0.5)'; // Semi-transparent particles
102102
this.ctx.fill();
103103

104104
// Connect particles

src/script.js

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)