-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (72 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fruit Basket</title>
<link rel="icon" type="image/png" href="assets/vegetables.ico">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar floating-navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<div class="icon-logo">
<img src="assets/basket.png" alt="logo" style="height: 36px; width: 36px;">
<a class="navbar-brand">Fruit Basket</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="https://github.com/Abhay-1552/FruitBasket">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">Help</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Timer Section -->
<div class="timer-container">
<h1 class="timer">00:30</h1>
<button class="btn btn-primary mt-2" id="start-button">Start Timer</button>
</div>
<!-- Clickable Image Section -->
<div class="content">
<section id="counter">
<div class="image-size">
<img src="assets/1.png" alt="Click Me" id="clickable-image">
</div>
<p>Image clicked <span id="click-count">0</span> times.</p>
</section>
</div>
<!-- Result Modal -->
<div id="result-modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Time's Up!</h2>
<p>You clicked the image <span id="final-count">0</span> times.</p>
</div>
</div>
<!-- About Modal -->
<div id="about-modal" class="modal">
<div class="modal-content">
<span class="close" id="close-about">×</span>
<h2>About Fruit Basket</h2>
<p>This is a fun and interactive game where you click on the fruits as many times as possible within 30
seconds. The fruit image changes every 40 clicks to keep it exciting!</p>
</div>
</div>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>