Skip to content

Commit aefdb53

Browse files
committed
feat: slow down a bit
1 parent 32e0cec commit aefdb53

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ p code {
190190
Animates from left to right
191191
============================================ */
192192
.plate-visual.animate {
193-
animation: plateSlideAcross 8s linear forwards;
193+
animation: plateSlideAcross 16s linear forwards;
194194
}
195195

196196
@keyframes plateSlideAcross {
@@ -213,7 +213,7 @@ p code {
213213
0 0 40px rgba(78, 205, 196, 0.4),
214214
0 4px 12px rgba(0, 0, 0, 0.3),
215215
inset 0 -2px 4px rgba(0, 0, 0, 0.1);
216-
animation: plateSlideAcross 8s linear forwards, selectedPulse 1s ease-in-out infinite;
216+
animation: plateSlideAcross 16s linear forwards, selectedPulse 1s ease-in-out infinite;
217217
}
218218

219219
@keyframes selectedPulse {

src/ui.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ export type { PlateVisualState };
4545

4646
export const UI_CONFIG = {
4747
// Animation
48-
BELT_ANIMATION_DURATION: 8000, // ms für komplette Durchfahrt
48+
BELT_ANIMATION_DURATION: 16000, // ms für komplette Durchfahrt (langsamer)
4949
PLATE_SPAWN_POSITION: -150, // px vom linken Rand
5050
TABLE_ANIMATION_DURATION: 500, // ms für Animation zum Tisch
51-
SELECTION_DELAY: 800, // ms Verzögerung bevor Teller zum Tisch wandert (10% der Band-Animation)
51+
SELECTION_DELAY: 1600, // ms Verzögerung bevor Teller zum Tisch wandert (10% der Band-Animation)
5252

5353
// Log
5454
MAX_LOG_ENTRIES: 50,

0 commit comments

Comments
 (0)