javascript - jQuery easing Bounce animation -


i trying add bounce effect animation having trouble doing so. have been following jquery api animate() page keep failing. trying create effect object slides in top , bounces before settling place.

$(this).animate( {         "top": "+=100px"     }, {          duration: '400',         specialeasing: {             width: 'linear',             height: 'easeoutbounce'         },     } ); 

i'm not quite sure of element you're hoping bounce, try this:

$(this).animate({ "top" : "+=100px" }, 400, "easeoutbounce"); 

Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -