Created
April 9, 2016 13:49
-
-
Save Igloczek/595d174f49cc072458e932a6798eb506 to your computer and use it in GitHub Desktop.
Cool way to fadeout page before loading next view
This file contains 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
window.addEventListener("beforeunload", function () { | |
document.body.classList.add("animate-out"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment