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

All overlapping substrings matching a java regex -

c++ - Using OpenSSL in a multi-threaded application -

php - Deleting/Renaming a locked file -