Non-Fluid Animation
Non-Fluid Animation
Hi, I have a problem with my jQueryUI code, the animation is not fluid. When the code below is placed into my page, the animation is jerky ?
- $(".reachme a").unbind().click(function(event) {
- event.preventDefault();
- $("#reachme").css("top", "900px");
- $("#reachme").animate({top: '400px', height: '750px'}, { duration:'3000', easing: 'easeInOutBounce' });
- });