-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rubik's Cube</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css" integrity="sha512-b2QcS5SsA8tZodcDtGRELiGv5SaKSk1vDHDaQRda0htPYWZ6046lr3kJ5bAAQdpV2mmA/4v0wQF9MyU6/pDIAg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css" integrity="sha512-dPXYcDub/aeb08c63jRq/k6GaKccl256JQy/AnOq7CAnEZ9FzSL9wSbcZkMp4R26vBsMLFYH4kQ67/bbV8XaCQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="buttons">
<button id="reset_camera" class="btn btn-primary">Reset Camera</button>
<br>
<button id="stop" class="btn btn-danger d-none">Stop Animation 1</button>
<button id="start" class="btn btn-success">Start Animation 1</button>
<button id="stop1" class="btn btn-danger d-none">Stop Animation 2</button>
<button id="start1" class="btn btn-success">Start Animation 2</button>
<button id="reset1" class="btn btn-primary">Reset Animation 2</button>
<br>
<button id="shuffle" class="btn btn-warning">Shuffle</button>
<button id="solve-backward" class="btn btn-dark">Solve</button>
</div>
<div class="buttons2" id="commands-container"></div>
<div class="map-parent grid-container"></div>
<div class="dark-wrapper" id="loading-wrapper" style="display: none">
<div class="loading-wrapper">
<svg viewBox="0 0 60 60" stroke="#6D7582" stroke-linejoin="round">
<g id="loading-cube" fill="#fff">
<path id="base" d=""/>
<path id="lid" d=""/>
</g>
</svg>
<h3>Solving...</h3>
</div>
</div>
<script type="module" src="./dist/main.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.min.js" integrity="sha512-WW8/jxkELe2CAiE4LvQfwm1rajOS8PHasCCx+knHG0gBHt8EXxS6T6tJRTGuDQVnluuAvMxWF4j8SNFDKceLFg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
</html>