Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new game #3016

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions Games/Catch_Me_If_You_Can/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@

# **Catch Me If You Can**

---



<br>



## **Description 📃**

Welcome to the Catch Me If You Can game! This is a simple and fun game built using HTML, CSS, and JavaScript. Your objective is to whack the balls that appear on the screen and earn points.



## **Functionalities 🎮**

- Whack the balls as they pop up on the screen.
- Keep track of your score in the top-right corner.
- Balls appear randomly at different positions within the game area.

<br>



## **How to play? 🕹️**

1. *Objective*: Click on the balls as they appear to earn points.

2. *Scoring*: Your score is displayed at the top-right corner of the game screen.

3. *Balls*: Balls will randomly pop up at different positions within the game area.

4. *Winning*: Keep clicking on balls to increase your score.



<br>



## **Screenshots 📸**



<br>

<!-- add your screenshots like this -->

![Screenshot](/Games/Catch_Me_If_You_Can/assets/Catch_Me_If_You_Can.png)


<br>



## **Working video 📹**

Watch a brief video showcasing the gameplay and features of the Catch Me Of You Can game:

<video src="assets/DemoVideo.mp4" controls title="DemoVideo"></video>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Games/Catch_Me_If_You_Can/assets/DemoVideo.mp4
Binary file not shown.
38 changes: 38 additions & 0 deletions Games/Catch_Me_If_You_Can/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
body {
text-align: center;
font-family: Arial, sans-serif;
}

h1 {
color: #120381;
padding: 1rem;
}

.game-container {
position: relative;
margin: 0 auto;
width: 400px;
height: 400px;
background-color: #c6fa0b;
border: 5px solid #333;
overflow: hidden;
}

.monster {
position: absolute;
width: 50px;
height: 50px;
background-color: #d60f94;
border: 2px solid #333;
border-radius: 50%;
cursor: pointer;
}

.score {
position: absolute;
top: 10px;
right: 10px;
color: #070101;
font-size: 18px;
}

13 changes: 13 additions & 0 deletions Games/Catch_Me_If_You_Can/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css" />
<script defer src="index.js"></script>
</head>
<body>
<h1>Catch Me If You Can </h1>
<div class="game-container">
<div class="score">Score: <span id="score">0</span></div>
</div>
</body>
</html>
40 changes: 40 additions & 0 deletions Games/Catch_Me_If_You_Can/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
let score = 0;
const scoreElement = document.getElementById('score');

function randomPosition() {
const gameContainer = document.querySelector('.game-container');
const maxX = gameContainer.clientWidth - 50;
const maxY = gameContainer.clientHeight - 50;

const randomX = Math.random() * maxX;
const randomY = Math.random() * maxY;

return { x: randomX, y: randomY };
}

function updateScore() {
score++;
scoreElement.textContent = score;
}

function createMonster() {
const monster = document.createElement('div');
monster.classList.add('monster');
const position = randomPosition();
monster.style.left = `${position.x}px`;
monster.style.top = `${position.y}px`;

monster.addEventListener('click', () => {
monster.remove();
updateScore();
});

document.querySelector('.game-container').appendChild(monster);

setTimeout(() => {
monster.remove();
}, 1000);
}

setInterval(createMonster, 1000);

Loading