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

Siri amarlapudi patch 1 #4729

Closed
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
Binary file added Games/Bubble_Shooter/Bubble Shooter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions Games/Bubble_Shooter/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# **Game_Name**

Bubble Shooter

## **Description πŸ“ƒ**

Bubble Shooter is a frontend game developed using HTML, CSS, JavaScript.
Bubble Shooter is a classic arcade-style game where players aim and shoot colored bubbles from a cannon at the bottom of the screen to match three or more bubbles of the same color.
Players earn points in Bubble Shooter by successfully matching and popping groups of three or more bubbles of the same color, with larger groups and chain reactions yielding higher scores.

## **How to play? πŸ•ΉοΈ**

Aim the cannon using your mouse or touchscreen, then shoot bubbles to match three or more of the same color to make them pop.

## **Screenshots πŸ“Έ**

![image](https://github.com/SiriAmarlapudi/GameZone/blob/main/assets/images/Bubble%20Shooter.png)
47 changes: 47 additions & 0 deletions Games/Bubble_Shooter/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<h1> Bubble Shooter </h1>
<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>Bubble Shooter</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#game-canvas {
background: #eee;
display: block;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div style="display: flex; justify-content: center; align-items: center; height: 100vh;">
<canvas id="game-canvas" style="background: #eee;" width="480" height="400"></canvas>
</div>
<script type='application/javascript'
src="https://rawgit.com/nicholas-maltbie/BubbleShooterJS/master/grid.js">
</script>
<script type='application/javascript'
src="https://rawgit.com/nicholas-maltbie/BubbleShooterJS/master/ball.js">
</script>
<script type='application/javascript'
src="https://rawgit.com/nicholas-maltbie/BubbleShooterJS/master/shooter.js">
</script>
<script type='application/javascript'
src="https://rawgit.com/nicholas-maltbie/BubbleShooterJS/master/manager.js">
</script>
<script src="script.js"></script>

</body>
</html>

Loading
Loading