原生js实现一个简单的扫雷游戏代码
代码语言:html
所属分类:游戏
代码描述:原生js实现一个简单的扫雷游戏代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=VT323&display=swap" rel="stylesheet">
<style>
:root {
--tileSize: 60px;
--boardSize: 0px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "VT323", monospace;
}
*::-moz-selection {
background: rgba(127, 140, 141, 0.6);
}
*::selection {
background: rgba(127, 140, 141, 0.6);
}
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #ffebc5;
}
.btn {
background: #c9c9c9;
padding: 0.5rem 1rem;
text-decoration: none;
color: #969696;
font-size: 1.5rem;
text-transform: uppercase;
-webkit-user-select: none;
-moz-user-select: none;.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0