Ralentir les animations ASCII si on détecte que l'utilisateur'trice a demandé au système de minimiser la quantité d'animation ou de mouvement. #44

Merged
tixie merged 1 commit from feat/a11y into preprod 2024-06-10 09:43:37 +00:00
Showing only changes of commit 351931fdeb - Show all commits

View file

@ -38,7 +38,10 @@ function updateAnimation(id, frames, totalFrames) {
} }
animate("illustration-accueil", 500); // If the user have a setting on their device to minimize the amount of non-essential motion
animate("rennes", 1000); const preferReduceMotion = window.matchMedia("(prefers-reduced-motion)").matches;
animate("orsay", 2000);
animate("illustration-accueil", preferReduceMotion ? 1500 : 500); // Reduce framerate if use preference is to reduce motion
animate("rennes", preferReduceMotion ? 3000 : 1000); // Reduce framerate if use preference is to reduce motion
animate("orsay", preferReduceMotion ? 4000 : 2000); // Reduce framerate if use preference is to reduce motion
animate("parterre", 1500); animate("parterre", 1500);