CSS:
.reverse {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-moz-transform: rotate(180deg);
}
.rotate {
-webkit-animation-duration:.5s;
-moz-animation-duration:.5s;
-webkit-animation-iteration-count:1;
-moz-animation-iteration-count:1;
-webkit-animation-name: yoyo;
-moz-animation-name: yoyo;
-webkit-animation-timing-function:linear;
-moz-animation-timing-function:linear;
}
@-webkit-keyframes yoyo {
from {-webkit-transform:scale(1) rotate(0deg);}
to {-webkit-transform:scale(1) rotate(360deg);}
}
@-moz-keyframes yoyo {
from {-moz-transform:scale(1) rotate(0deg);}
to {-moz-transform:scale(1) rotate(360deg);}
}
In JAvascript:
$(buttonElement).click(function()
{
$('head').hide();
$(".arrow").toggleClass("reverse");
$(".tsp_panel").toggle("slow");
$(this).toggleClass("active");
return false;
});
//-------------------
$(buttonElement).hover(function(){
$(".arrow").addClass("rotate");
$(".arrow").stop().animate({top: '400px'}, {duration:1000, easing: 'easeOutBack'});
}, function() {
$(".arrow").removeClass("rotate");
$(".arrow").stop().animate({top: "47px"}, {duration:600, easing: 'easeInOutExpo'} );
});
PS: I have used this but dont remember the source