-
Notifications
You must be signed in to change notification settings - Fork 38
/
prefers-reduced-motion.html
64 lines (58 loc) · 2.08 KB
/
prefers-reduced-motion.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FOUT with prefers-reduced-motion</title>
<style>
body {
font-family: Lato, sans-serif;
}
</style>
<script>
(function() {
function loadFonts() {
if( !("fonts" in document ) ) {
return;
}
var fontRoman = new FontFace("Lato", "url('font-lato/lato-regular-webfont.woff2') format('woff2'),url('font-lato/lato-regular-webfont.woff') format('woff')");
var fontBold = new FontFace("Lato", "url('font-lato/lato-bold-webfont.woff2') format('woff2'),url('font-lato/lato-bold-webfont.woff') format('woff')", {
weight: "700"
});
var fontItalic = new FontFace("Lato", "url('font-lato/lato-italic-webfont.woff2') format('woff2'),url('font-lato/lato-italic-webfont.woff') format('woff')", {
style: "italic"
});
var fontBoldItalic = new FontFace("Lato", "url('font-lato/lato-bolditalic-webfont.woff2') format('woff2'),url('font-lato/lato-bolditalic-webfont.woff') format('woff')", {
weight: "700",
style: "italic"
});
Promise.all([
fontRoman.load(),
fontBold.load(),
fontItalic.load(),
fontBoldItalic.load()
]).then(function(loadedFonts) {
// Render them at the same time
loadedFonts.forEach(function(font) {
document.fonts.add(font);
});
});
}
if( "matchMedia" in window && window.matchMedia("(prefers-reduced-motion: reduce)").matches ) {
// do nothing
} else {
loadFonts();
}
})();
</script>
</head>
<body>
<h1>FOUT with prefers-reduced-motion</h1>
<p>This is a paragraph. <strong>This is heavier text.</strong> <em>This is emphasized text.</em> <strong><em>This is heavier and emphasized text.</em></strong></p>
<hr style="margin-top: 2em">
<ul>
<li>This demo is a companion to <a href="https://www.zachleat.com/web/comprehensive-webfonts/">A Comprehensive Guide to Font Loading Strategies</a></li>
<li>See all demos on <a href="https://github.com/zachleat/web-font-loading-recipes">GitHub <code>zachleat/web-font-loading-recipes</code></a></li>
</ul>
</body>
</html>