gpt4 book ai didi

javascript - JS/JQuery : Text changes for a few seconds and then back to original

转载 作者:行者123 更新时间:2023-11-27 22:58:41 25 4
gpt4 key购买 nike

我有一个

来保存我的分数,但我希望当它正确时我的文本更改为 +1,这样我就可以看到我是对的,然后立即更改回我的分数。使用我的代码,他立即显示点,然后淡出并再次淡入,因此 +1 永远不会显示。有人可以帮忙吗?

if (x >= y){ 
score++;
$("#counter").html("+1");
$("#counter").fadeOut(3000);
$("#counter").fadeIn(3000);
$("#counter").html("POINTS" + score);
}

最佳答案

complete-callback 中的

.fadeOut .fadeIn 完成后将调用的 fadeIn

if (x >= y) {
score++;
$("#counter").html("+1");
$("#counter").fadeOut(3000, function() {
$("#counter").fadeIn(3000);
$("#counter").html("POINTS" + score);
});
}

关于javascript - JS/JQuery : Text changes for a few seconds and then back to original,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37341385/

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