Skip to content

Adding a new memory game (WallRoll) #21

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
99 changes: 99 additions & 0 deletions WallRoll.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<script src="bower_components/webcomponentsjs/webcomponents.js"></script>
<script type="text/javascript" src="js/phaser.js"></script>
<link rel="import" href="elements.html">
</head>
<style>
paper-toolbar.main_toolbar{
background-color:#00796b;
}
.paper_toolbar_main{
background-color: #fafafa;
}
paper-material {
display: inline-block;
background:white;
box-sizing: border-box;
margin: 16px;
padding: 15px;
border-radius: 20px;
}
.demo_heading {
display: inline-block;
background: white;
box-sizing: border-box;
margin: 16px;
padding: 16px;
border-radius: 2px;
}
.demo-cards {
/*height:225px;
width:280px;*/
display: inline-block;
background: white;
box-sizing: border-box;
margin: 16px;
border-radius: 2px;
font-weight: 300;
}
.demo_card_content{
font-size: 1.25em;
}
.demo_buttons{
margin-left:105px ;
margin-top: 45px;
margin-right: 5px;
margin-bottom: 5px;
}
a {
text-decoration: none !important;
color: inherit;
}
</style>

<body unresolved>
<paper-drawer-panel force-narrow="true">
</paper-header-panel>
<paper-header-panel main mode="standard" class="paper_toolbar_main" flex>
<div flex>

<paper-material elevation="3" id="gamingArea">
<script type="text/javascript" src="js/WallRoll.js"></script>
</paper-material>

<paper-material elevation="3" class="demo-cards">
<div class="demo_card_content">
<paper-toolbar class="medium-tall" style="background-color:#01579b;box-shadow: 0px 5px 0px #cfd8dc">
<div id="finishButtonArea" style="position: relative;margin:auto"></div>
<div id="heading" class="bottom">Instructions</div>
</paper-toolbar>
</div>
<div id="scoreCard">
<paper-menu flex>
<paper-item><iron-icon style="color:#01579b" icon="av:play-circle-filled"></iron-icon><span></span><div>Start the Game</div></paper-item>

<paper-item><iron-icon style="color:#01579b" icon="av:play-circle-filled"></iron-icon><span></span><div>The time limit for the die to remain on screen is 7-10s.</div></paper-item>

<paper-item><iron-icon style="color:#01579b" icon="av:play-circle-filled"></iron-icon><span></span><div>After the time is over<br>The die is not visible on screen and the number on the die that is seen last is asked.</div></paper-item>
<paper-item><iron-icon style="color:#01579b" icon="av:play-circle-filled"></iron-icon><span></span><div>As user advances, he/she has to remember all the previous results.<br>For example: <br> 1st roll : result 5 --- ( remember 5 )
<br> 2nd roll : result 6 ---( remember 5,6 )
<br>3rd roll : result 1 --- ( remember 5,6,1 ) and so on.</div></paper-item>
<paper-item><iron-icon style="color:#01579b" icon="av:play-circle-filled"></iron-icon><span></span><div>The user gets 3 lives.</div></paper-item>
<paper-item><iron-icon style="color:#01579b" icon="av:play-circle-filled"></iron-icon><span></span><div>Score = +17 for each level</div></paper-item>
<paper-item><img src="assets/images/penguin.jpg"></img><img src="assets/images/PenguinWords.png"></img></paper-item>
</paper-menu>
</div>

</paper-material>
</div>

</paper-header-panel>
</paper-drawer-panel>
</body>
</html>
Binary file added assets/images/WallRoll/bg_640_520.png
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 assets/images/WallRoll/correct_60_60.png
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 assets/images/WallRoll/dead_60_60.png
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 assets/images/WallRoll/dicesheet.png
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 assets/images/WallRoll/five_100_100.png
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 assets/images/WallRoll/four_100_100.png
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 assets/images/WallRoll/hgl.png
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 assets/images/WallRoll/living_60_60.png
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 assets/images/WallRoll/one_100_100.png
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 assets/images/WallRoll/replay_100_100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/images/WallRoll/sample
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Binary file added assets/images/WallRoll/six_100_100.png
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 assets/images/WallRoll/three_100_100.png
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 assets/images/WallRoll/two_100_100.png
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 assets/images/WallRoll/vgl.png
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 assets/images/WallRoll/wrong_60_60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading