Monday, October 12, 2015

Heart in HTML5

Here is the heart that I made in TextWrangler 
for the in class assignment!

The code for the image:

<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");

////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ


//Heart
context.beginPath();
context.moveTo(400, 200);
context.bezierCurveTo(300, 0, 50, 200, 250, 350);
context.lineTo(250, 350);
context.quadraticCurveTo(400, 450, 400, 500);
context.lineTo(400, 500);
context.quadraticCurveTo(400, 450, 550, 350);
context.lineTo(550, 350);
context.bezierCurveTo(700, 200, 500, 0, 400, 200);
context.strokeStyle = 'rgb(255, 0, 100)';
context.stroke();


////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ

};

</script>
</head>
<body>
<canvas id="myCanvas" width="800" height="600"></canvas>
</body>
</html>

Monday, October 5, 2015

Just For Fun

Here are a couple projects that I did just for fun in my free time! As you can tell, they are all Disney related. Anyone who knows me, knows that I'm Disney obsessed. :)

Cinderella's Castle during nighttime fireworks show Wishes

Bing Bong from Disney's Pixar Inside Out



Stitch from Disney's Lilo and Stitch

Project 2: Vector Illustration

I decided to do a vector illustration of a penguin because penguins are my favorite animal and they're adorable. For the most part, this was a fairly simple project, except for a few things. The coloring of orange/yellow around the penguin's head was the trickiest part I think. I used a gradient for the coloring, but at first it wasn't really blending into the rest of the penguin, it had very sharp edges. Then I discovered the Gaussian Blur tool and I believe that gave it the effect that it needed. Overall, I had a lot of fun doing this project!


Monday, September 28, 2015

Exquisite Corpse

This is my little alien I made for my exquisite corpse project. I wanted to use shades of blue and purple because I think they compliment each other really well. For example, I wanted to blend the colors in the body and these two colors blended very well together. I tried to reuse colors for different parts of her body as well, so that she didn't look like a giant rainbow. Also, I added some ponytails for her hair so that she looked a little more feminine. The background is her planet with the sunrise in the background to give it a nice color. 



Tuesday, September 22, 2015

Project 1: Logo

I chose to do a logo for a cruise line company. The name of the company is Shooting Stars Cruise Lines. I wanted to do a color scheme of blues and yellow because stars are yellow and the sky and water are blue. The audience is more family oriented, so I used fun colors and fun fonts to catch both sides of the spectrum. I decided to put the font on top of the star because I feel as though this will make it easier to resize. Overall, I think my logo will catch the attention of those who would want to take a cruise with Shooting Stars Cruise Lines. 

Monday, September 21, 2015