Skip to content

Instantly share code, notes, and snippets.

@kllaudyo
Last active August 9, 2018 21:14
Show Gist options
  • Save kllaudyo/eda3c3b32d89640b81418164ea650cde to your computer and use it in GitHub Desktop.
Save kllaudyo/eda3c3b32d89640b81418164ea650cde to your computer and use it in GitHub Desktop.
Simple preload images
const preload = () => {
const images = [];
for(let i=arguments.length;i--;){
const index = images.length;
images[index] = new Image();
images[index].src=arguments[i];
}
return images;
};
/*
preload(
"/images/sync.png",
"/images/sync-alert.png",
"/images/sync-not.png"
);
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment