通過javascript實(shí)現(xiàn)掃雷游戲代碼實(shí)例
這篇文章主要介紹了通過javascript實(shí)現(xiàn)掃雷游戲代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
html代碼:
<div id="mine">
<div class="level">
<button type="button">初級</button>
<button type="button">中級</button>
<button type="button">高級</button>
<button type="button">重新開始</button>
</div>
<div class="gameBox"></div>
<div class="info">
剩余雷數(shù):<span class="mineNum"></span>
</div>
</div>
css代碼:
#mine {
margin: 50px auto;
}
.level {
text-align: center;
margin-bottom: 10px;
}
.level button {
padding: 5px 15px;
background-color: cornflowerblue;
border: none;
color: #fff;
border-radius: 3px;
outline: none;
cursor: pointer;
}
.level button.active {
background-color: #00abff;
}
.info {
margin-top: 10px;
text-align: center;
}
table {
border-spacing: 1px;
background: #929196;
margin: 0 auto;
}
td {
padding: 0;
width: 20px;
height: 20px;
background: #ccc;
border: 2px solid;
border-color: #fff #a1a1a1 #a1a1a1 #fff;
text-align: center;
line-height: 20px;
font-weight: bold;
}
td.zero {
border-color: #D9D9D9;
background: #D9D9D9;
}
td.one {
border-color: #D9D9D9;
background: #D9D9D9;
color: #0332fe;
}
td.two {
border-color: #D9D9D9;
background: #D9D9D9;
color: #019f02;
}
td.three {
border-color: #D9D9D9;
background: #D9D9D9;
color: #ff2600;
}
td.four {
border-color: #D9D9D9;
background: #D9D9D9;
color: #93208f;
}
td.five {
border-color: #D9D9D9;
background: #D9D9D9;
color: #019f02;
}
td.six {
border-color: #D9D9D9;
background: #D9D9D9;
color: #ff3fff;
}
td.seven {
border-color: #D9D9D9;
background: #D9D9D9;
color: #3fffbf;
}
td.eight {
border-color: #D9D9D9;
background: #D9D9D9;
color: #22ee0f;
}
.mine {
background: #d9d9d9 url(./mine.png) no-repeat center;
background-size: cover;
}
.flag {
background: #ccc url(./flag.png) no-repeat center;
background-size: cover;
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
JavaScript利用切片實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳
斷點(diǎn)續(xù)傳即在文件上傳期間因?yàn)橐恍┰蚨鴮?dǎo)致上傳終止時(shí),下次再次上傳同一個(gè)文件就從上一次上傳到一半的地方繼續(xù)上傳,以節(jié)省上傳時(shí)間。本文將利用切片實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳功能,快來跟隨小編一起學(xué)一學(xué)吧2022-03-03
JavaScript實(shí)現(xiàn)Date()日期格式化的3種常用方法
Date()日期對象是一個(gè)構(gòu)造函數(shù),必須使用new來調(diào)用創(chuàng)建我們的日期對象,下面這篇文章主要給大家介紹了關(guān)于JavaScript實(shí)現(xiàn)Date()日期格式化的3種常用方法,需要的朋友可以參考下2024-05-05
layui radio單選限制下一個(gè)radio單選的實(shí)例
今天小編就為大家分享一篇layui radio單選限制下一個(gè)radio單選的實(shí)例,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-09-09
javascript generator生成器函數(shù)與asnyc/await語法糖
本文主要介紹了javascript generator生成器函數(shù)與asnyc/await語法糖,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-03-03

