You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="css/bootstrap.css">
|
|
<style>
|
|
body{text-align: center;}
|
|
#egg{font-size: 150px;cursor: pointer;user-select: none; transition: transform 0.1s;}
|
|
#egg:active {transform: scale(0.9);}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Velikonoční Clicker</h1>
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-4 mb-4">
|
|
<div class="stat-card">
|
|
<h3>Vajíčka <span id="skore">0</span></h3>
|
|
<p>Slepic: <span id="pocetSlepic">0</span></p>
|
|
<p class="text-muted">Každá slepice snese 1 vejce za vteřinu</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="egg" class="mb-4">🥚</div>
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-4">
|
|
<button id="btnKupSlepici" class="btn btn-warning btn-lg w-100">
|
|
Koupit zlatou slepici (Cena: <span id="cenaSlepice">10</span> )
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="js/bootstrap.bundle.js"></script>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|