gpt4 book ai didi

javascript - if 语句返回 true,但条件不会触发

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

我的代码中有一个 if 语句,如下所示。当我在控制台日志中检查这两个元素相互碰撞时,if 语句变为 true,但它不会停止我的间隔函数。我想知道什么会导致它无法正常工作?

var animationTimer = setInterval(bladAnimation, 30);

document.onkeydown = function(event) {
if (event.keyCode == 37) {
// <--
fx = -15;
fy = 0;
froskAnimation()
}
if (event.keyCode == 38) {
// opp
fy = -15;
fx = 0;
froskAnimation()
}
if (event.keyCode == 39) {
// -->
fx = 15;
fy = 0;
froskAnimation()
}
if (event.keyCode == 40) {
// ned
fy = 15;
fx = 0;
froskAnimation()
}
}

function froskAnimation() {

Xfrosk = fx + Xfrosk;
Yfrosk = fy + Yfrosk;

if ((Yfrosk + 70 > maxY) || (Yfrosk < minY)) {
Yfrosk = Yfrosk - fy;
}
if ((Xfrosk + 70 > maxX) || (Xfrosk < minX)) {
Xfrosk = Xfrosk - fx;
}

frosk.style.left = Xfrosk + "px";
frosk.style.top = Yfrosk + "px";
console.log(Xfrosk)
}

function bladAnimation() {
Yblad = by + Yblad;

if ((Yblad + 70 > maxY) || (Yblad < minY)) {
by = by * -1;
}

blad.style.top = Yblad + "px";
}

if (blad.x < frosk.x + frosk.width && blad.x + blad.width > frosk.x
&& blad.y < frosk.y + frosk.height && blad.y + blad.height > frosk.y) {
clearInterval(animationTimer);
}

完整代码在这里:https://codepen.io/ctrlvi/pen/jXbJYG

最佳答案

该条件仅在加载 JavaScript 时执行一次。此时条件可能是错误的。您应该在 bladAnimation 结束时移动它(我想您想要做的是当自动移动的 block 碰到另一个 block 时停止它)。

function bladAnimation() {
Yblad = by + Yblad;

if ((Yblad + 70 > maxY) || (Yblad < minY)) {
by = by * -1;
}

blad.style.top = Yblad + "px";

if (blad.x < frosk.x + frosk.width && blad.x + blad.width > frosk.x
&& blad.y < frosk.y + frosk.height && blad.y + blad.height > frosk.y) {
clearInterval(animationTimer);
}

}

关于javascript - if 语句返回 true,但条件不会触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53765019/

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