Hours: about 21  What I learned: I had a lot of fun creating this canvas. I learned that the little details make all the difference. I am extremely happy with the end result of my project.    //// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> YOUR CODE STARTS HERE   //BACKGROUND COLOR     var sky = context.createLinearGradient(0,0,0,600);   sky.addColorStop(0,'rgba(235,243,144,0.6)' );   sky.addColorStop(1, "rgba(159,26,8,1)");       context.beginPath();    context.rect(0,0,800,600);   context.closePath();       context.fillStyle= sky;   context.fill();    //ISLAND   context.beginPath();    context.moveTo(0,300)      context.quadraticCurveTo(100,350,300,400);    context.lineTo(0,400);    context.closePath();   context.fillStyle= 'rgba(245,203,111,1)';   context.fill();   context.strokeStyle= "rgba(245,203,111,1)";   context.stroke();   //PALM TREE-right   context.beginP...
 
Comments
Post a Comment