jQuery 是一个快速、小巧且功能丰富的 JavaScript 库,它简化了 HTML 文档遍历、事件处理、动画和 Ajax 交互。jQuery 摆动(Swing)通常指的是使用 jQuery 实现的元素摆动动画效果。
jQuery 摆动动画可以通过多种方式实现,常见的类型包括:
摆动动画常用于以下场景:
以下是一个使用 jQuery 实现左右摆动动画的示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery Swing Example</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
.swing-element {
width: 100px;
height: 100px;
background-color: red;
margin: 50px;
}
</style>
</head>
<body>
<div class="swing-element"></div>
<script>
$(document).ready(function() {
$('.swing-element').hover(
function() {
$(this).animate({ marginLeft: '+=20px' }, 200).animate({ marginLeft: '-=20px' }, 200);
},
function() {
$(this).stop(true, true);
}
);
});
</script>
</body>
</html>
原因:
解决方法:
requestAnimationFrame
替代 setTimeout
或 setInterval
,以确保动画在每一帧中更新。$(document).ready(function() {
$('.swing-element').hover(
function() {
$(this).css({
animation: 'swing 0.4s infinite alternate'
});
},
function() {
$(this).css('animation', '');
}
);
});
@keyframes swing {
from { transform: translateX(0); }
to { transform: translateX(20px); }
}
通过以上方法,可以有效地解决 jQuery 摆动动画不流畅的问题。
领取专属 10元无门槛券
手把手带您无忧上云