-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (62 loc) · 2.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meat name="applicable-device" content="pc,mobile">
<meta name="renderer" content="webkit">
<meat name="description" content="21点黑杰克小游戏">
<meat name="anthor" content="许欣venoral">
<title>21点黑杰克小游戏</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/img.css">
</head>
<body>
<header>
<h2>BlackJack</h2>
</header>
<main>
<!--庄家 -->
<div id="playerA">
<div class="wrap">
<ul class="banker">
</ul>
</div>
<span class="count countB">0</span>
</div>
<!-- 牌桌 -->
<div id="roundtable">
<div class="wrap">
<span class="role">庄家 余额:<span id="bankerBalance">50</span>$</span>
<div id="selector" data-show="begin rules" data-hide="addCard wager stopCard">
<button id="addCard" class="hide">要牌</button>
<button id="begin">开始</button>
<button id="rules">游戏规则</button>
<span id="wager" class="hide">赌注 10$</span>
<button id="stopCard" class="hide">停牌</button>
</div>
<span class="role">玩家 余额:<span id="balance">100</span>$</span>
</div>
</div>
<!--玩家 -->
<div id="playerB">
<div class="wrap">
<ul class="player">
</ul>
</div>
<span class="count countP">0</span>
</div>
</main>
<!--遮罩层-->
<div class="mask hide">
<div class="promot" id="promot">
</div>
</div>
<footer>Copyright© 2016 venoral</footer>
<script type="text/javascript" src="js/config.js"></script>
<script type="text/javascript" src="js/util.js"></script>
<script type="text/javascript" src="js/interface.js"></script>
<script type="text/javascript" src="js/game.js"></script>
</body>
</html>