1 Star 0 Fork 1

wandada / 那些年想完成的麻将游戏

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
wandada 提交于 2017-08-08 16:29 . js 和html页面
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="js/game.js"></script>
<style>
.table{
margin: auto;
width: 900px;
height: 600px;
background-image: url(img/backgroud.jpg);
background-position: 0px -130px;
background-repeat: no-repeat;
}
#frontPlayer
{
margin: auto;
width: 700px;
height: 75px;
}
#frontPlayer img{
width: 43px;
}
#leftPlayer{
width: 100px;
height: 450px;
float: left;
}
#leftPlayer img{
margin: -1px;
margin-left: 80px;
vertical-align: top;}
#playcard{
margin-left: 70px;
width: 460px;
height: 400px;
float: left;
}
#playcard img{
height: 55px;
width: 43;
float: left;
}
#rightPlayer{
margin-left: 80px;
width: 15px;
height: 450px;
float: left;
}
#rightPlayer img{
margin: -1px;
vertical-align: top;}
#mySelf{
clear: both;
margin: auto;
width: 700px;
height: 75px;
}
#mySelf div{
float: left;
margin-bottom: 0px;
}
#mySelf img{
width: 43px;
height: 55px;
margin-left: -2px;
}
</style>
</head>
<body onload="start()">
<div class="table">
<div id="frontPlayer">
</div>
<div id="leftPlayer">
</div>
<div id="playcard">
</div>
<div id="rightPlayer">
</div>
<div id="mySelf">
<div id="tongzi"></div>
<div id="tiaozi"></div>
<div id="wanzi"></div>
<div id="fengzi"></div>
<div id="zhongfabai"></div>
</div>
</div>
</body>
</html>
JavaScript
1
https://gitee.com/wandada1146/Mj.git
git@gitee.com:wandada1146/Mj.git
wandada1146
Mj
那些年想完成的麻将游戏
master

搜索帮助