Quotidien Shaarli

Tous les liens d'un jour sur une page.

April 17, 2023

WIP: Block links / Cards

C'est compliqué de faire un bloc (card) entièrement cliquable, accessible et avec son texte sélectionnable...

Running CSS animations only if both the device and the user allow it - Nicolas Hoizey

@media (prefers-reduced-motion: no-preference) {
img {
animation-play-state: running;
/ turn animations on if user doesn't mind /
}
}
@media not (update: fast) {
img {
animation-play-state: paused;
/ except, turn them off again if the browser can't draw them effectively anyway /
}
}