-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (97 loc) · 2.28 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, height=device-height, initial-scale=1"
>
<link href="src/css/scungus.css" rel="stylesheet">
<title>scungus:)</title>
</head>
<body>
<header>
<span>
<button
type="button"
class="saveScungus"
onclick="scungus.saveScungus()"
>
Save Scungus
</button>
<button
type="button"
class="loadScungus"
onclick="scungus.loadScungus()"
>
Load Scungus
</button>
<button
type="button"
class="deleteScungus"
onclick="scungus.deleteScungus()"
>
Delete Scungus
</button>
</span>
</header>
<div class="row">
<div class="column">
<button
type="button"
class="scungus"
onclick="scungus.clickScungus()"
>
<img src="src/img/scungus.gif" alt="scungus:)">
</button>
</div>
<div class="column">
<column-background>
you have obtained <a id="scungusObtainus">0</a> total
scungus:) <br><br>
you have clicked scungus:) <a id="scungusClicks">0</a> many
times <br><br>
you currently have <a id="scunguses">0</a> many scungus:)
<br><br>
<button
type="submit"
class="buyScungus"
onclick="scungus.buyScungus()"
>
buy scungus:)
</button>
you have bought <a id="scungusBought">0</a> many scungus:)
<br><br>
<button
type="submit"
class="buyAutoscungus"
onclick="scungus.buyAutoscungus()"
>
buy autoscungus:)
</button>
you have bought <a id="scungusAutobought">0</a> many
autoscungus:) <br><br>
scungus:) currently costs <a id="scungusCost">10</a> many
scungus:) <br><br>
autoscungus:) currently costs
<a id="scungusAutocost">100</a> many scungus:) <br><br>
<button
type="submit"
class="buyUltrascungus"
onclick="scungus.buyUltrascungus()"
>
buy ultra scungus:)
</button>
you have bought <a id="scungusUltrabought">0</a> many ultra
scungus:)
<br>
ultra scungus:) currently costs
<a id="scungusUltracost">1000</a> many scungus:)
</column-background>
</div>
</div>
</body>
</html>
<script src="dist/scunguslib.js">
window.onload = function () {scungus}
</script>