jquery stop()函数是解决在操作过快的过程中jquery动画出现不断闪动的问题,stop()有两个参数,分别是clearqueue 和gotoend ,clearqueue就是清空动画队列,gotoend就是立即结束当前动画至动画应该结束的位置。默认的两个参数都是false。
在悬浮显示中用默认的stop()就行。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.box {
width: 100px;
height: 100px;
background: lightcoral;
}
.box div {
display: block;
width: 100%;
background:lightgray;
height: 100%;
display:none;
}
</style>
</head>
<body>
</div>
<div class="box">
<div></div>
</div>
<script type="text/javascript" src="css3/js/jquery-1.11.3.min.js"></script>
<script>
$(function(){
$(".box").hover(function(){
$(this).children('div').stop().show("slow");
},function(){
$(this).children('div').stop().hide("slow");
})
})
</script>
</body>
</html>
在多个元素悬浮的时候,个别会出现悬浮不显示的情况,个人替换成stop(true,false)解决悬浮不显示的问题。