Skip to content

Commit

Permalink
Merge pull request #920 from AbhijitMotekar99/main
Browse files Browse the repository at this point in the history
Added Tower block game : Issue no #873
  • Loading branch information
iamrahulmahato authored Oct 10, 2024
2 parents 4525ac9 + f530e61 commit de478df
Show file tree
Hide file tree
Showing 3 changed files with 559 additions and 0 deletions.
33 changes: 33 additions & 0 deletions projects/Tower Blocks/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!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,user-scalable=no" />
<script src="https://codepen.io/steveg3003/pen/zBVakw"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r83/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js"></script>
<title>Tower Blocks</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<script src="script.js" async></script>
<div id="container">
<div id="game"></div>
<div id="score">0</div>
<div id="instructions">
Click (or press the spacebar) to place the block
</div>
<div class="game-over">
<h2>Game Over</h2>
<p>You did great, you're the best.</p>
<p>Click or spacebar to start again</p>
</div>
<div class="game-ready">
<div id="start-button">Start</div>
<div></div>
</div>
</div>
<footer>Project By -: TANAY PADAR</footer>
</body>
</html>
Loading

0 comments on commit de478df

Please sign in to comment.