css打造一个井字连珠游戏代码
代码语言:html
所属分类:游戏
代码描述:css打造一个井字连珠游戏代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700'>
<style>
@charset "UTF-8";
/* Variables
-------------------------------------------------------------- */
/* Body and Notice styling
-------------------------------------------------------------- */
body {
color: #b6b5ca;
font-family: 'Arial', sans-serif;
margin: 0;
text-align: center;
}
h5 {
font-weight: 400;
padding: 0 20px;
}
/* Tic-tac-toe game
-------------------------------------------------------------- */
.tic-tac-toe {
font-family: 'Open Sans', sans-serif;
height: 300px;
overflow: hidden;
margin: 50px auto 30px auto;
position: relative;
width: 300px;
}
@media (min-width: 450px) {
.tic-tac-toe {
height: 450px;
width: 450px;
}
}
.tic-tac-toe input[type="radio"] {
display: none;
}
.tic-tac-toe input[type="radio"]:checked + label {
cursor: default;
z-index: 10 !important;
}
.tic-tac-toe input[type="radio"].player-1 + label:after {
content: "";
}
.tic-tac-toe input[type="radio"].player-2 + label:after {
content: "";
}
.tic-tac-toe input[type="radio"].player-1:checked + label:after, .tic-tac-toe input[type="radio"].player-2:checked + label:after {
opacity: 1;
}
.tic-tac-toe input[type="radio"].player-1:checked + label {
background-color: #dc685a;
}
.tic-tac-toe input[type="radio"].player-2:checked + label {
background-color: #ecaf4f;
}
.tic-tac-toe input[type="radio"].turn-1 + label {
z-index: 1;
}
.tic-tac-toe input[type="radio"].turn-2 + label {
z-index: 2;
}
.tic-tac-toe input[type="radio"].turn-3 + label {
z-index: 3;
}
.tic-tac-toe input[type="radio"].turn-4 + label {
z-index: 4;
}
.tic-tac-toe input[type="radio"].turn-5 + label {
z-index: 5;
}
.tic-tac-toe input[type="radio"].turn-6 + label {
z-index: 6;
}
.tic-tac-toe input[type="radio"].turn-7 + label {
z-index: 7;
}
.tic-tac-toe input[type="radio"].turn-8 + label {
z-index: 8;
}
.tic-tac-toe input[type="radio"].turn-9 + label {
z-index: 9;
}
.tic-tac-toe input[type="radio"].turn-1 + label {
display: block;
}
.tic-tac-toe input[type="radio"].turn-1:checked ~ .turn-2 + label {
display: block;
}
.tic-tac-toe input[type="radio"].turn-2:checked ~ .turn-3 + label {
display: block;
}
.tic-tac-toe input[type="radio"].turn-3:checked ~ .turn-4 + label {
display: block;
}
.tic-tac-toe input[type="radio"].turn-4:checked ~ .turn-5 + label {
display: block;
}
.tic-tac-toe input[type="radio"].turn-5:checked ~ .turn-6 + label {
display: block;
}
.tic-tac-toe input[type="radio"].turn-6:checked ~ .turn-7 + label {
display: block;
}
.tic-tac-toe input[type="radio"].turn-7:checked ~ .turn-8 + label {
display: block;
}
.tic-tac-toe input[type="radio"].turn-8:checked ~ .turn-9 + label {
display: block;
}
.tic-tac-toe input[type="radio"].left + label {
left: 0;
}
.tic-tac-toe input[type="radio"].top + label {
top: 0;
}
.tic-tac-toe input[type="radio"].middle + label {
left: 100px;
}
.tic-tac-toe input[type="radio"].right + label {
left: 200px;
}
.tic-tac-toe input[type="radio"].center + label {
top: 100px;
}
.tic-tac-toe input[type="radio"].bottom + label {
top: 200px;
}
@media (min-width: 450px) {
.tic-tac-toe input[type="radio"].middle + label {
left: 150px;
}
.tic-tac-toe input[type="radio"].right + label {
left: 300px;
}
.tic-tac-toe input[type="radio"].center + label {
top: 150px;
}
.tic-tac-toe input[type="radio"].bottom + label {
top: 300px;
}
}
.tic-tac-toe input[type="radio"]:checked ~ input[type="radio"]:checked ~ input[type="radio"]:checked ~
input[type="radio"]:checked ~ input[type="radio"]:checked ~ input[type="radio"]:checked ~
input[type="radio"]:checked ~ input[type="radio"]:checked ~ input[type="radio"]:checked ~ .end {
display: block;
}
.tic-tac-toe input[type="radio"]:checked ~ input[type="radio"]:checked ~ input[type="radio"]:checked ~
input[type="radio"]:checked ~ input[type="radio"]:checked ~ input[type="radio"]:checked ~
input[type=&qu.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0