Created
November 18, 2014 05:06
-
-
Save tsongas/5fb7ec6b52524f37387b to your computer and use it in GitHub Desktop.
Rabbit Game Bar Graph
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Race 3</title> | |
<link rel="stylesheet" href="style3.css"> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script src="script3.js"></script> | |
</head> | |
<body> | |
<ul> | |
<li> | |
<div id="tortoise"></div> | |
</li> | |
<li> | |
<div id="hare"></div> | |
</li> | |
<li> | |
<div id="fish"></div> | |
</li> | |
</ul> | |
</body> | |
</html> |
This file contains hidden or 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
$(document).ready(function() { | |
var tortoise, hare, fish, km; | |
function Animal(name, speed, focus) { | |
this.name = name; | |
this.speed = speed; | |
this.focus = focus; | |
this.position = 0; | |
this.run = function() { | |
if (Math.random() * 10 < this.focus) { | |
this.position = this.position + this.speed; | |
} | |
} | |
} | |
tortoise = new Animal("Beth", 1, 10); | |
hare = new Animal("Peter", 4, 2); | |
fish = new Animal("Fish", 2, 4); | |
km = 20; | |
$(window).keydown(function(e) { | |
if (e.keyCode == '32' && tortoise.position < km && hare.position < km && fish.position < km) { | |
tortoise.run(); | |
hare.run(); | |
fish.run(); | |
$('#tortoise').width(tortoise.position * 10 + 'px'); | |
$('#hare').width(hare.position * 10 + 'px'); | |
$('#fish').width(fish.position * 10 + 'px'); | |
} | |
}); | |
}); |
This file contains hidden or 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
li { | |
list-style: none; | |
margin-top: 10px; | |
width: 200px; | |
height: 20px; | |
background-color: black; | |
} | |
div { | |
width: 0px; | |
height: 20px; | |
} | |
#tortoise { | |
background-color: green; | |
} | |
#hare { | |
background-color: gray; | |
} | |
#fish { | |
background-color: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$(window).keydown(function(e)
What does this do?