From 8c750b880aa8388cfaae7e466a4b230206e9ffc7 Mon Sep 17 00:00:00 2001 From: yuetsh <517252939@qq.com> Date: Mon, 18 May 2026 04:23:14 -0600 Subject: [PATCH] fix: use pixel values for diagonal AC background scroll Percentage-based background-position translates to unequal pixel offsets (268px X vs 768px Y on a 1280x768 viewport), making the movement appear mostly vertical. Equal pixel values (1012px, 1012px) give a true 45-degree diagonal. X loops seamlessly at the tile width boundary. Co-Authored-By: Claude Sonnet 4.6 --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 45c9cd1..3e4c48c 100644 --- a/style.css +++ b/style.css @@ -1834,10 +1834,10 @@ html[data-theme="dark"][data-design-theme="animal-crossing"] .beian a:hover { @keyframes ac-bg-scroll { 0% { - background-position: 100% 0%; + background-position: 0px 0px; } 100% { - background-position: 0% 100%; + background-position: 1012px 1012px; } }