-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1925 from Damini2004/MonoPoly
Monopoly Game Added
- Loading branch information
Showing
4 changed files
with
447 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Monopoly Board</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<link href="https://fonts.googleapis.com/css?family=Hammersmith+One&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="styles.css" /> | ||
</head> | ||
<body> | ||
|
||
<main> | ||
<div class="table stop"> | ||
<div class="frame"> | ||
<div class="corner tl" style="--order:1"> | ||
<div>free <span>🅿️</span> parking</div> | ||
</div> | ||
<div class="corner tr" style="--order:11"> | ||
<div>go to <span>👮</span> jail</div> | ||
</div> | ||
<div class="corner bl" style="--order:31"> | ||
<div>in <span>🗝</span> jail</div> | ||
</div> | ||
<div class="corner br" style="--order:41"> | ||
<div><em>collect <br/> £200 salary as you pass</em> go <span>↖️</span></div> | ||
</div> | ||
<div class="center" style="--order:13"> | ||
<div class="logo">monopoly</div> | ||
<div class="cards community">community chest</div> | ||
<div class="cards chance">chance</div> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "Monoploy Game", | ||
"version": "1.0", | ||
"description": "A fun game to buy and visit cities", | ||
"action": { | ||
"default_popup": "index.html" | ||
}, | ||
"permissions": [] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
var Tiles = { "List" : [ | ||
{"label":"strand", "price":"£220", "icon":"", "color":"red", "order": "2", "pos":"top"}, | ||
{"label":"chance", "price":"", "icon":"❓", "color":"none", "order": "3", "pos":"top"}, | ||
{"label":"fleet street", "price":"£220", "icon":"", "color":"red", "order": "4", "pos":"top"}, | ||
{"label":"trafalgar square", "price":"£240", "icon":"", "color":"none", "order": "5", "pos":"top"}, | ||
{"label":"fenchurch st. station", "price":"£200", "icon":"🚂", "color":"none", "order": "6", "pos":"top"}, | ||
{"label":"leicester square", "price":"£260", "icon":"", "color":"yellow", "order": "7", "pos":"top"}, | ||
{"label":"ceventry street", "price":"£200", "icon":"", "color":"yellow", "order": "8", "pos":"top"}, | ||
{"label":"water<br>works", "price":"£150", "icon":"🚰", "color":"none", "order": "9", "pos":"top"}, | ||
{"label":"piccadilly", "price":"£280", "icon":"", "color":"yellow", "order": "10", "pos":"top"}, | ||
{"label":"vine street", "price":"£200", "icon":"", "color":"orange", "order": "12", "pos":"left"}, | ||
{"label":"marlborog'h street", "price":"£200", "icon":"", "color":"orange", "order": "15", "pos":"left"}, | ||
{"label":"community chest", "price":"", "icon":"💰", "color":"none", "order": "17", "pos":"left"}, | ||
{"label":"bow street", "price":"£180", "icon":"", "color":"orange", "order": "19", "pos":"left"}, | ||
{"label":"marylebone station", "price":"£200", "icon":"🚂", "color":"none", "order": "21", "pos":"left"}, | ||
{"label":"northumrl'd avenue", "price":"£160", "icon":"", "color":"pink", "order": "23", "pos":"left"}, | ||
{"label":"whitehall", "price":"£140", "icon":"", "color":"pink", "order": "25", "pos":"left"}, | ||
{"label":"electric company", "price":"£150", "icon":"💡", "color":"none", "order":" 27", "pos":"left"}, | ||
{"label":"pall mall", "price":"£140", "icon":"", "color":"pink", "order": "29", "pos":"left"}, | ||
{"label":"regent street", "price":"£300", "icon":"", "color":"green", "order": "14", "pos":"right"}, | ||
{"label":"oxford street", "price":"£300", "icon":"", "color":"green", "order": "16", "pos":"right"}, | ||
{"label":"community chest", "price":"", "icon":"💰", "color":"none", "order": "18", "pos":"right"}, | ||
{"label":"bond street", "price":"£320", "icon":"", "color":"green", "order": "20", "pos":"right"}, | ||
{"label":"liverpool st. station", "price":"£320", "icon":"🚂", "color":"none", "order": "22", "pos":"right"}, | ||
{"label":"chance", "price":"", "icon":"", "color":"none", "order": "24", "pos":"right"}, | ||
{"label":"park lane", "price":"£350", "icon":"", "color":"blue", "order": "26", "pos":"right"}, | ||
{"label":"super<br />tax", "price":"£100", "icon":"💍", "color":"none", "order": "28", "pos":"right"}, | ||
{"label":"mayfair", "price":"£400", "icon":"", "color":"blue", "order": "30", "pos":"right"}, | ||
{"label":"pentonville road", "price":"£120", "icon":"", "color":"sky", "order": "32", "pos":"bottom"}, | ||
{"label":"euston road", "price":"£100", "icon":"", "color":"sky", "order": "33", "pos":"bottom"}, | ||
{"label":"chance", "price":"", "icon":"❓", "color":"none", "order": "34", "pos":"bottom"}, | ||
{"label":"the angel, islington", "price":"£100", "icon":"", "color":"sky", "order": "35", "pos":"bottom"}, | ||
{"label":"kings cross station", "price":"£200", "icon":"🚂", "color":"none", "order": "36", "pos":"bottom"}, | ||
{"label":"income<br />tax", "price":"£200", "icon":"🔸", "color":"none", "order": "37", "pos":"bottom"}, | ||
{"label":"whitechapel road", "price":"£60", "icon":"", "color":"brown", "order": "38", "pos":"bottom"}, | ||
{"label":"community chest", "price":"", "icon":"💰", "color":"none", "order": "39", "pos":"bottom"}, | ||
{"label":"old kent road", "price":"£60", "icon":"", "color":"brown", "order": "40", "pos":"bottom"} | ||
]}; | ||
|
||
var tiles = ""; | ||
|
||
for (var t = 0; t < Tiles.List.length; t++){ | ||
tiles += "<div class=\"" + Tiles.List[t].pos + " " + Tiles.List[t].color + "\" style=\"--order:" + Tiles.List[t].order + ";\"><div class=\"inside\"><h2>" + Tiles.List[t].label + "</h2> <span>" + Tiles.List[t].icon + "</span> <strong>" + Tiles.List[t].price + "</strong></div></div>" | ||
} | ||
|
||
$(".frame").append(tiles); | ||
|
||
|
||
$(".table").click(function(){ | ||
if ($(this).hasClass("stop")) { | ||
$(this).removeClass("stop"); | ||
$(this).addClass("start"); | ||
setTimeout(function(){ | ||
$(".table").addClass("rotation"); | ||
},2000); | ||
} else if (!$(this).hasClass("stop")) { | ||
$(this).addClass("hide"); | ||
$(this).addClass("stop"); | ||
setTimeout(function(){ | ||
$(".table").removeClass("hide"); | ||
$(".table").removeClass("start"); | ||
$(".table").removeClass("rotation"); | ||
},2000); | ||
} | ||
}); |
Oops, something went wrong.