-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is where we got to at the end of week 5
- Loading branch information
Showing
6 changed files
with
106 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,50 @@ | ||
function BallObject( JQueryElement ) { | ||
var ballDiv = JQueryElement; | ||
var ballImage = ballDiv.children()[0]; | ||
|
||
// sync our object's x and y position with the HTML element | ||
var curXpos = JQueryElement.offset().left; | ||
var curYpos = JQueryElement.offset().top; | ||
|
||
// get the width and height of the HTML element | ||
// assumes a JQuery element | ||
var curWidth = JQueryElement.width(); | ||
var curHeight = JQueryElement.height(); | ||
|
||
// setup visible functions | ||
this.moveHorizontal = moveHorizontal; | ||
this.moveVertical = moveVertical; | ||
this.grow = grow; | ||
this.shrink = shrink; | ||
this.getCurXpos = getCurXpos; | ||
this.getCurYpos = getCurYpos; | ||
|
||
function moveHorizontal( pixels ) { | ||
curXpos = curXpos + pixels; | ||
ballDiv.css("left", curXpos+"px"); | ||
} | ||
|
||
function moveVertical(pixels) { | ||
curYpos = curYpos + pixels; | ||
ballDiv.css("top",curYpos+"px"); | ||
} | ||
|
||
function grow(pixels) { | ||
curWidth = curWidth + pixels; | ||
curHeight = curHeight + pixels; | ||
ballImage.width = curWidth; | ||
ballImage.height = curHeight; | ||
} | ||
|
||
function getCurXPos() { | ||
return curXpos; | ||
} | ||
|
||
function getCurYpos() { | ||
return curYpos; | ||
} | ||
|
||
function shrink(pixels) { | ||
grow(-pixels); | ||
} | ||
} |
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,21 @@ | ||
<html> | ||
<head> | ||
<title>TurtleBall</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"/> | ||
<script type="text/javascript" src="jquery-1.10.2.min.js"></script> | ||
<script type="text/javascript" src="TurtleBall.js"></script> | ||
<script type="text/javascript" src="BallObject.js"></script> | ||
</head> | ||
<body> | ||
<button id="btnUp">Up</button> | ||
<button id="btnDown">Down</button> | ||
<button id="btnLeft">Left</button> | ||
<button id="btnRight">Right</button> | ||
<button id="btnGrow">Grow</button> | ||
<button id="btnShrink">Shrink</button> | ||
<div id="ballDiv"> | ||
<img src="CoderDojo-ball.png" width='50px' height='50px'/> | ||
</div> | ||
<div id="ballLocation"></div> | ||
</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,26 @@ | ||
var ball; | ||
$(document).ready(function() { | ||
ball = new BallObject($("#ballDiv")); | ||
|
||
$("#btnUp").click(function() { | ||
ball.moveVertical(-10); | ||
}); | ||
$("#btnDown").click(function() { | ||
ball.moveVertical(10); | ||
}); | ||
|
||
$("#btnLeft").click(function() { | ||
ball.moveHorizontal(-10); | ||
}); | ||
|
||
$("#btnRight").click(function() { | ||
ball.moveHorizontal(10); | ||
}); | ||
|
||
$("#btnGrow").click(function() { | ||
ball.grow(10); | ||
}); | ||
$("#btnShrink").click(function() { | ||
ball.shrink(10); | ||
}); | ||
}); |
Large diffs are not rendered by default.
Oops, something went wrong.
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,3 @@ | ||
#ballDiv { | ||
position: absolute; | ||
} |