I was trying apply jQuery easing plugin to .css and .animate, but not working, i dont know why, because normally it works. Code example:
$('#img').hover(function() {
$(this).animate({"border-radius":"5px"}, 0, "easeOutBounce");
}, function() {
$(this).animate({"border-radius":"75px"}, 0, "easeOutBounce");
});
So basically .animate (instead of .css to avoid problems) but i want also set animation duration and working "easeOutBounce"
or some of other effects.
Now border radius is animated on :hover
, but without animation timing.
I cannot do it in css, and jQuery is not working, is there some way to fix this?
Thanks, Oliver