-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·34 lines (32 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Сфериум</title>
<link rel="stylesheet" href="./vendor/jquery-ui.css" />
<link rel="stylesheet" href="./style.css" />
<script src="./vendor/jquery-1.12.4.js"></script>
<script src="./vendor/jquery-ui.js"></script>
<!-- Если соберешься обновлять three с r92, проверь что нет изменений в генерации геометрии, тк в checkWin захардкожены грани -->
<script src="./vendor/three.min.js"></script>
<script src="./vendor/OrbitControls.js"></script>
</head>
<body>
<div id="dialog" title="Сфериум" style="display:none"></div>
<div id="icons">
<i class="material-icons" id="refresh" onclick="model.refresh();"
>refresh</i
><br />
<i class="material-icons" id="help" onclick="model.help();">help</i>
</div>
<script src="./ai.js"></script>
<script src="./settings.js"></script>
<script src="./view.js"></script>
<script src="./controller.js"></script>
<script src="./model.js"></script>
</body>
</html>