python打地鼠代码_基于vue实现简易打地鼠游戏

本文实例为大家分享了vue实现简易打地鼠游戏的具体代码,供大家参考,具体内容如下

打地鼠简易版

*{margin: 0;padding: 0;}

#main{border: 1px solid #000;}

.ds{ float: left;border: 1px solid #000;box-sizing: border-box;}

.dd{background-color: #3E8F3E;}

倒计时{{t}}
分数{{fs}}
游戏结束

var vm=new Vue({

el:'#app',

data:{

x:5,//地鼠格列数

y:5,//地鼠格行数

w:100,//地鼠格宽度

h:100,//地鼠格高度

t:10,//时间

dsq:null,

dsq2:null,

s:0,//地鼠位置

fs:0,

ys:true,//用于解决游戏结束点击继续得分问题

ty:false//用于解决连击得分问题

},

methods:{

da(i){

if(this.s==i && this.ys && this.ty){

this.ty=false;

this.fs++;

}

}

},

created(){

this.dsq=setInterval(()=>{

this.t--;

if(this.t<=0){

clearInterval(this.dsq);

clearInterval(this.dsq2);

this.ys=false;

}

},1000);

this.dsq2=setInterval(()=>{

this.ty=true

this.s=parseInt(Math.random()*this.x*this.y);

},2000);

}

})

简易升级版,多个地鼠,打对得分,打错扣分

打地鼠简易版升级版

*{margin: 0;padding: 0;}

#main{border: 1px solid #000;}

.ds{ float: left;border: 1px solid #000;box-sizing: border-box;}

.dd{background-color: #3E8F3E;}

.dc{background-color: #AC2925;}

倒计时{{t}}
分数{{fs}}
游戏结束
{{arr2[arr1.indexOf(v-1)]}}

var vm=new Vue({

el:'#app',

data:{

x:5,

y:5,

w:100,

h:100,

t:30,

dsq:null,

dsq2:null,

s:4,

fs:0,

ys:true,

arr1:[],

arr2:[],

arr3:[]

},

methods:{

da(i){

if(this.arr1.includes(i)&& this.ys && !this.arr3.includes(i)){

this.arr3.push(i);

if(this.arr2[this.arr1.indexOf(i)]==1){

this.fs++;

}else{

this.fs--;

}

}

},

sjs(){

var cc=parseInt(Math.random()*this.x*this.y);

if(this.arr1.includes(cc)){

this.sjs();

}else{

this.arr1.push(cc);

this.arr2.push(parseInt(Math.random()*2));

}

}

},

created(){

this.dsq=setInterval(()=>{

this.t--;

if(this.t<=0){

clearInterval(this.dsq);

clearInterval(this.dsq2);

this.ys=false;

}

},1000);

this.dsq2=setInterval(()=>{

this.arr1=[];

this.arr2=[];

this.arr3=[];

for(var i=0;i

this.sjs();

}

},2000);

}

})

更多有趣的经典小游戏实现专题,分享给大家:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持随便开发网。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值