基于vue實(shí)現(xiàn)簡(jiǎn)易打地鼠游戲
本文實(shí)例為大家分享了vue實(shí)現(xiàn)簡(jiǎn)易打地鼠游戲的具體代碼,供大家參考,具體內(nèi)容如下
<!DOCTYPE html><html> <head> <meta charset='utf-8'> <title>打地鼠簡(jiǎn)易版</title> <script src='http://m.4tl426be.cn/bcjs/js/vue.js'></script> <style type='text/css'> *{margin: 0;padding: 0;} #main{border: 1px solid #000;} .ds{ float: left;border: 1px solid #000;box-sizing: border-box;} .dd{background-color: #3E8F3E;} </style> </head> <body> <div id='app'> <div>倒計(jì)時(shí){{t}}</div> <div>分?jǐn)?shù){{fs}}</div> <div v-if='t<=0'>游戲結(jié)束</div> <div v-bind:style='{width:x*w+’px’,height:y*h+’px’}'> <div v-bind: v-on:click='da(v)' v-for='v in x*y' v-bind:style='{width:w+’px’,height:h+’px’}'></div> </div> </div> <script type='text/javascript'> var vm=new Vue({ el:’#app’, data:{ x:5,//地鼠格列數(shù) y:5,//地鼠格行數(shù) w:100,//地鼠格寬度 h:100,//地鼠格高度 t:10,//時(shí)間 dsq:null, dsq2:null, s:0,//地鼠位置 fs:0, ys:true,//用于解決游戲結(jié)束點(diǎn)擊繼續(xù)得分問(wèn)題 ty:false//用于解決連擊得分問(wèn)題 }, 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); } }) </script> </body></html>
簡(jiǎn)易升級(jí)版,多個(gè)地鼠,打?qū)Φ梅郑蝈e(cuò)扣分
<!DOCTYPE html><html> <head> <meta charset='utf-8'> <title>打地鼠簡(jiǎn)易版升級(jí)版</title> <script src='http://m.4tl426be.cn/bcjs/js/vue.js'></script> <style type='text/css'> *{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;} </style> </head> <body> <div id='app'> <div>倒計(jì)時(shí){{t}}</div> <div>分?jǐn)?shù){{fs}}</div> <div v-if='t<=0'>游戲結(jié)束</div> <div v-bind:style='{width:x*w+’px’,height:y*h+’px’}'> <div v-bind: v-on:click='da(v-1)' v-for='v in x*y' v-bind:style='{width:w+’px’,height:h+’px’}'>{{arr2[arr1.indexOf(v-1)]}}</div> </div> </div> <script type='text/javascript'> 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.s;i++){ this.sjs(); } },2000); } }) </script> </body></html>
更多有趣的經(jīng)典小游戲?qū)崿F(xiàn)專題,分享給大家:
C++經(jīng)典小游戲匯總
python經(jīng)典小游戲匯總
python俄羅斯方塊游戲集合
JavaScript經(jīng)典游戲 玩不停
java經(jīng)典小游戲匯總
javascript經(jīng)典小游戲匯總
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. React+umi+typeScript創(chuàng)建項(xiàng)目的過(guò)程2. ASP調(diào)用WebService轉(zhuǎn)化成JSON數(shù)據(jù),附j(luò)son.min.asp3. php測(cè)試程序運(yùn)行速度和頁(yè)面執(zhí)行速度的代碼4. php網(wǎng)絡(luò)安全中命令執(zhí)行漏洞的產(chǎn)生及本質(zhì)探究5. ASP.NET Core 5.0中的Host.CreateDefaultBuilder執(zhí)行過(guò)程解析6. 無(wú)線標(biāo)記語(yǔ)言(WML)基礎(chǔ)之WMLScript 基礎(chǔ)第1/2頁(yè)7. Warning: require(): open_basedir restriction in effect,目錄配置open_basedir報(bào)錯(cuò)問(wèn)題分析8. ASP中常用的22個(gè)FSO文件操作函數(shù)整理9. SharePoint Server 2019新特性介紹10. 三個(gè)不常見(jiàn)的 HTML5 實(shí)用新特性簡(jiǎn)介
