“21天好习惯”第一期-1 飞机大战-4
Posted 子卿Up
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了“21天好习惯”第一期-1 飞机大战-4相关的知识,希望对你有一定的参考价值。
javascript: 己方飞机死亡
//己方飞机死亡
var time7 = setInterval(function(){
var gameBox = document.querySelector('.gameBox');
var enemy = document.querySelectorAll('.enemy');
var hero = document.querySelector('.hero');
var j = 0;
for(j;j<enemy.length;j++)
{
if(enemy[j].offsetTop+enemy[j].offsetHeight>=hero.offsetTop&&enemy[j].offsetLeft<=hero.offsetLeft+hero.offsetWidth
&&enemy[j].offsetLeft+enemy[j].offsetWidth>=hero.offsetLeft)
{
alert("游戏结束");
}
}
},1);
效果图
以上是关于“21天好习惯”第一期-1 飞机大战-4的主要内容,如果未能解决你的问题,请参考以下文章