-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (29 loc) · 1.26 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
<!DOCTYPE HTML>
<html>
<head>
<title>KULKER :: HTML 5 Game - Backgammon</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
<script src="js/jquery-1.7.1.min.js"></script>
</head>
<body onmousedown="return false;" onload="init()">
<input type="button" value="New Game" onclick="BGHUserPiece = 'p';
newGame();toggleUserOrder()" />
<input type="button" value="New Game (other)" onclick="BGHUserPiece = 's';
newGame();toggleUserOrder()" />
<!--<input type="button" value="Sonraki Oyuncuya Geç" onclick="toggleUserOrder()" />-->
<input type="button" value="Undo" onclick="undoMovie()" />
<br /> Next User (color): <input type=text readonly size=4 id='userOrderInfo' />
| <input type="button" value="Roll Dice" onclick="rollDice()" />
<input type="button" value="Hide Dice" onclick="diceLayer.hide()" />
<div id="container"></div>
<script src="js/kinetic-v5.1.0.min.js"></script>
<script src="js/bgammon.js" defer="defer"></script>
</body>
</html>