-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (40 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<title>Ritualism Demo</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="./resources/css/reset.css" type="text/css" rel="stylesheet">
<link href="./resources/css/style.css" type="text/css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<div class="stats">
<button id="pullBtn">Pull Bones</button>
<input type="number" id="pullNum">How many bones would you like to pull?</input>
<input type="number" id="userFatigue">Input Fatigue</input> <button id="fatigueBtn">set fatigue</button>
</div>
<div id="spellfield" class="field">
</div>
<div id="bonefield" class="field">
</div>
<div class="dragme bone" id="bone1">
<div class="top" id="top1">
0
</div>
<div class="bottom" id="bottom1">
0
</div>
</div>
<div class="dragme bone" id="bone2">
<div class="top" id="top2">
1
</div>
<div class="bottom" id="bottom2">
1
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="./resources/js/game.js"></script>
</body>
</html>