-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
77 lines (73 loc) · 3.24 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
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
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Draughts JS</title>
<link rel="stylesheet" href="draughts.css">
<script src="draughts.js"></script>
</head>
<body>
<div id="draughts">
<div id="board"></div>
<div id="dash">
<div class='player0'>
<h3>Player 1</h3>
<div class='captured'></div>
</div>
<div class='player1'>
<h3>Player 2</h3>
<div class='captured'></div>
</div>
</div>
<div id="banner-msg" style="display: none;">
<h3>Congrats:</h3>
<h2></h2>
<h3>You win!</h3>
</div>
<div id="options">
<div>Fieldsize:
<select id="size">
<option value="6">6</option>
<option value="8" selected>8</option>
<option value="10">10</option>
</select>
</div>
<div>Force attack:
<input type="checkbox" id="forceattack" value="1" checked>
</div>
<div>Force hold piece:
<input type="checkbox" id="forcehold" value="1">
</div>
<div>Backward attack:
<input type="checkbox" id="backwardattack" value="1">
</div>
<div>Queen free run:
<input type="checkbox" id="queenfreerun" value="1" checked>
</div>
<div>Queen attack and run:
<input type="checkbox" id="queenattackrun" value="1">
</div>
<div>Sounds:
<input type="checkbox" id="sounds" value="1" checked>
</div>
</div>
</div>
<a href="https://github.com/gartz/draughtsjs"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github-camo.global.ssl.fastly.net/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"></a>
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-2656027824613461"
data-ad-slot="8328904917"></ins>
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-24619548-6', 'gartz.com.br');
ga('send', 'pageview');
// Ads
var adsbyg = document.createElement('script');
adsbyg.setAttribute('async', true);
adsbyg.setAttribute('src', '//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
document.head.appendChild(adsbyg);
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</body>
</html>