-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtestGame.html
39 lines (39 loc) · 1.91 KB
/
testGame.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Comment-allez-vous</title>
<link rel='stylesheet' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/cupertino/jquery-ui.css'/>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js'></script>
<script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js'></script>
<link rel='stylesheet' href='stylesheets/cav.css'/>
<script src='scripts/cav.js'></script>
<script src="scripts/mustache.js"></script>
<script src="scripts/cav.game.js"></script>
<script type="text/javascript">
$(document).ready(function () {
Cav.Game.Switch(cavMsg = {
Xmlns: "",
FunctionName: "GameStart",
Turn: 1,
PokerCards: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13],
PicMapping: ["images/TmpGirl/Joker.jpg", "images/TmpGirl/Beauty01.jpg", "images/TmpGirl/Beauty02.jpg", "images/TmpGirl/Beauty03.jpg", "images/TmpGirl/Beauty04.jpg", "images/TmpGirl/Beauty05.jpg", "images/TmpGirl/Beauty06.jpg", "images/TmpGirl/Beauty07.jpg", "images/TmpGirl/Beauty08.jpg", "images/TmpGirl/Beauty09.jpg", "images/TmpGirl/Beauty10.jpg", "images/TmpGirl/Beauty11.jpg", "images/TmpGirl/Beauty12.jpg", "images/TmpGirl/Beauty13.jpg"],
Index1: 0,
Index2: 0
});
});
</script>
</head>
<body>
<div id="board-area" style=" width:1000px; height:600px;"></div>
<div id="HandCardTemplate">
<div class="Poker DeckPosition" id="{{Id}}">
<div id="Pic" class="Beauty" style="background-image:url({{ImgUrl}})">
<!--<div>Id : {{Id}}</div>
<div>No : {{No}}</div>
<div>Suit : {{Suit}}</div>-->
</div>
</div>
</div>
</body>
</html>