-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (58 loc) · 2.33 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
<html>
<head>
<meta charset = "UTF-8">
<title>Four in a Row with Treehouse</title>
<link href="https://fonts.googleapis.com/css?family=Wendy+One" rel="stylesheet">
<link rel = "stylesheet" type = "text/css" href = "css/style.css" />
</head>
<body>
<button id = "begin-game">
Start
</button>
<div id = "game-scene">
<div id = "play-area">
<div class = "stand-container left">
<div class = "stand-leg">
</div>
<div class = "stand-foot">
</div>
<div class = "stand-attachment left">
</div>
</div>
<div id = "game-over">
</div>
<div id = "game-board-underlay">
<div id = "token" data-column = "0">
</div>
</div>
<svg id = "game-board">
<defs>
<mask id="mask" x="0" y="0" width="548" height="472">
<rect x = "0" y = "0" height = "472" width = "548" fill = "white">
</mask>
</defs>
<rect id = "board-back" x="0" y="0" width="548" height="472" mask="url(#mask)" fill-opacity = "1" fill = "#5FCF80"/>
</svg>
<div class = "stand-container right">
<div class = "stand-leg">
</div>
<div class = "stand-foot">
</div>
<div class = "stand-attachment right">
</div>
</div>
<div style = "clear:both"></div>
</div>
</div>
<div class = "table">
</div>
</body>
</html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src = "js/Game.js"></script>
<script src = "js/Board.js"></script>
<script src = "js/Space.js"></script>
<script src = "js/Player.js"></script>
<script src = "js/Token.js"></script>
<script src = "js/app.js"></script>