我制作了一个由两个圆组成的按钮:
$('.circle').mouseover(function(){
$('.overlay').animate({opacity:0.7,}, 200);
});
$('.circle').mouseout(function(){
$('.overlay').animate({opacity:0}, 100);
});

.overlay{
position:absolute;
background:black;
width:100%;
height:100%;
opacity:0;
}
.circle{
position:absolute;
width:30px;
height:30px;
border:1px dashed #fc7945;
border-radius:50px;
cursor:pointer;
z-index:99;
}
.circle-in{
width:20px;
height:20px;
margin-top:2px;
background:none;
margin-left:2px;
border:3px solid #fc7945;
border-radius:50px;
cursor:pointer;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="overlay"></div>
<a><div class="circle">
<div class="circle-in"></div>
</div></a>
&#13;
我希望当我悬停在它上面时会出现叠加层,所以我的问题是,当我将鼠标悬停在它上面时,第一个和第二个圆圈之间有一个断点,这会使叠加层消失并出现如何修复它?
答案 0 :(得分:2)
stop()
当前正在播放的动画:
$('.circle')
.mouseover(function() {
$('.overlay').stop().animate({ //add stop() here
opacity: 0.7,
}, 200);
})
.mouseout(function() {
$('.overlay').stop().animate({ //and here
opacity: 0
}, 100);
});
$('.circle')
.mouseover(function() {
$('.overlay').stop().animate({
opacity: 0.7,
}, 200);
})
.mouseout(function() {
$('.overlay').stop().animate({
opacity: 0
}, 100);
});
.overlay {
position: absolute;
background: black;
width: 100%;
height: 100%;
opacity: 0;
}
.circle {
position: absolute;
width: 30px;
height: 30px;
border: 1px dashed #fc7945;
border-radius: 50px;
cursor: pointer;
z-index: 99;
}
.circle-in {
width: 20px;
height: 20px;
margin-top: 2px;
background: none;
margin-left: 2px;
border: 3px solid #fc7945;
border-radius: 50px;
cursor: pointer;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="overlay"></div>
<a>
<div class="circle">
<div class="circle-in"></div>
</div>
</a>
答案 1 :(得分:2)
这不是因为圆圈之间的空间,而是从外圈移动到内圈会触发指针事件(mouseout,mousein),这会导致动画重新开始。
您可以通过在内圈添加一行CSS来完全禁用内圈上的这些事件来防止这种情况发生。其余的代码可以保持不变,并且副作用几乎没有变化,因为你不需要动画的解决方法。 IE浏览器仅支持version 11以来的这一点。
pointer-events: none;
$('.circle').mouseover(function(){
$('.overlay').animate({opacity:0.7,}, 200);
});
$('.circle').mouseout(function(){
$('.overlay').animate({opacity:0}, 100);
});
.overlay{
position:absolute;
background:black;
width:100%;
height:100%;
opacity:0;
}
.circle{
position:absolute;
width:30px;
height:30px;
border:1px dashed #fc7945;
border-radius:50px;
cursor:pointer;
z-index:99;
}
.circle-in{
width:20px;
height:20px;
margin-top:2px;
background:none;
margin-left:2px;
border:3px solid #fc7945;
border-radius:50px;
cursor:pointer;
pointer-events: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="overlay"></div>
<a><div class="circle">
<div class="circle-in"></div>
</div></a>