-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbare.html
68 lines (67 loc) · 3 KB
/
bare.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="keywords" content="Chess, Chessboard, Javascript, Play Chess, Javascript Chess, three.js, chessboard.js, chessboard3.js">
<title>chessboard3.js</title>
<link type="text/css" rel="stylesheet" href="css/bare.css">
<script src="https://code.jquery.com/jquery-3.1.0.js" integrity="sha256-slogkvB1K3VOkzAI8QITxV3VzpOnkeNVsKvtkYLMjfk=" crossorigin="anonymous"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/three.js/r80/three.min.js"></script>
<script type="text/javascript" src="js/chess.js"></script>
<script type="text/javascript" src="js/OrbitControls.js"></script>
<script type="text/javascript" src="js/chessboard3.min.js"></script>
<script type="text/javascript" src="js/raphael-min.js"></script>
<script type="text/javascript" src="js/jquery.sonic-gauge.js"></script>
<script type="text/javascript" src="js/bare.js"></script>
</head>
<body>
<header id="header">
<h1>chessboard3.js</h1>
</header>
<article id="container">
<div id="board">
<h1 class="vertical-align">LOADING...</h1>
</div>
<div id="side">
<div class="buttonpanel">
<input type="button" id="startBtn" value="<<">
<input type="button" id="backBtn" value="<">
<input type="button" id="forwardBtn" value=">">
<input type="button" id="endBtn" value=">>">
</div>
<div class="buttonpanel">
<input type="button" id="hintBtn" value="HINT">
<input type="button" id="flipBtn" value="FLIP">
</div>
<div id="status"></div>
<div id="leftbox">
<div id="optionsBox">
<label for="piecesMenu">CHESS SET:</label>
<select id="piecesMenu">
<option value="classic" selected>Classic</option>
<option value="iconic">Iconic</option>
<option value="bauhaus">Bauhaus</option>
<option value="mueller">Mueller</option>
<option value="minions">Minions</option>
</select>
<br>
<label for="promotion">PROMOTE PAWNS TO:</label>
<select id="promotion">
<option value="q">queens</option>
<option value="n">knights</option>
<option value="r">rooks</option>
<option value="b">bishops</option>
</select>
</div>
<div id="gauge"></div>
</div>
<div id="pgn"></div>
<div id="fen">FEN:</div>
</div>
</article>
<footer id="footer">
<p>Copyright 2016 Jason Tiscione; <a href="http://chessboard3js.com">chessboard3.js</a> is released under the MIT license. The repository for this project is on <a href="https://github.com/jtiscione/chessboard3js">GitHub.</a></p>
</footer>
</body>
<script type="text/javascript" id="lozza_chess_engine_web_worker" src="lozza.js"></script>
</html>