在 jQuery 中,为 Slot Machine 添加动画可以通过使用 animate()
函数实现。以下是一个简单的示例,展示了如何为 Slot Machine 的旋转轮盘添加动画效果:
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<div class="slot-machine">
<div class="wheel">
<div class="section"></div>
<div class="section"></div>
<div class="section"></div>
</div>
</div>
$(document).ready(function() {
// 获取 Slot Machine 的旋转轮盘
var $wheel = $('.wheel');
// 定义动画参数
var animationDuration = 1000; // 动画持续时间,单位为毫秒
var animationDelay = 200; // 动画延迟时间,单位为毫秒
var animationCount = 3; // 动画循环次数
var animationDirection = 'clockwise'; // 动画方向,顺时针或逆时针
// 定义旋转角度
var rotationAngle = 360 / animationCount;
// 定义动画函数
function rotateWheel() {
if (animationDirection === 'clockwise') {
$wheel.animate({
rotation: '+=' + rotationAngle + 'deg'
}, animationDuration, function() {
// 动画完成后,执行回调函数
if (animationCount > 1) {
animationCount--;
rotateWheel();
}
});
} else {
$wheel.animate({
rotation: '-=' + rotationAngle + 'deg'
}, animationDuration, function() {
// 动画完成后,执行回调函数
if (animationCount > 1) {
animationCount--;
rotateWheel();
}
});
}
}
// 启动动画
rotateWheel();
});
这个示例中,我们定义了一个名为 rotateWheel
的函数,用于控制旋转轮盘的动画效果。通过修改 animationDuration
、animationDelay
、animationCount
和 animationDirection
变量,你可以自定义动画的持续时间、延迟时间、循环次数和方向。