-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (55 loc) · 1.72 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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="style/style.css">
<title> Clicker game </title>
<meta charset="utf-8">
</head>
<body>
<audio controls autoplay hidden>
<source src="sound/Jaga.wav" type="audio/wav">
</audio>
<div class="container">
<div class="left-container">
<div class="stats">
<p id="clickDamageText"> Pojedyncze udrzenie zabiera 1 HP </p>
<p id="idleDamageText"> Twoi wojowie zabierają 0 HP na sekundę </p>
<p id="criticalHitChanceText"> Masz 0 % szans na udrzenie krytyczne </p>
<p id="criticalHitMultiplierText"> Uderzenie krytyczne zadaje 2x więcej obrażeń </p>
<p id="currentMoneyText"> Stan konta : 0 </p>
</div>
<div class="heroes">
<div id="hero1" class="warrior">
<p id="hero1name"> Boromir </p>
<p id="hero1lvl"> Obecny poziom to 0 </p>
<p id="currentdps"> Obecny dps to 0 </p>
<p id="futuredps"> Przyszły dps to 1 </p>
<p id="levelcost"> Koszt za awans to 150 </p>
</div>
<button id="hero1u" class="upgrade"> Ulepsz </button>
</div>
</div>
<div class="middle-container">
<div class="sword"></div>
</div>
<div class="right-container">
<div class="levels">
<p id="currentLevelText"> Obecny poziom to : 0 </p>
</div>
<p id="monsterText">DEMO</p>
<div class="healthBar"><p id="healthText"> 10/10 </p></div>
<div class="monsters">
<span class="getmoney"> </span>
<span class="getmoney"> </span>
<span class="getmoney"> </span>
</div>
</div>
</div>
</body>
<script src="js/monsters.js"></script>
<script src="js/heroes.js"></script>
<script src="js/global.js"></script>
<script src="js/upgrade.js"></script>
<script src="js/damage.js"></script>
<script src="js/display.js"></script>
</html>