溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

javascript如何實現(xiàn)點擊星星小游戲

發(fā)布時間:2021-04-12 10:05:29 來源:億速云 閱讀:224 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)javascript如何實現(xiàn)點擊星星小游戲,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

具體內(nèi)容如下

<head>
 <meta charset="UTF-8">
 <title>Document</title>
 <style type="text/css">
 #d2{
 width:100px;
 height:20px;
 border:1px solid red;
 display:inline-block;
 }
 #d3{
 display:inline-block;
 background:yellow;
 height:20px;
 }
 </style>
 <script type="text/javascript">
 <!--
 var dingshiqi; //定時器
 var count=0; //記錄星星的個數(shù)
 var n=0; //記錄游戲時間的變量。
 var sj; //時間定時器(解決一直按開始游戲bug)
 function StarGame(){ //開始游戲
 window.clearInterval(sj); //清除時間定時器
 window.clearInterval(dingshiqi);//清楚定時器
 dingshiqi=window.setInterval("star()",400);
 sj=window.setInterval("shijian()",1000);
 }
 //創(chuàng)建星星
 function star(){
 var obj=document.createElement("img");
 //給星星添加src屬性
 obj.src="image.png"
 //隨機(jī)星星大小
 var w=Math.floor(Math.random()*80+20);
 obj.width=w;
 obj.height=w;
 //隨機(jī)位置
 var x=Math.floor(Math.random()*1166+100);
 var y=Math.floor(Math.random()*500+100);
 obj.style.position="absolute";
 obj.style.top=y+"px";
 obj.style.left=x+"px";
 //放到body中
 document.body.appendChild(obj);
 //添加onclick點擊事件(綁定的onclick 不需要加";")
 obj.οnclick=removeStar;
 //控制大于20個星星游戲結(jié)束
 count++;
 var sp=document.getElementById("d3");
 sp.style.width=count*5+"px";
 if(count>20){
 alert("大于20個星星游戲結(jié)束");
 window.clearInterval(dingshiqi);
 location.reload(); //重新加載
 }
 //放到body中
 document.body.appendChild(obj);
 }
 //點擊刪除星星
 function removeStar(){
 this.parentNode.removeChild(this);
 count--; //點擊星星刪除,都要count-1.
 var sp=document.getElementById("d3");
 sp.style.width=count*5+"px";
 }
 //點擊暫停游戲。
 function zanting(){
 alert("暫停游戲");
 }
 //記錄游戲時間的函數(shù)
 function shijian(){
 n++;
 var obj=document.getElementById("d1");
 obj.innerHTML="游戲進(jìn)行了"+n+"秒"
 }
 //-->
 </script>
 </head>
 <body>
 <input type="button" value="開始游戲" οnclick="StarGame()">
 <input type="button" value="暫停游戲" οnclick="zanting()">
 <span id="d1">游戲進(jìn)行了0秒</span>
 <span id="d2"><span id="d3"></span></span>
 </body>
</html>

關(guān)于“javascript如何實現(xiàn)點擊星星小游戲”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI