如何使用 jQuery 在鼠标悬停时为 div 宽度设置动画
答案:使用jQuery animate()
方法
您可以简单地将 jQuery animate()
方法与 mouseenter()
和 mouseleave()
方法结合使用,以在鼠标悬停时为
元素的宽度设置动画。<div>
让我们看一个例子来了解它的基本工作原理:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Animate Div 悬停时的宽度</title>
<style>
.box{
width: 200px;
height: 150px;
background: #f0e68c;
border: 1px solid #a29415;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
var boxWidth = $(".box").width();
$(".box").mouseenter(function(){
$(this).animate({
width: "400"
});
}).mouseleave(function(){
$(this).animate({
width: boxWidth
});
});
});
</script>
</head>
<body>
<p><strong>Note:</strong> Place mouse pointer over the box to play the animation.</p>
<div class="box"></div>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: