jquery 停止动画 stop的几种用法
程序员文章站
2022-04-18 15:31:45
...
<!DOCTYPE html PUBLIC > <html xmlns=> <head> <meta http-equiv= content=/> <title>Panel</title> <style type=> *--height: %--</style> <script src= type=></script> <script type=>).animate({height: }, ).animate({width:).hide().animate({height:, width:, opacity: }, ).animate({height:
$("button:eq(1)").click(function(){ $("#panel").stop();//停止当前动画,继续下一个动画 }); $("button:eq(2)").click(function(){ $("#panel").stop(true);//清除元素的所有动画 }); $("button:eq(3)").click(function(){ $("#panel").stop(false, true);//让当前动画直接到达末状态 ,继续下一个动画 }); $("button:eq(4)").click(function(){ $("#panel").stop(true, true);//清除元素的所有动画,让当前动画直接到达末状态 }); })</script> </head> <body> <button>开始一连串动画</button> <button>stop()</button> <button>stop(true)</button> <button>stop(false,true)</button> <button>stop(true,true)</button> <p id="panel"> <h5 class="head">什么是jQuery?</h5> <p class="content"> jQuery是继Prototype之后又一个优秀的JavaScript库,它是一个由 John Resig 创建于2006年1月的开源项目。jQuery凭借简洁的语法和跨平台的兼容性,极大地简化了JavaScript开发人员遍历HTML文档、操作DOM、处理事件、执行动画和开发Ajax。它独特而又优雅的代码风格改变了JavaScript程序员的设计思路和编写程序的方式。 </p> </p> </body> </html>
以上就是jquery 停止动画 stop的几种用法的详细内容,更多请关注其它相关文章!
上一篇: PHP 抉择哪个版本相比稳定一些
推荐阅读