Created
May 8, 2015 16:29
-
-
Save mattdesl/7b2afa86481fbce87098 to your computer and use it in GitHub Desktop.
load images in parallel
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
function loadImage(url, callback) { | |
var image = new Image(); | |
image.onload = function() { | |
callback(null, image); | |
}; | |
image.onerror = function() { | |
callback(new Error('Could not load image at ' + url)); | |
}; | |
image.src = url; | |
} | |
function loadImages(urls, callback) { | |
var returned = false; | |
var count = 0; | |
var result = new Array(urls.length); | |
urls.forEach(function(url, index) { | |
loadImage(url, function(error, item) { | |
if (returned) return; | |
if (error) { | |
returned = true; | |
return callback(error); | |
} | |
result[index] = item; | |
count++; | |
if (count === urls.length) { | |
return callback(null, result); | |
} | |
}); | |
}); | |
} | |
var imageUrls = ['one.png', 'two.png', 'three.png']; | |
loadImages(imageUrls, function(err, images) { | |
if (err) throw err; | |
console.log('All images loaded', images); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment