jquery中animate的stop()方法作用实例分析
本文实例分析了jquery中animate的stop()方法作用。分享给大家供大家参考。具体分析如下:
这里以一个视频中的代码段告诉你stop()的作用:
代码如下:
<style type="text/css"> ul li{ width:50px; height:30px; background:#333; margin-bottom:10px; color:#fff;} </style> <ul id="flyul"> <li>wod a </li> <li>wod a </li> <li>wod a </li> <li>wod a </li> <li>wod a </li> </ul> <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> <script type="text/javascript"> $('#flyul li').mouseenter(function(){ $(this).stop().animate({ //将此处改为$(this).animate({对比一下不带stop的运行效果 width:'300px' },1000); }); $('#flyul li').mouseleave(function(){ $(this).stop().animate({ //将此处改为$(this).animate({对比一下不带stop的运行效果 width:'50px' },1000); }); </script>
希望本文所述对大家的jQuery程序设计有所帮助。
相关推荐
钱多多 2013-05-29
89463661 2019-12-04
suis 2019-11-16
LingPF 2019-11-08
王福朋 2018-02-28
CandyGoo 2014-08-19
84483065 2019-03-25
limengmeng00 2018-08-22
CrazyDogWang 2017-02-14
无情 2015-06-25
liusure0 2015-06-11
zyhui 2015-06-10
富贵 2015-01-16
zhangmingming 2013-05-29
XiaoSpring 2011-01-24
Haoroid 2018-01-16
natineprince 2017-03-15
87244857 2019-05-08
natineprince 2016-07-13