Posts

Showing posts from August, 2017

#1

Image
CODE <!doctype html> <html> <head> <meta charset="UTF-8"> <title> ART 210 - CANVAS PROJECT </title> <style type="text/css"> body,td,th { font-family: Helvetica, Arial, sans-serif; font-size: 12px; color: rgba(0,0,0,1); } body { background-color: rgba(255,255,255,1); } #myCanvas { border: rgba(102,0,255,1) medium dashed; } </style> </head> <body> <canvas id="myCanvas" width="800" height="600"></canvas> <script> var canvas = document.getElementById('myCanvas'); var context = canvas.getContext('2d'); //// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> YOUR CODE STARTS HERE //first shape context.beginPath(); context.moveTo(100,100); context.lineTo(150,150); context.lineTo(200,100); context.closePath(); context.lineWidth=10; context.l

#0

" Post your first feelings of the class, who you are, describe yourself and what you expect from this class." My first feelings of the class is that it will be interesting but also challenging. I've used Dreamweaver and coded before but not to draw shapes or anything like that. I am Kaylin, I'm from North Canton, Ohio. I took an Interactive Media class for 3 years but was in the lab there so much 8th and 9th grade it could basically be 5. If I had to describe myself I would say that I'm a pretty laid back person but when it comes to design I love new challenges and problems to solve. What I expect from this class is pretty much what was described to us, which was that by the year, and for our final project, we should be able to basically make a character in this. I hope to be able to learn something really new and cool like this and not get too frustrated or beat down by it.