perf: frame-rate independent animation + Scroll-Driven progress bar

- MatrixRain: add delta time for consistent speed across 60/120/144Hz displays
- ReadingProgress: use Scroll-Driven Animations API with JS fallback
- Fallback to scroll events for unsupported browsers (Firefox) and prefers-reduced-motion

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-14 00:02:35 +08:00
parent f185048abc
commit d5ea352775
3 changed files with 65 additions and 13 deletions

View File

@@ -58,9 +58,14 @@ export function MatrixRain({
}));
let animationId: number;
let lastTime: number | null = null;
const draw = () => {
const draw = (timestamp: number) => {
const rect = canvas.getBoundingClientRect();
const delta =
lastTime !== null ? (timestamp - lastTime) / 1000 : 1 / 60;
lastTime = timestamp;
ctx.fillStyle = 'rgba(15, 23, 42, 0.05)';
ctx.fillRect(0, 0, rect.width, rect.height);
@@ -83,7 +88,8 @@ export function MatrixRain({
);
}
drop.y += drop.speed * fontSize;
// Frame-rate independent: scale by delta, 60fps as baseline
drop.y += drop.speed * fontSize * delta * 60;
if (drop.y > rect.height + 100) {
drop.y = -50;
drop.charIndex = (drop.charIndex + 1) % 20;
@@ -95,7 +101,7 @@ export function MatrixRain({
animationId = requestAnimationFrame(draw);
};
draw();
animationId = requestAnimationFrame(draw);
return () => {
cancelAnimationFrame(animationId);