gpt4 book ai didi

javascript - 如何把动画剪短

转载 作者:行者123 更新时间:2023-12-03 07:53:05 25 4
gpt4 key购买 nike

我有一个 div 可以在 js 中的 keydown 事件上移动。松开按键后,它会持续移动一段时间。如何让动画在发布时立即停止?

动画位于带有字符代码的 switch 语句中,我可以在 switch 中使用 keyup 函数吗?

 $(".sprite2").hide();

$(document).keydown(function(key) {
switch(key.which) {

// a
case 65:
$(".sprite2").hide();
$(".sprite").show();
$(".sprite").animate({left: "-=10px"}, 'fast');
$(".sprite2").animate({left: "-=10px"}, 'fast');
break;

// w
case 87:
$(".sprite").animate({top: "-=10px"}, 'fast');
$(".sprite2").animate({top: "-=10px"}, 'fast');
break;

// d
case 68:
$(".sprite2").show();
$(".sprite").hide();
$(".sprite2").animate({left: "+=10px"}, 'fast');
$(".sprite").animate({left: "+=10px"}, 'fast');
break;

// s
case 83:
$(".sprite").animate({top: "+=10px"}, 'fast');
$(".sprite2").animate({top: "+=10px"}, 'fast');
break;

case onkeyup:
$(".sprite").animate()
}
});
});

“ Sprite ”是 html 元素。

我似乎无法让 .add/removeClass 工作,因此我通过添加第二个并隐藏我不想显示的那个来克服这个问题。

它们是相同的,但在相反方向上制作动画时会水平反射(看起来就像向前行走)。

最佳答案

您可以修改 div 的 CSS 属性,而不是使用动画。通过添加您希望其在按下按键时与其当前位置移动的像素量来更新位置。

或者甚至更好。以下是使用 switch 语句在不同按键上按特定方向设置动画的示例:JQuery Example

上述链接中的代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery Move an Element to Left/Right/Up/Down Using Arrow Keys</title>
<style type="text/css">
.box{
width: 100px;
height: 100px;
position: relative;
margin: 200px auto 0;
background: url("../images/mushroom.jpg") yellowgreen;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).keydown(function(e){
switch (e.which){
case 37: //left arrow key
$(".box").finish().animate({
left: "-=50"
});
break;
case 38: //up arrow key
$(".box").finish().animate({
top: "-=50"
});
break;
case 39: //right arrow key
$(".box").finish().animate({
left: "+=50"
});
break;
case 40: //bottom arrow key
$(".box").finish().animate({
top: "+=50"
});
break;
}
});
</script>
</head>
<body>
<p><strong>Note:</strong> Click inside the output viewport and press the arrow keys to move the box.</p>
<div class="box"></div>
</body>
</html>

关于javascript - 如何把动画剪短,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34924312/

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