-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (94 loc) · 3.18 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
<!DOCTYPE html>
<html lang="de">
<head>
<title>En Cube 3x3</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link href="index.css" rel="stylesheet"/>
</head>
<body>
<div class="myframe">
<canvas width="300" height="300" id="canvas"></canvas>
<br>
<table class="button_table" border="0">
<tr>
<td><button type="button" id="btnLs">L'</button></td>
<td><button type="button" id="btnMs">M'</button></td>
<td><button type="button" id="btnR">R </button></td>
<td> </td>
<td><button type="button" id="btnU">U </button></td>
<td><button type="button" id="btnUs">U'</button></td>
</tr>
<tr>
<td><button type="button" id="btnL">L </button></td>
<td><button type="button" id="btnM">M </button></td>
<td><button type="button" id="btnRs">R'</button></td>
<td> </td>
<td><button type="button" id="btnE">E </button></td>
<td><button type="button" id="btnEs">E'</button></td>
</tr>
<tr>
<td><button type="button" id="btnF">F </button></td>
<td><button type="button" id="btnFs">F'</button></td>
<td></td>
<td></td>
<td><button type="button" id="btnDs">D'</button><br></td>
<td><button type="button" id="btnD">D</button></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><button type="button" id="btnX">X </button></td>
<td><button type="button" id="btnXs">X'</button></td>
<td> </td>
<td> </td>
<td><button type="button" id="btnYs">Y'</button></td>
<td><button type="button" id="btnY">Y</button></td>
</tr>
</table>
<br>
<table>
<tr>
<td>
<input type="radio" name="notation" onclick="handleClick(this);" id='radio_normal' value="normal" >Notation normal<br>
<input type="radio" name="notation" onclick="handleClick(this);" id='radio_en'value="en" checked>Notation En
</td>
<td>
<input type="radio" name="ansicht" onclick="handleViewClick(this);" id='radio_3D' value="3D" checked>3D<br>
<input type="radio" name="ansicht" onclick="handleViewClick(this);" value="2D">2D
</td>
</tr>
</table>
<!--
<button onclick="window.location.href='index.html'">Refresh</button>
-->
<button onclick="window.location.href='input.html'">Configure</button>
<button onclick="solve()">Solve</button>
<!--
<table border="0">
<tr>
<td><button type="button" id="btn_satz1">1 </button></td>
<td><button type="button" id="btn_satz2">2 </button></td>
<td><button type="button" id="btn_satz3">3 </button></td>
<td><button type="button" id="btn_satz4">4 </button></td>
<td><button type="button" id="btn_satz5">5 </button></td>
</tr>
<td> </td>
<td> </td>
<td> </td>
<td><button type="button" id="btn_satz4s">4s </button></td>
<td><button type="button" id="btn_satz5s">5s </button></td>
<tr>
</tr>
</table>
-->
</div>
<script src="index.js"></script>
</body>
</html>