-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (88 loc) · 3.69 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chessboard</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <h1>Schachanalyse-Tool</h1> -->
<!-- <piece-toolbar>
<div class="piece white-king"></div>
<div class="piece white-queen"></div>
<div class="piece white-rook"></div>
<div class="piece white-bishop"></div>
<div class="piece white-knight"></div>
<div class="piece white-pawn"></div>
<div class="piece black-king"></div>
<div class="piece black-queen"></div>
<div class="piece black-rook"></div>
<div class="piece black-bishop"></div>
<div class="piece black-knight"></div>
<div class="piece black-pawn"></div>
</piece-toolbar> -->
<noscript>
<p id='please-enable-javascript' class='please-enable-javascript'>Please enable Javascript</p>
</noscript>
<div class="board" id="board">
<promo-chooser-white></promo-chooser-white>
<promo-chooser-black></promo-chooser-black>
</div>
<variation-toolbar id="toolbar">
<i class="material-icons" title="Variante hoch">vertical_align_top</i>
<i class="material-icons" title="Variante runter">vertical_align_bottom</i>
<i class="material-icons" title="Variante aufwerten">reply</i>
<i class="material-icons" title="Zur Hauptvariante machen">reply_all</i>
<i class="material-icons" title="Reset">replay</i>
<!-- <i class="material-icons" title="Figuren-Toolbar anzeigen">pan_tool</i> -->
<i class="material-icons right" title="Hilfe anzeigen">help_outline</i>
</variation-toolbar>
<main-variation id="chessnotation">
<white-move>e2e4</white-move>
<black-move class="active">c7c5</black-move>
<white-move>Sg1f3</white-move>
<black-move>d7d6</black-move>
<sub-variation>
<black-move>Sb8c6</black-move>
<white-move>d2d4</white-move>
<sub-variation>
<white-move>Lf1-b5 <comment-after>avoids Sveshnikov</comment-after></white-move>
</sub-variation>
<black-move>c5xd4</black-move>
<white-move>Sf3xd4</white-move>
<black-move>Sg8f6</black-move>
<white-move>Sb1c3</white-move>
<black-move>e7e5 <comment-after>Sveshnikov</comment-after></black-move>
</sub-variation>
<white-move>d2d4</white-move>
<sub-variation>
<white-move>c2c3</white-move>
<black-move>Sg8f6</black-move>
<white-move>e4e5</white-move>
<black-move>Sf6d5</black-move>
<white-move>d2d4</white-move>
<black-move>Sb8c6</black-move>
<white-move>Lf1c4</white-move>
<black-move>e7e6</black-move>
<sub-variation>
<black-move>Sd5b6</black-move>
<white-move>Lc4b3</white-move>
<sub-variation>
<white-move>Lc4e2</white-move>
</sub-variation>
<div>
<white-move>Lc4d3</white-move>
</div>
</sub-variation>
</sub-variation>
<black-move>c5xd4</black-move>
<black-move>Sf3xd4</black-move>
<black-move>Sg8f6</black-move>
<black-move>Sb1c3</black-move>
</main-variation>
<script src="jquery.js"></script>
<script src="logic.js"></script>
</body>
</html>