📚 Improved build scripts & optimized CSS files for enhanced performance 🎉
This commit is contained in:
84
backend/static/css/animations-optimized.css
Normal file
84
backend/static/css/animations-optimized.css
Normal file
@ -0,0 +1,84 @@
|
||||
/**
|
||||
* Optimized Animations for Raspberry Pi
|
||||
* All animations removed for performance
|
||||
*/
|
||||
|
||||
/* Keine Animationen - alle entfernt */
|
||||
|
||||
/* Placeholder für Animation-Klassen ohne Effekte */
|
||||
.fade-in,
|
||||
.fade-out,
|
||||
.slide-up,
|
||||
.slide-down,
|
||||
.slide-left,
|
||||
.slide-right,
|
||||
.scale-in,
|
||||
.scale-out,
|
||||
.rotate-in,
|
||||
.rotate-out,
|
||||
.bounce,
|
||||
.pulse,
|
||||
.ping,
|
||||
.spin,
|
||||
.wiggle,
|
||||
.swing,
|
||||
.rubberBand,
|
||||
.flash,
|
||||
.shake,
|
||||
.flip,
|
||||
.zoom-in,
|
||||
.zoom-out {
|
||||
/* Keine Animation */
|
||||
}
|
||||
|
||||
/* Keine Keyframes definiert */
|
||||
|
||||
/* Utility Classes ohne Effekte */
|
||||
.animate-none { animation: none !important; }
|
||||
.animate-spin { /* Keine Animation */ }
|
||||
.animate-ping { /* Keine Animation */ }
|
||||
.animate-pulse { /* Keine Animation */ }
|
||||
.animate-bounce { /* Keine Animation */ }
|
||||
|
||||
/* Duration Classes - ignoriert */
|
||||
.duration-75,
|
||||
.duration-100,
|
||||
.duration-150,
|
||||
.duration-200,
|
||||
.duration-300,
|
||||
.duration-500,
|
||||
.duration-700,
|
||||
.duration-1000 {
|
||||
/* Keine Duration */
|
||||
}
|
||||
|
||||
/* Delay Classes - ignoriert */
|
||||
.delay-75,
|
||||
.delay-100,
|
||||
.delay-150,
|
||||
.delay-200,
|
||||
.delay-300,
|
||||
.delay-500,
|
||||
.delay-700,
|
||||
.delay-1000 {
|
||||
/* Kein Delay */
|
||||
}
|
||||
|
||||
/* Easing Classes - ignoriert */
|
||||
.ease-linear,
|
||||
.ease-in,
|
||||
.ease-out,
|
||||
.ease-in-out {
|
||||
/* Kein Easing */
|
||||
}
|
||||
|
||||
/* Motion-safe - ignoriert */
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
/* Keine Animationen auch bei no-preference */
|
||||
}
|
||||
|
||||
/* Alle Animationen global deaktiviert */
|
||||
* {
|
||||
animation: none !important;
|
||||
transition: none !important;
|
||||
}
|
Reference in New Issue
Block a user