Skip to content

Instantly share code, notes, and snippets.

@martianyi
Last active March 21, 2017 02:21
Show Gist options
  • Save martianyi/2971c2b5b6b8d213a3d3 to your computer and use it in GitHub Desktop.
Save martianyi/2971c2b5b6b8d213a3d3 to your computer and use it in GitHub Desktop.
simple loader
var flag = false;
var timer = null;
window.addEventListener('load', function () {
if (!flag) {
flag = true;
document.getElementById("load").style["display"] = "none";
clearTimeout(timer);
}
}, false);
timer = setTimeout(function () {
if (!flag) {
flag = true;
document.getElementById("load").style["display"] = "none";
}
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment