26. Accessibility
Animations can be a problem for people with disabilities. That is why it is important that they play unless the user says otherwise. In CSS we have the prefers-reduced-motion media feature.
@media (prefers-reduced-motion: no-preference) {
/* ALL animations will go here */
}
You can automate the process with a Sass mixin.
This work is under a Attribution-NonCommercial-NoDerivatives 4.0 International license.
Building SPAs with Django and HTML Over the Wire: Learn to build real-time single page applications with Python
The HTML over WebSockets approach simplifies single-page application (SPA) development and lets you bypass learning a JavaScript rendering framework such as React, Vue, or Angular, moving the logic to Python. This web application development book provides you with all the Django tools you need to simplify your developments with real-time results.
Buy the bookHelp me keep writing
Every coffee gives me a push toward the next article.
Sure, it's on me!
Comments
There are no comments yet.