-
Notifications
You must be signed in to change notification settings - Fork 1
/
room.php
69 lines (65 loc) · 2.33 KB
/
room.php
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/room.css">
</head>
<body>
<div class="box">
<!-- 桌子,人物 ,位置-->
<div class="desk">
<button class="prep">请 准 备</button>
<!-- <button class="deal_poker">发 牌</button> -->
<div class="qianglandlord">
<button class="qiang">抢地主</button>
<button class="buqiang">不抢</button>
</div>
<div class="play-poker">
<button class="no">不要</button>
<button class="yes">出牌</button>
</div>
<a href="javascript:;"><img src="./images/big_desk.jpg" alt=""></a>
</div>
<div class="peasant1 person" id='next'>
<span class='name'></span><a href="javascript:;"><img src="./images/peasant_1.jpg" alt=""></a><i></i>
</div>
<div class="peasant2 person" id="prev">
<span class='name'></span><a href="javascript:;"><img src="./images/peasant_1.jpg" alt=""></a><i></i>
</div>
<div class="peasant3 person" id="my">
<span class='name'></span><a href="javascript:;"><img src="./images/peasant_1.jpg" alt=""></a><i></i>
</div>
<!-- 三张地主牌 -->
<div class="landlord3">
<ul>
</ul>
</div>
<!-- 手里扑克牌 -->
<div class="poker">
<ul>
<!-- 出牌提示 -->
<!-- <i class="prompt">大你</i> -->
<!-- <i class="prompt">不要</i> -->
</ul>
</div>
<!-- 刚打出的牌 -->
<div class="just_play">
<ul>
</ul>
</div>
</div>
<script src="./js/jquery.min.js"></script>
<script>
var my={};
my.roomid= <?php echo $_GET['rid']; ?>;
my.userid= <?php echo $_GET['uid']; ?>;
my.username= <?php echo $_GET['uname']; ?>;
var server_addr="120.77.200.21";
</script>
<script src="./js/room.js"></script>
</body>
</html>