简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <script src="https://cdn.staticfile.org/jquery/2.2.4/jquery.min.js"></script> <script> $(document).ready(function(){ var div=$("div"); $("#start").click(function(){ div.animate({height:300},"slow"); div.animate({width:300},"slow"); div.queue(function () { div.css("background-color","red"); div.dequeue(); }); div.animate({height:100},"slow"); div.animate({width:100},"slow"); }); $("#stop").click(function(){ div.clearQueue(); }); }); </script> <p>queue() 方法显示被选元素上要执行的函数队列</p> <p>dequeue() 从队列移除下一个函数,然后执行函数</p> <p>clearQueue() 方法从尚未运行的队列中移除所有项目<p> <p> <button id="start">开始动画</button> <button id="stop">停止动画</button> </p> <div style="background:#98bf21;height:100px;width:100px;position:relative"></div> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: