Adapting to user preferences

Over the last years, browsers implemented various features to react to user preferences on the web using CSS, JavaScript or by checking for preferences on the server-side. In this article, I would like to show which user preferences are currently expos…

Over the last years, browsers implemented various features to react to user preferences on the web using CSS, JavaScript or by checking for preferences on the server-side. In this article, I would like to show which user preferences are currently exposed by browsers, the best way to handle them and a look in to the future to see what might be available soon.

Reduced Motion

Let’s start with the prefers-reduced-motion media query. It was introduced in Safari 10.1 and is currently (February 2019) supported in the latest versions of Safari, iOS Safari, Firefox and Chrome.

The prefers-reduced-motion media feature is used to detect if the user has requested the system minimize the amount of animation or motion it uses. You can either detect it using a CSS media query

@media (prefers-reduced-motion: reduce) {
/* disable animations/transitions */
}

or you can also use JavaScript to check if the users prefers reduced motion:

var motionQuery = matchMedia('(prefers-reduced-motion)');
function handleReduceMotionChanged() {
if (motionQuery.matches) {
/* disabled animations/transitions */
} else {
/* enable animations/transitions */
}
}
motionQuery.addListener(handleReduceMotionChanged);
handleReduceMotionChanged();

The safest way to disable all CSS animations and transitions is to use:

@media (prefers-reduced-motion: reduce) {
* {
transition: none !important;
animation: none !important;
}
}

This would however also not trigger animation start/end events or keyframe states, so if your code relies on them you might use:

@​media (prefers-reduced-motion: reduce) { 
* {
animation-duration: 0.1s !important;
transition-duration: 0.1s !important;
}
}

This is the safest solution, but it might not be the best solution as you may still want to use animations/transitions for some parts even if the user prefers reduced motion. I recommend reading Designing Safer Web Animation For Motion Sensitivity by Val Head to learn more about when it is a good idea to use animations or transitions.

prefers-color-scheme

The next user preference is the prefers-color-scheme media query which is currently (February 2019) only supported in Safari 12.1. It will however also be supported by Firefox soon and Chrome will also add support in the future.

The prefers-color-scheme media query is probably better known by Dark/Light mode which you can enable on MacOs in preferences.

In CSS you can use the following media query to check if a user prefers dark mode. For light mode the query would be prefers-color-scheme: light.

@media (prefers-color-scheme: dark) {
/* adust styles for dark mode */
}

As it is a media query you can also use JavaScript to check for it:

var colorSchemeQuery = matchMedia('(prefers-color-scheme: dark)');
function handleColorSchemeChanged() {
if (colorSchemeQuery.matches) {
/* dark mode */
} else {
/* light mode */
}
}
colorSchemeQuery.addListener(handleColorSchemeChanged);
handleColorSchemeChanged();

You can read more about designing for dark mode in this article by Andy Clarke.

Save data

On to the next one – the SaveData request header. Users can activate the SaveData mode in their browser and we as developers can use that information to deliver a *light* version. This means we could serve system fonts instead of web fonts if save data is enabled or serve low-res images instead of high-res and much more.

We can either detect it via JavaScript using:

if ("connection" in navigator) {
if (navigator.connection && navigator.connection.saveData === true) {
// saveData mode is enabled - don't load heavy assets like high-res images or webfonts
}
}

Or you can also detect it on the server-side, here is an example in PHP:

if (isset($_SERVER["HTTP_SAVE_DATA"]) && strtolower($_SERVER["HTTP_SAVE_DATA"]) === "on") {
// `Save-Data` detected!
$saveData = true;
}

There is currently no media query for saveData and while we probably never get bandwith media query there is hope that there will be a save data media query in the future.

Fore more infos on delivering fast and light applications with Save-Data I recommend this article:

Do Not Track

Next is the Do Not Track request header, which I wrote about before as I am all against tracking and had great hopes in this feature. Unfortunately, Safari Technoloy Preview 75 disabled the feature recently, as it was used by some sites for – wait for it – tracking; Oh the irony.

So while I am not sure if other browsers will also disable it, it is still great and gives you extra karma if you honour the Do Not Track setting. It can again be checked via JavaScript:

var doNotTrack = (navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1" || window.doNotTrack === "1");

if (!doNotTrack) {
/* load analytics if you really need to */
}

You can also check for Do Not Track on the server-side, again here an example in PHP:

$donottrack= (isset($_SERVER['HTTP_DNT']) && $_SERVER['HTTP_DNT'] == 1); 
if (!$donottrack) {
echo 'embed analytics script if you really need to';
}

Let the user decide

While it is great if you honour user preferences you should also make sure that users can override it on your site. A user may prefer dark mode in general, but may prefer light mode on your site – so you should have a setting to change the theme and use that to override the general user setting exposed by the browser. And talking about settings – always make sure users can find the setting easily.

What’s next?

Let’s have a look at the User Preference Media Features to see what we may see next in browsers.

As you can see there are some new media queries defined, like “inverted-colors”, “prefers-reduced-transparency” and “prefers-contrast” which are currently (February 2019) not implemented in any browsers, but probably will be in the future.

Conclusion

As you can see there are currently various ways to adapt your site to honour user preferences and there will be even more in the future. This features help to improve accessibility, performance and privacy and you can make your users happy when you adapt to them.

Happy coding!


Print Share Comment Cite Upload Translate
APA
justmarkup | Sciencx (2024-03-28T23:44:32+00:00) » Adapting to user preferences. Retrieved from https://www.scien.cx/2019/02/19/adapting-to-user-preferences/.
MLA
" » Adapting to user preferences." justmarkup | Sciencx - Tuesday February 19, 2019, https://www.scien.cx/2019/02/19/adapting-to-user-preferences/
HARVARD
justmarkup | Sciencx Tuesday February 19, 2019 » Adapting to user preferences., viewed 2024-03-28T23:44:32+00:00,<https://www.scien.cx/2019/02/19/adapting-to-user-preferences/>
VANCOUVER
justmarkup | Sciencx - » Adapting to user preferences. [Internet]. [Accessed 2024-03-28T23:44:32+00:00]. Available from: https://www.scien.cx/2019/02/19/adapting-to-user-preferences/
CHICAGO
" » Adapting to user preferences." justmarkup | Sciencx - Accessed 2024-03-28T23:44:32+00:00. https://www.scien.cx/2019/02/19/adapting-to-user-preferences/
IEEE
" » Adapting to user preferences." justmarkup | Sciencx [Online]. Available: https://www.scien.cx/2019/02/19/adapting-to-user-preferences/. [Accessed: 2024-03-28T23:44:32+00:00]
rf:citation
» Adapting to user preferences | justmarkup | Sciencx | https://www.scien.cx/2019/02/19/adapting-to-user-preferences/ | 2024-03-28T23:44:32+00:00
https://github.com/addpipe/simple-recorderjs-demo