I am animating a div but i would like to give some effect to that animate so i tried like this
$('#slider').stop().animate({"margin-right": '0'}, 'slow','easeOutBounce');
easeOutBounce is not working for me.am i doing wrongly? But other than that all working.
I also tried jquery effect like below
$('#slider').stop().animate({"margin-right": '0'});
$('#slider').effect( "bounce", "slow" );
but,Here not even first line animate function working if i use effect
How to achieve bounce effect with animate?
easeOutBounce
effect is part of jquery UI plugin.
You have to include jquery UI too, or find an other plugin:
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>