Animate animation lagging execution Solution

Source: Internet
Author: User

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 );

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.