HTML and CSS Reference
In-Depth Information
window . addEventListener ( 'load' , eventWindowLoaded , false
false );
function
function eventWindowLoaded () {
canvasApp ();
}
function
function canvasSupport () {
return
return Modernizr . canvas ;
}
function
function canvasApp () {
iif ( ! canvasSupport ()) {
return
return ;
}
function
function drawScreen () {
context . fillStyle = '#EEEEEE' ;
context . fillRect ( 0 , 0 , theCanvas . width , theCanvas . height );
//Box
context . strokeStyle = '#000000' ;
context . strokeRect ( 1 , 1 , theCanvas . width - 2 , theCanvas . height - 2 );
ball . velocityy += gravity ;
iif (( ball . y + ball . radius ) > theCanvas . height ) {
ball . velocityy = - ( ball . velocityy ) * ball . elasticity ;
}
ball . y += ball . velocityy ;
ball . x += ball . velocityx ;
context . fillStyle = "#000000" ;
context . beginPath ();
context . arc ( ball . x , ball . y , ball . radius , 0 , Math . PI * 2 , true
true );
context . closePath ();
context . fill ();
}
var
var speed = 6 ;
var
var gravity = . 1 ;
var
var elasticity = . 5 ;
var
var angle = 285 ;
var
var radians = angle * Math . PI / 180 ;
var
var radius = 15 ;
Search WWH ::




Custom Search