Skip to content

Instantly share code, notes, and snippets.

@quoidautre
Created April 5, 2012 07:38
Show Gist options
  • Select an option

  • Save quoidautre/2308793 to your computer and use it in GitHub Desktop.

Select an option

Save quoidautre/2308793 to your computer and use it in GitHub Desktop.
JS: Fade images
function fadeImages($item) {
// Affichage des images en fade
var items = $item.hide();
var i = 0;
(function displayImages() {
items.eq(i++).fadeIn(200, displayImages);
})();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment