Skip to content

Instantly share code, notes, and snippets.

@chrisallenlane
Created March 9, 2014 19:17
Show Gist options
  • Save chrisallenlane/9452959 to your computer and use it in GitHub Desktop.
Save chrisallenlane/9452959 to your computer and use it in GitHub Desktop.
Preloading
function preload(files) {
var images = [];
for (i = 0; i < files.length; i++) {
images[i] = new Image();
images[i].src = files[i];
}
}
preload([
"http://www.patrickprugh.com/images/addy.jpg",
"http://www.patrickprugh.com/images/pollie.jpg",
"http://www.patrickprugh.com/images/beyond.jpg",
"http://www.patrickprugh.com/images/clients.jpg",
"http://www.patrickprugh.com/images/clients-tablet.jpg",
"http://www.patrickprugh.com/images/clients-phone.jpg",
"http://www.patrickprugh.com/images/arrow.png",
"http://www.patrickprugh.com/images/client-icon.jpg",
"http://www.patrickprugh.com/images/closelabel.gif",
"http://www.patrickprugh.com/images/loading.gif",
"http://www.patrickprugh.com/images/nextlabel.gif",
"http://www.patrickprugh.com/images/pdf-icon2.jpg",
"http://www.patrickprugh.com/images/prevlabel.gif",
"http://www.patrickprugh.com/images/selector.gif",
"http://www.patrickprugh.com/images/selector.jpg",
"http://www.patrickprugh.com/images/themes.gif",
"http://www.patrickprugh.com/images/portfolio/m1.jpg",
"http://www.patrickprugh.com/images/portfolio/m2.jpg",
"http://www.patrickprugh.com/images/portfolio/m3.jpg",
"http://www.patrickprugh.com/images/portfolio/m4.jpg",
"http://www.patrickprugh.com/images/portfolio/m5.jpg",
"http://www.patrickprugh.com/images/portfolio/p1.jpg",
"http://www.patrickprugh.com/images/portfolio/p2.jpg",
"http://www.patrickprugh.com/images/portfolio/p3.jpg",
"http://www.patrickprugh.com/images/portfolio/p4.jpg",
"http://www.patrickprugh.com/images/portfolio/p5.jpg",
"http://www.patrickprugh.com/images/portfolio/w1.jpg",
"http://www.patrickprugh.com/images/portfolio/w2.jpg",
"http://www.patrickprugh.com/images/portfolio/w3.jpg",
"http://www.patrickprugh.com/images/portfolio/w4.jpg",
"http://www.patrickprugh.com/images/portfolio/w5.jpg",
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment