Created
May 18, 2018 18:28
-
-
Save alisonmonteiro/4049fb619197129fe1de3522bbfb15e9 to your computer and use it in GitHub Desktop.
defered styles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <noscript id="deferred-styles"> | |
| <link rel="stylesheet" href="style.css"/> | |
| </noscript> | |
| <script> | |
| function loadDeferredStyles() { | |
| var addStylesNode = document.getElementById('deferred-styles'); | |
| var replacement = document.createElement('div'); | |
| replacement.innerHTML = addStylesNode.textContent; | |
| document.body.appendChild(replacement) | |
| addStylesNode.parentElement.removeChild(addStylesNode); | |
| }; | |
| var raf = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; | |
| if (raf) { | |
| raf(function() { | |
| window.setTimeout(loadDeferredStyles, 0); | |
| }); | |
| } else { | |
| window.addEventListener('load', loadDeferredStyles); | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment