我想创建一个简单的游戏,您必须从一个平台移动到另一个平台,而又不会掉线。基本上,当您将鼠标悬停在第一个平台上时,游戏就会开始,一旦到达最后一个平台,您就赢了。如果您在任何时候悬停,就会自动失败。

我正在开发我的第一个原型,但似乎无法使用同一类将悬停效果结合到多个元素上。每当我离开第一个平台时,都会触发该事件,尽管该事件与同一类的另一个元素重叠。有办法防止这种情况吗?

这是我的代码:



$('.platform-win').mouseenter(function() {
  alert("You Win!");
});
$('.platform').mouseleave(function() {
  alert("You Lose!");
});

    /*Size & Positioning*/
.platform-container {
  width: 1400px;
  height: 700px;
  position: relative;
}
.platform-win {
  width: 90px;
  height: 90px;
  left: 1305px;
  top: 605px;
  position: absolute;
  z-index: 1;
}
#one{
  width: 1400px;
  height: 100px;
  position: absolute;
}
#two{
  width: 100px;
  height: 700px;
  position: absolute;
  left: 1300px;
}
/*Animations*/



/*Colors and Fonts*/
.platform-container {
  background-color: grey;
}
.platform-win {
  background-color: green;
}
#one{
  background-color: rgba(255,0,0,0.5);
}
#two{
  background-color: rgba(255,0,0,0.5);
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="platform-container">
  <div class="platform-win"></div>
  <div class="platform" id="one"></div>
  <div class="platform" id="two"></div>
</div>

最佳答案

使用relatedTarget

 $('.platform').mouseleave(function(e) {
        if ($(e.relatedTarget).hasClass('platform-container')) {
            alert("You loose");
        }
 });

09-17 12:16