This is a chess implementation in javascript and a fork of https://github.com/kbjorklu/chess
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
11 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta http-equiv="x-ua-compatible" content="IE=edge">
|
||
|
<meta charset="utf-8">
|
||
|
<title>Chess</title>
|
||
|
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css">
|
||
|
<link rel="stylesheet" href="chess.css">
|
||
|
<link rel="shortcut icon" href="chess.ico">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Chess</h1>
|
||
|
<div id="content">
|
||
|
<div id="chessboard" role="main"></div>
|
||
|
<div id="moves"></div>
|
||
|
<div id="clear"></div>
|
||
|
<div id="help">
|
||
|
<ul>
|
||
|
<li>Moves can be made by dragging the pieces on the board, or by clicking the move links in the right panel.</li>
|
||
|
<li>Pawns dragged to the last rank are promoted to queens. Use the move links in the right panel to underpromote.</li>
|
||
|
<li>Castle by moving the king two squares towards a rook. The rook moves automatically.</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="footer"></div>
|
||
|
<div id="dim"></div>
|
||
|
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
|
||
|
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.min.js"></script>
|
||
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.2/jquery.ui.touch-punch.min.js"></script>
|
||
|
<!--[if lt IE 9]><script src="http://cdnjs.cloudflare.com/ajax/libs/augment.js/1.0.0/augment.min.js"></script><![endif]-->
|
||
|
<script src="chess.min.js"></script>
|
||
|
<script>
|
||
|
$(makeChessGame);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|