别踩白块游戏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了别踩白块游戏相关的知识,希望对你有一定的参考价值。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>别踩白块</title>
<style>
#score{
text-align: center;
}
h2{
text-align: center;
}
div{
margin: 0 auto;
width: 100px;
height: 100px;
}
#main{
width: 400px;
height: 400px;
background: white;
border: 2px solid gray;
margin: 0 auto;
position: relative;
overflow: hidden;
}
#con{
width: 100%;
height: 400px;
position: relative;
top: -100px;
border-collapse: collapse;
}
.row{
height: 100px;
width: 100%;
}
.cell{
height: 100px;
width: 100px;
float: left;
}
.black{
background: black;
}
</style>
</head>
<body>
<h2>score</h2>
<h2 id="score">0</h2>
<div id="main">
<div id="con"></div>
</div>
</body>
以上是关于别踩白块游戏的主要内容,如果未能解决你的问题,请参考以下文章
C语言项目实战:《别踩白块游戏》零基础项目,137 行源代码示例