这篇文章主要为大家详细介绍了jQuery stop()方法使用示例,具有一定的参考价值,可以用来参考一下。
感兴趣jQuery stop()方法使用示例的小伙伴,下面一起跟随四海网的小编罗X来看看吧。<br>
stop([clearQueue],[gotoEnd]);
参数clearQueue和gotoEnd都是可选参数,为Boolean值(true或false)。clearQueue代表是否清空未执行完的动画队列,gotoEnd代表是否直接将正在执行的动画跳转到末状态。
<!-- html部分 -->
<div id="panel" style="width: 60px;height: 22px;background-color: #eee;border: 1px solid #abcdef;font-size: 12px;">呵呵</div>
<!-- 引入jquery库 -->
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
/* js部分 */
$("#panel").hover(function() {
$(this).stop().animate({height: "150"}, 200);
},function() {
$(this).stop().animate({height: "22"}, 300);
});
</script>
$("#panel").hover(function() {
$(this).stop()
.animate({height: "150"}, 5000) //如果在此时触发了光标的移出事件
//将执行下面的动画
.animate({borderWidth: "20px"},3000); //而非光标移出事件中的动画
},function() {
$(this).stop()
.animate({width: "300"}, 2000)
.animate({fontSize: "24px"},3000);
});
$("#panel").hover(function() {
$(this).stop(true)
.animate({height: "150"}, 5000) //如果在此时触发了光标的移出事件
//直接跳过后面的动画队列
.animate({borderWidth: "20px"},3000);
},function() {
$(this).stop(true)
.animate({width: "300"}, 2000)
.animate({fontSize: "24px"},3000);
});
$("div.content")
.animate({width: "300"}, 200)
.animate({height: "150"}, 300)
.animate({opacity: "0.2"}, 200);
本文来自:http://www.q1010.com/180/2816-0.html
注:关于jQuery stop()方法使用示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:stop()
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。