In jquery, this sentence. stop (false, true); what does it mean? jquery. stop
. Stop is the method used in jQuery to control the page animation effect. The animation effect on the current page is immediately ended after running.
In the new jQuery version, stop adds two parameters:
The first parameter indicates whether to clear the animation sequence, that is, whether to stop the animation effect of the current element or stop all the animation effects attached to it. Generally, it is false to skip the current animation effect, execute the next animation effect;
The second parameter is whether to execute the current animation effect to the end, which means that when the current animation is stopped, the animation effect has just been executed. In this case, the animation effect after execution is desired, this parameter is true. Otherwise, the animation will stop at the stop operation.
From: https://zhidao.baidu.com/question/230698831.html