Animate animation lagging execution Solution
JQuery Animation:
Animate is prone to continuous triggering and delayed execution;
The following solutions can be used to solve problems such as delayed and repeated execution of slideUp, slideDown, and animation in jQuery:
1. Set the event on the trigger element to delayed processing to avoid the problem of delayed execution (using setTimeout)
2. We recommend that you stop all animations before triggering an element event, and then execute the corresponding animation event (use stop.
// Method 2
$ (". Container"). stop (); // stop the current animation and continue the next Animation
$ (". Container"). stop (true); // clear all animations of an element
$ (". Container"). stop (false, true); // Let the current animation directly reach the final state and continue the next Animation
$ (". Container"). stop (true, true); // clear all animations of the element so that the current animation reaches the final state.
// For example,
1 $ (". container "). stop (). animate ({2 marginTop: "60px", 3 width: "100px", 4 height: "50px" 5}, 500 );