-
Notifications
You must be signed in to change notification settings - Fork 0
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 #2 from DanielSchetritt/devel
Devel
- Loading branch information
Showing
34 changed files
with
6,700 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,70 @@ | ||
h1{ | ||
font-stretch: ultra-expanded; | ||
font-weight: bolder; | ||
font-family: cursive; | ||
text-align: center; | ||
font-size: 36pt; | ||
color: darkred; | ||
} | ||
h2{ | ||
font-size: 24pt; | ||
text-align: center; | ||
font-family: serif; | ||
} | ||
p{ | ||
font-size: 18pt; | ||
text-align: justify;; | ||
font-family: serif; | ||
} | ||
body{ | ||
background-color: cornflowerblue; | ||
} | ||
.content{ | ||
width:100%; | ||
background-color: #eeeeee; | ||
} | ||
fieldset{ | ||
border-style:none; | ||
} | ||
.theater { | ||
position: relative; | ||
background-color: black; | ||
} | ||
.stage { | ||
height: 40%; | ||
} | ||
|
||
td{ | ||
width:50%; | ||
border-style: none; | ||
} | ||
img.hands{ | ||
max-height: 240px; | ||
height: auto | ||
width: auto; | ||
|
||
margin:20%; | ||
margin-bottom: 0; | ||
margin-top: 15%; | ||
|
||
} | ||
.curtainOverlay { | ||
position: absolute; | ||
top: 0; | ||
} | ||
|
||
img.topcurtain{ | ||
height: 20%; | ||
width: 100%; | ||
left: 0; | ||
} | ||
img.leftcurtain{ | ||
height: 100%; | ||
width: 20%; | ||
left: 0; | ||
} | ||
img.rightcurtain{ | ||
height: 100%; | ||
width: 20%; | ||
right: 0; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,85 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Finger-Spell-It</title> | ||
<link rel="stylesheet" href="css/styles.css"> | ||
<script src="js/words.js" charset="utf-8"></script> | ||
<script src="js/quiz.js" charset="utf-8"></script> | ||
</head> | ||
<body> | ||
<h1>Finger-Spell-It</h1> | ||
<table class="content"> | ||
<tr> | ||
<td> | ||
<div class="theater"> | ||
<div class="stage" id="letterImageStage"> | ||
<img class="hands" id="letterImage" src="img/_.gif" /> | ||
</div> | ||
<img class="leftcurtain curtainOverlay" src="img/leftcurtain.png"> | ||
<img class="rightcurtain curtainOverlay" src="img/rightcurtain.png"> | ||
<img class="topcurtain curtainOverlay" src="img/topcurtain.png"> | ||
</div> | ||
</td> | ||
<td> | ||
<div> | ||
</div> | ||
<div class="theater"> | ||
<div class="stage" id="inputImageStage"> | ||
<img class="hands" id="inputImage" src="img/_.gif" /> | ||
</div> | ||
<img class="leftcurtain curtainOverlay" src="img/leftcurtain.png"> | ||
<img class="rightcurtain curtainOverlay" src="img/rightcurtain.png"> | ||
<img class="topcurtain curtainOverlay" src="img/topcurtain.png"> | ||
</div> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<fieldset> | ||
<label for="lengthLimit">Word length limit</label> | ||
<input type="number" id="lengthLimit" min="3" max="99" value="5" /> | ||
<button type="button" id="changeLimitButton">Change</button> | | ||
<label for="speedcontrol">Speed</label> | ||
<span id="speedcontrol"> | ||
<button type="button" id="slower">-</button> | ||
<input type="range" id="speedSlider" /> | ||
<button type="button" id="faster">+</button>| | ||
<label for="autospeed">Auto Speed</label> | ||
<input type="checkbox" id="autospeed" value="Auto Speed" checked /> | ||
</span> | ||
</fieldset> | ||
</td> | ||
<td> | ||
<fieldset> | ||
<label for="playerInput">Type the word</label> | ||
<input type="text" id="playerInput" value=""> | ||
<button type="button" id="playerSubmitAnswer">Go</button>| | ||
<label for="score">Score</label> | ||
<output type="number" id="score">0</output> | ||
</fieldset> | ||
</td> | ||
</tr> | ||
</table> | ||
<h2>Practice fingerspelling in American Sign Language.</h2> | ||
<p><strong>Instructions:</strong> A word will be fingerspelled for you on the left-stage. | ||
Type the word you see. For each letter that you type, you will see its sign on the right-stage.</p> | ||
<p>If you need to see the word again, leave the textbox blank and press the | ||
<button type="button" disabled="true">Go</button> button. When you are ready to submit your answer, | ||
press the <button type="button" disabled="true">Go</button> button. You may alternatively hit the [ENTER] key | ||
instead of pressing the <button type="button" disabled="true">Go</button> button. </p> | ||
<p>If you get a word right, your score increases by 1. If you get a word wrong, your score decreases by 1. | ||
There is no penalty or reward for replaying a word.</p> | ||
<p>You can increase the fingerspelling speed by pressing the <button type="button" disabled="true">+</button> button, | ||
or by sliding the speed slider to the right.</p> | ||
<p>You can decrease the fingerspelling speed by pressing the <button type="button" disabled="true">-</button> button, | ||
or by sliding the speed slider to the left.</p> | ||
<p>By default, when you get a word right, the speed will increase automatically | ||
and when you get a word wrong, the speed will decrease automatically. | ||
This setting can be disabled by unchecking the Auto Save checkbox. </p> | ||
<p>By default, you will see words that are 5 letters long or less. | ||
This can be changed by typing in a new word length limit and pressing the | ||
<button type="button" disabled="true">Change</button> button. Note that the smallest word length is 3 letters. </p> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.