Skip to content

Instantly share code, notes, and snippets.

@meeDamian
Created April 5, 2012 21:27
Show Gist options
  • Save meeDamian/2314288 to your computer and use it in GitHub Desktop.
Save meeDamian/2314288 to your computer and use it in GitHub Desktop.
karuzela marek
function karuzeluj(){
$('.carusel hgroup.selected').animate({opacity:0, left:'-100px'},500,function(){
$(this).removeClass('selected');
var $nxt = ($(this).next().length) ? $(this).next() : $(this).siblings(':first');
$nxt.animate({opacity:1,left:'200px'},700)
.addClass('selected');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment