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

Shoot_Duck_Game #4419

Closed
wants to merge 4 commits 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
4 changes: 4 additions & 0 deletions Games/Shoot_Duck_Game/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Shoot_Duck_Game

All you need to do is shoot the duck
Game points will be awarded on the basis of duck shot
30 changes: 30 additions & 0 deletions Games/Shoot_Duck_Game/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shoot the Duck Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="game-container">

<div class="box-duck">
<div class="pond"></div>
<div class="duck">
<div class="body-duck"></div>
<div class="head">
<div class="left-eye"></div>
<div class="left-cheek"></div>
<div class="right-eye"></div>
<div class="right-cheek"></div>
<div class="beak"></div>
</div>
</div>
</div>

<p id="score">Score: <span id="scoreValue">0</span></p>
</div>
<script src="script.js"></script>
</body>
</html>
24 changes: 24 additions & 0 deletions Games/Shoot_Duck_Game/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const duck = document.querySelector('.box-duck');
const scoreValue = document.getElementById('scoreValue');
const score = document.getElementById('score');

let currentScore = 0;

duck.addEventListener('click', () => {
currentScore++;
scoreValue.textContent = currentScore;
moveDuckRandomly();
});

function moveDuckRandomly() {
const maxWidth = window.innerWidth - duck.clientWidth;
const maxHeight = window.innerHeight - duck.clientHeight;

const randomX = Math.random() * maxWidth;
const randomY = Math.random() * maxHeight;

duck.style.left = randomX + 'px';
duck.style.top = randomY + 'px';
}

moveDuckRandomly();
136 changes: 136 additions & 0 deletions Games/Shoot_Duck_Game/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
/* Basic styling, layout, and animations go here */
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}

.game-container {
position: relative;
width: 400px;
height: 400px;
margin: 50px auto;
}

.duck {
z-index: 0;
display: block;
position: absolute;
height: 200px;
width: 200px;
top: 30%;
left: 20%;
animation-name: horizontal-move;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: ease-in;
background-size: cover;
position: absolute;
cursor: pointer;
}
.box-duck {
position: relative;
display: block;
width: 500px;
height: 500px;
background: #f5f5f5;
margin: 0 auto;
}
.beak {
position: absolute;
top: 44%;
left: 47%;
background: #FFA500;
border-radius: 50%;
width: 37px;
height: 20%;
}
.body-duck {
position: absolute;
top: 45%;
left: 15%;
background: #caa444;
border-radius: 50%;
width: 150px;
height: 39%;
}
.greetings {
position: absolute;
display: block;
width: 100%;
bottom: 0;
text-align: center;
}
.head {
position: absolute;
top: 29%;
left: 36%;
background: #af8c32;
border-radius: 50%;
width: 90px;
height: 30%;
}
.left-cheek {
position: absolute;
top: 41%;
left: 19%;
background: #FFA07A;
border-radius: 50%;
width: 16px;
height: 10px;
}
.left-eye {
position: absolute;
top: 27%;
left: 35%;
background: #000;
border-radius: 50%;
width: 10px;
height: 10px;
animation-name: blink;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-timing-function: step-end;
}
.pond {
position: absolute;
top: 50%;
left: 5%;
background: #9ff6ff;
border-radius: 50%;
width: 325px;
height: 20%;
animation-name: rgb(5, 5, 170);
animation-duration: 3s;
animation-iteration-count: infinite;
}
.right-cheek {
position: absolute;
top: 41%;
left: 90%;
background: #FFA07A;
border-radius: 50%;
width: 13px;
height: 10px;
}
.right-eye {
position: absolute;
top: 27%;
left: 80%;
background: #000;
border-radius: 50%;
width: 10px;
height: 10px;
animation-name: blink;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-timing-function: step-end;
}

#score {
z-index: 1;
font-size: 24px;
margin-top: 20px;
}
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,13 +347,11 @@ This repository also provides one such platforms where contributers come over an
| [Intellect Quest](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Intellect_Quest) |
| [Taash_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Taash_Game) |
| [Number_Guessing_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Guessing_Game) |
| [Modulo_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Modulo_Game) |
manikumarreddyu marked this conversation as resolved.
Show resolved Hide resolved
| [Tower_Block_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Tower_Block_Game) |
| [Modulo_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Modulo_Game) |
| [Block_Ninja] (https://github.com/kunjgit/GameZone/tree/main/Games/Block_Ninja) |




| [Shoot_Duck_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Shoot_Duck_Game) |
</center>

<br>
Expand Down
Binary file added assets/images/Shoot_Duck_Game.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading