91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

vue實現打地鼠小游戲的方法是什么

發布時間:2020-08-27 10:07:25 來源:億速云 閱讀:168 作者:小新 欄目:web開發

小編給大家分享一下vue實現打地鼠小游戲的方法是什么,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

實現打地鼠小游戲的具體代碼

效果圖如下:

vue實現打地鼠小游戲的方法是什么

代碼如下:

<template>
 <p class="game">
 <h3>打地鼠游戲</h3>
 <p class="wraper">
 <p class="item" v-for="n in TOTAL" :key="n">
 <p :style="{'visibility': random === n ? 'visible' : 'hidden'}" @click="clickItem">{{n}}號地鼠</p>
 </p>
 </p>
 <p class="scoped">
 <p class="set">
 <p>設置參數</p>
 <p>
 速度: <input type="number" v-model="setSpeed">
 </p>
 <p>
 總數:<input type="number" v-model="setNum">
 </p>
 <p>
 <button @click="playGame">開始</button>
 </p>
 </p>
 <p class="count set">
 <h4>統計分數面板</h4>
 <h4>總數: {{TOTAL}}</h4>
 <h4>擊中: {{clickNum}}</h4>
 <h4>擊中率: {{level}}%</h4>
 </p>
 </p>
 </p>
</template>
 
<script>
 
export default {
 name: 'App',
 data () {
 return {
 clickFlag: true, // 單個地鼠只能點擊一次
 setNum: 40, // 綁定設置地洞數量
 setSpeed: 1000, // 綁定設置地鼠出現速度
 speed: 2000, // 地鼠出現速度
 random: '', // 隨機出現的地鼠位置
 TOTAL: 40, // 地鼠總數
 count: 0, // 統計總共出現了多少次地鼠同于判斷不能大于總數
 clickNum: 0, // 點中地鼠統計
 timmerId: null
 };
 },
 computed: {
 // 統計打中的地鼠數量
 level: function () {
 let num = ((this.clickNum / this.TOTAL) * 100).toFixed(2) || 0;
 return num;
 }
 },
 created () {
 },
 mounted () {
 },
 methods: {
 // 開始游戲
 playGame () {
 this.random = '';
 this.speed = parseInt(this.setSpeed);
 this.TOTAL = parseInt(this.setNum);
 clearInterval(this.timmerId);
 this.timmerId = setInterval(() => {
 this.random = Math.floor(Math.random() * this.TOTAL + 1);
 this.clickFlag = true; // 開放點擊
 this.count++;
 if (this.count >= this.TOTAL) {
 clearInterval(this.timmerId);
 }
 }, this.speed);
 },
 // 點擊地鼠
 clickItem () {
 if (this.clickFlag) {
 (this.count < this.TOTAL) && this.clickNum++;
 this.clickFlag = false;
 }
 }
 }
};
</script>
<style lang="less" scoped>
.game {
 border: 1px solid #ccc;
 width: 1200px;
 padding: 10px;
 user-select: none;
 &::after {
 content: "";
 display: block;
 clear: both;
 }
 h3 {
 font-size: 16px;
 color: #eee;
 padding: 10px 0;
 margin-bottom: 20px;
 border-bottom: 1px solid #ccc;
 }
 .wraper {
 width: 900px;
 float: left;
 }
 .scoped {
 width: 260px;
 height: 540px;
 float: left;
 padding-left: 15px;
 border-left: 1px solid #ccc;
 h4 {
 font-size: 16px;
 color: #fff;
 }
 .set {
 height: 200px;
 width: 100%;
 border: 1px solid #ccc;
 p {
 padding: 10px;
 text-align: center;
 color: #fff;
 font-size: 16px;
 button {
 width: 90%;
 }
 }
 }
 .count {
 .set;
 margin-top: 20px;
 padding-top: 25px;
 text-align: center;
 line-height: 40px;
 h4 {
 font-weight:normal;
 }
 }
 }
 .item {
 display: inline-block;
 height: 100px;
 width: 100px;
 border-radius: 50px;
 margin: 0 10px 10px 0;
 text-align: center;
 line-height: 100px;
 font-size: 20px;
 border: 1px solid #ccc;
 p {
 height: 100%;
 background: #eee;
 border-radius: 50px;
 }
 }
}
</style>

看完了這篇文章,相信你對vue實現打地鼠小游戲的方法是什么有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

竹山县| 道孚县| 济南市| 五寨县| 龙山县| 贵港市| 云霄县| 容城县| 贺兰县| 绿春县| 松滋市| 星座| 白银市| 乡城县| 宁德市| 西乌| 郑州市| 桃园县| 确山县| 沙雅县| 达尔| 宁晋县| 台山市| 美姑县| 苍南县| 贵港市| 库尔勒市| 淮安市| 崇左市| 保靖县| 荣成市| 神农架林区| 嘉禾县| 湘潭市| 阿城市| 巴林右旗| 安图县| 集安市| 宁强县| 腾冲县| 通许县|