鼠标悬停三次尝试

Mouseover with three attempts

我有这个代码:

mug.addEventListener('mouseover', function () {
    if (//I don't know what to put in here..) {
        console.log('game over');
    }
}

我基本上想说的是,当用户将鼠标悬停在图像上 3 次时,游戏就结束了。

谢谢!

做起来很简单:

var mouseOverCount = 0;
mug.addEventListener('mouseover', function () {
    if (mouseOverCount >= 2) {
        console.log('game over');
    }
    mouseOverCount++;
});

我建议您阅读(或观看)一些初学者编程教程,这样您就会了解基本概念。你可以在互联网上找到很多。