-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 872 Bytes
/
Copy pathindex.html
File metadata and controls
42 lines (42 loc) · 872 Bytes
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">
<script src="lib/jquery-2.1.0.js"></script>
<script src="lib/three.js/build/three.js"></script>
<script src="js/main.js"></script>
<script src="js/list.js"></script>
<script src="js/movement.js"></script>
<script src="js/piece.js"></script>
<script src="js/nqueen.js"></script>
<script src="js/board.js"></script>
<title></title>
<style>
#cvs{
position:absolute;
}
.layer1{
position:absolute;
border:red 1px solid;
color:#00ff00;
z-index:1;
}
#pieceList{
left:80%
}
table{
width:100%;
}
td{
padding:3px;
width:100%;
border:solid 1px green;
}
</style>
</head>
<body onload="main()">
<div class="layer1" id="pieceList" >Piece List</div>
<div class="layer1" id="answerList">Answer List</div>
<div id="cvs"></div>
</body>
</html>