第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

js飛機(jī)大戰(zhàn)

js飛機(jī)大戰(zhàn)

哎呀呀哎呦呦 2017-10-27 15:38:51
<!DOCTYPE?html> <html> <head> <meta?charset="UTF-8"> <title>Game?Of?Plan</title> <style> *{ margin:0px; padding:0px; } </style> </head> <body> <script> window.onload=function(){ Game.exe(); } var?Game={ //啟動(dòng)程序 exe:function(){ this.init(); }, //初始化 init:function(){ document.body.style.background='#000'; var?This=this; var?oDiv=document.createElement("div"); oDiv.id='box'; oDiv.style.cssText="width:300px;height:500px;border:10px?solid?#fff;margin:50px?auto;position:relative;"; document.body.appendChild(oDiv); var?hh=document.createElement("h2"); hh.innerHTML="飛機(jī)大戰(zhàn)V1.0"; hh.style.cssText="font-family:'Microsoft?yahei';font-size:26px;color:#fff;margin:50px?auto;text-align:center"; oDiv.appendChild(hh); for(var?i=0;i<4;i++){ var?pp=document.createElement("p"); pp.index=i; pp.style.cssText="font-size:14px;width:150px;height:40px;?margin:50px?auto;background:#fff;color:#000;text-align:center;line-height:40px;cursor:pointer;overflow:hidden;"; var?html=""; pp.onmouseenter=function(){ this.style.background='#FB6A0F'; this.style.color='#000'; } pp.onmouseleave=function(){ this.style.background='#fff'; this.style.color='#000'; } //點(diǎn)擊進(jìn)入第二個(gè)頁面 pp.onclick=function(e){ e=e||window.event; This.start(this.index,oDiv,e); }; switch(i){ case?0: html="簡單難度"; break; case?1: html="中等難度"; break; case?2: html="困難難度"; break; case?3: html="復(fù)仇者飛機(jī)"; pp.style.background='#0f0'; pp.style.color='#000'; pp.style.fontWeight='bold'; pp.onmouseenter=function(){ pp.style.background='#FE3535'; pp.style.color='#0F0505'; } pp.onmouseleave=function(){ pp.style.background='#0f0'; pp.style.color='#000'; } break; } pp.innerHTML=html; oDiv.appendChild(pp); } }, //游戲開始 start:function(index,oGameBox,e){ oGameBox.innerHTML=""; this.plane(oGameBox,e); }, //關(guān)于飛機(jī) plane:function(oGameBox,e){ var?x=e.pageX; var?y=e.pageY; var?oplane=new?Image(); oplane.src="AirplaneResource/plane2.png"; oplane.width=44; oplane.height=45; var?ty=oGameBox.offsetTop+parseInt(oGameBox.style.borderWidth)+oplane.height/2; var?lx=oGameBox.offsetLeft+parseInt(oGameBox.style.borderWidth)+oplane.width/2; //頁面窗口變化情況 window.onresize=function(){ lx=oGameBox.offsetLeft+parseInt(oGameBox.style.borderWidth)+oplane.width/2; } var?top=y-ty; var?left=x-lx; oplane.style.cssText="display:block;position:absolute;top:'+top+'px;left'+left+'px;"; oGameBox.appendChild(oplane); //尋找飛機(jī)在盒子里移動(dòng)范圍 var?leftmin=-oplane.width/2; var?leftmax=oGameBox.clientWidth-oplane.width/2; var?topmin=0; var?topmax=oGameBox.clientHeight-oplane.height; document.onmouseover=function(e){ e=e||window.event; var?top=e.pageY-ty; var?left=e.pageX-lx; //限制飛機(jī)移動(dòng) top=Math.min(top,topmax); top=Math.max(top,topmin); left=Math.min(left,leftmax); left=Math.max(left,leftmin); oplane.style.left=left+'px'; oplane.style.top=top+'px'; }; this.biubiubiu(oplane,oGameBox); }, biubiubiu:function(oplane,oGameBox){ var?timer=setInterval(function(){ var?biu=new?Image(); biu.src="AirplaneResource/bullet1.png"; biu.width=5; biu.height=11; var?top=oplane.offsetTop-biu.height+3; var?left=oplane.offsetLeft+oplane.width/2-parseInt(biu.width/2); biu.style.cssText="display:block;position:absolute;top:'+top+'px;left:'+left+'px;"; oGameBox.appendChild(biu); biu.timer=setInterval(function(){ biu.style.top=biu.offsetTop-10+"px"; if(biu.offsetTop<-biu.height){ clearInterval(biu.timer); biu.parentNode.removeChild(biu); } },13); },100); }, }; </script> </body> </html>我把目前所有代碼都貼上去了,不明白為什么子彈不是從飛機(jī)頭位置出來的 老是卡在左上角,希望大神干貨講解,謝謝
查看完整描述

目前暫無任何回答

  • 0 回答
  • 1 關(guān)注
  • 1542 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)