jquery实现纸牌扑克牌消消乐小游戏代码

代码语言:html

所属分类:游戏

代码描述:jquery实现纸牌扑克牌消消乐小游戏代码

代码标签: 扑克牌 消消 小游戏

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!doctype html>
<html>
<head>
   
<meta charset="UTF-8">
   
<title>jQuery扑克牌消消乐游戏代码</title>
   
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery-3.2.1.min.js"></script>
   
<style type="text/css">
        body
{
           
background: white;
       
}
       
.pai {
           
color: #000000;
           
display: inline-block;
           
width: 50px;
           
height: 70px;
           
border: 1px #000 solid;
           
font: 20px "arial","times new roman";
           
cursor: default;
           
background-color: #fff;
           
text-align: center;
           
-webkit-user-select: none;
           
-moz-user-select: none;
           
-o-user-select: none;
           
-ms-user-select: none;
           
user-select: none;
       
}

       
[dui] {
           
background-color: #eee;
           
pointer-events: none;
       
}

        table td
{
           
padding: 0;
       
}


   
</style>
</head>
<body style="text-align:center;">
   
<h1 style="font-size:50px;margin:15px 0;">纸牌消消乐</h1>
   
<table class="dessd" align="center">
       
<tr><td></td>&l.........完整代码请登录后点击上方下载按钮下载查看

网友评论0