-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (72 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mimi's Fishy Game</title>
<style>
body {
margin: 0;
overflow: hidden;
}
#fish {
position: absolute;
width: 50px;
height: 50px;
background-color: #f39c12;
border-radius: 50%;
cursor: pointer;
}
#score {
position: absolute;
top: 10px;
right: 10px;
font-size: 20px;
color: #2ecc71;
}
.cat {
position: absolute;
width: 100px;
height: 100px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="fish"></div>
<div id="score">Score: 0</div>
<!-- Cat images -->
<img class="cat" src="cat1.jpg" alt="Cat 1" onclick="moveCat(this)">
<img class="cat" src="cat2.jpg" alt="Cat 2" onclick="moveCat(this)">
<script>
const fish = document.getElementById('fish');
const scoreDisplay = document.getElementById('score');
let score = 0;
fish.addEventListener('click', () => {
moveFish();
increaseScore();
});
function moveFish() {
const maxX = window.innerWidth - fish.clientWidth;
const maxY = window.innerHeight - fish.clientHeight;
const newX = Math.random() * maxX;
const newY = Math.random() * maxY;
fish.style.left = `${newX}px`;
fish.style.top = `${newY}px`;
}
function increaseScore() {
score++;
scoreDisplay.textContent = `Score: ${score}`;
}
function moveCat(cat) {
const maxX = window.innerWidth - cat.clientWidth;
const maxY = window.innerHeight - cat.clientHeight;
const newX = Math.random() * maxX;
const newY = Math.random() * maxY;
cat.style.left = `${newX}px`;
cat.style.top = `${newY}px`;
}
</script>
</body>
</html>