gpt4 book ai didi

javascript - JS/jQuery : Reverse animate triggered by hover?

转载 作者:太空宇宙 更新时间:2023-11-04 08:44:46 25 4
gpt4 key购买 nike

当我第一次接触到 jQuery 的 .animate 函数时,我非常激动。但是如果我例如在 .mouseover 上使用此函数更改框的颜色,它(当然)会完成动画,尽管鼠标已经离开框并且在 .mouseleave 上调用了另一个反转颜色的动画。

这导致例如如果您多次将鼠标悬停在框上并且动画重复 20 次左右,则可以拍打。

如果鼠标不再位于框上,要停止动画/反转颜色变化,您可以使用例如这个问题的功能组合已经被问到:jQuery - Animation transition interrupted by hover

以下是类似动画的此问题的示例代码:http://jsfiddle.net/B9wx8/30/

$('.box1,.box2').mouseenter(function () {
$('.box2').stop().animate({
top: 0
}, 'slow');
}).mouseleave(function () {
$('.box2').stop().animate({
top: '-200px'
}, 'slow');
});

这看起来不是很优雅和复杂。是否有一些 jQuery 函数非常类似于 .animate,但是在例如鼠标不在盒子里了?

类似于:

$('.myClass').animate_and_reverse_animation_if_hover_ends( {...} , 500 );

最佳答案

下面的代码使用 CSS

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style type="text/css">
.bottom, .top {
width: 200px;
height: 200px;
}
.bottom { background-color: black; }
.top {
background-color: red;
transform: translate(0, 0%);
transition: transform .3s ease;
will-change: transform;
}
.top.covered { transform: translate(0, 100%); }
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(document).on('mouseover', '.bottom', function(){
$(".top").addClass("covered");
});
$(document).on('mouseout', '.top', function(){
$(".top").removeClass("covered");
});
});
</script>
</head>
<body>
<div id="container">
<div class="top"></div>
<div class="bottom"></div>
</div>
</body>
</html>

还有 fiddle :https://jsfiddle.net/beekvang/mpecfc1n/

关于javascript - JS/jQuery : Reverse animate triggered by hover?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43866791/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com