Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery 停止动画


jQuery stop() 方法用于在动画或效果完成前停止它们。



点击滑动面板上下

因为时间宝贵,我们提供快速简易的学习。

在 W3Schools,您可以以易于访问且便捷的格式学习所有您需要学习的内容。


实例

jQuery stop() 滑动
演示 jQuery stop() 方法。

jQuery stop() 动画(带参数)
演示 jQuery stop() 方法。


jQuery stop() 方法

jQuery 的 stop() 方法用于在动画或效果完成前停止它们。

stop() 方法适用于所有 jQuery 效果函数,包括滑动、淡入淡出和自定义动画。

语法

$(选择器).stop(stopAll,goToEnd);

可选的 stopAll 参数指定是否也应清除动画队列。默认值为 false,这意味着仅停止活动的动画,允许之后执行任何排队的动画。

可选的 goToEnd 参数指定是否立即完成当前动画。默认值为 false。

因此,默认情况下,stop() 方法会终止正在对选定元素执行的当前动画。

以下示例演示了 stop() 方法,不带任何参数

实例

$("#stop").click(function(){
  $("#panel").stop();
});
亲自试一试 »

jQuery 练习

通过练习测试自己

练习

使用 jQuery 方法来停止<div> 元素的动画效果。

$("div").();

开始练习


jQuery 效果参考

有关所有 jQuery 效果的完整概述,请访问我们的 jQuery 效果参考


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.