Preload Images With Jquery To Get Dominant Colour Of Image
I created the following testpage: http://methodus.de/wp/ It gets the dominant colour of the images of each blog post and use them for animation when scrolling down the page. Unfort
Solution 1:
There are some hacky ways to do this using $.load
, but at the moment the best approach that i've found is to use imagesloaded.
You could then do something like:
$('.my-content-class').imagesLoaded( function() {
// ... your code here
});
Post a Comment for "Preload Images With Jquery To Get Dominant Colour Of Image"