Skip to main content

Posts

Showing posts from September, 2019

Calligram

GRETA THUNBERG - CLIMATE ACTION SPEECH.  This image is a calligram representing Greta Thunberg's climate action speech symbolized through an image of the world. 

Final Canvas Project

The UT Chaos: Emma Lynch  ARTIST STATEMENT:         My final canvas project is a piece that encompasses different aspects of coding as well as my school logo compiled into one composition. I based my work around The University of Tampa symbol and used an overall color scheme that represented my school's colors while branching out into pinks and oranges. As my school colors are black and red, often incorporating white, I attempted to create a piece that reflected that theme. The black and white gradient background poses as a basis for the pop of color of the other elements. I strayed from my school's colors by including different yet visually appealing flowers to tie the piece together yet create a successful overall composition. Using techniques and styles such as these help to support the main idea of the piece to create a fluid composition.         The piece I have created is influenced by the countless canvas techniques we have learned including bezier and quadra

Second Homework Heart

MY CODE:  <!DOCTYPE HTML> <html> <head> <script> window.onload = function() { var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); ////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ //Heart //Bezier Curve Variables var Ax = 375; var Ay = 200; var Bx = 375; var By = 500; var control1x = 170; var control1y = -80; var control2x = 100; var control2y = 350; var control3x = 710; var control3y = 350; var control4x = 570; var control4y = -80;         context.beginPath();         context.moveTo(Ax, Ay);         context.bezierCurveTo(control1x, control1y, control2x, control2y, Bx, By);         context.bezierCurveTo(control3x, control3y, control4x, control4y, Ax, Ay);         context.lineWidth = 10;         // line color         context.strokeStyle = 'rgb(255, 100, 100)';         context.lineCap = 'round';         context.stroke();      

First Homework

MY CODE: <!DOCTYPE HTML> <html> <head> <script> window.onload = function() { var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); ////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ var x1 =50; var y1 =50; var x2 =750; var y2 =500; var rectx1 = 50; var recty1 = 100; var rectwidth1 = 300; var rectheight1 = 250; var grd = context.createLinearGradient(rectx1, recty1, rectx1+rectwidth1, recty1+rectheight1); var rectx2  = 300; var recty2 = 300; var rectwidth2 = 200; var rectheight2 = 300; var x3= 300; var y3= 60; var x4= 100; var y4= 500; var rectx3  = 555; var recty3 = 100; var rectwidth3 = 150; var rectheight3 = 150; var x5= 600; var y5= 150; var x6= 550; var y6= 500; //orange line context.beginPath();   context.moveTo(x3,y4);   context.lineTo(x1,y6);   context.lineWidth = 10;   context.strokeStyle = 'rgb(255,165,0)';   context.lineCap =

My Favorite HTML5 Canvas Tutorials

The links listed below are separate tutorials that are helpful in understanding HTML5 Canvas. Tutorial One:  https://youtu.be/PY2RLgTmiZY  (the basics) Tutorial Two:  https://youtu.be/Gb0Ny7qmj9E  (drawing lines) Tutorial Three:  https://youtu.be/uh1Sgj2Gt70  (shapes and the fundamentals)

GET TO KNOW ME

My name is Emma Lynch and I am originally from Maryland but currently live in South Carolina. I have been coming to Florida for most of my life for vacation as well as to visit family, so I am excited to spend the next few years here at the University of Tampa. My hobbies include trying new foods, photography, and traveling, which typically consumes most of my free time. I am extremely passionate about traveling and hope to live abroad in the future. My favorite places to travel are Italy and Alberta, Canada. I am a Public Relations and Advertising major and aim to pursue a career in Advertising from a creative perspective in the Northeast. I have always been interested in different art forms and photography but am excited to further my knowledge in digital media. Most of the art I am familiar with ties back to photography, so I am excited to use that basis of understanding to influence my work in this class. My initial feelings on the course are that it will be relatively diffic