Skip to content

Instantly share code, notes, and snippets.

@davidsword
Last active February 3, 2018 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsword/765532bd4b0bf81b74c9c81060a01fa5 to your computer and use it in GitHub Desktop.
Save davidsword/765532bd4b0bf81b74c9c81060a01fa5 to your computer and use it in GitHub Desktop.
const preLoadImages = ["image1.jpg","image2.png"];
preLoadImages.forEach(function(image, index){
setTimeout(function(){
$("<img />").attr("src", image);
}, 1000*index); // every second load 1
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment