Skip to content

Instantly share code, notes, and snippets.

@clawfire
Created May 22, 2011 11:09
Show Gist options
  • Save clawfire/985371 to your computer and use it in GitHub Desktop.
Save clawfire/985371 to your computer and use it in GitHub Desktop.
animation on each element of a caroussel, binded by a custom event
$('#caroussel-content').bind('caroussel-change',function(){
$('#caroussel-content figure').mouseenter(function(){
$(this).children("figcaption").animate({top: "0"}, 500);
}).mouseleave(function(){
$(this).children("figcaption").animate({top: "220px"}, 500);
});
});
@clawfire
Copy link
Author

Pb solved ! :p

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment