Skip to main content

Posts

Showing posts from March, 2017

Self-Insertion

For my self-insertion project, I used a picture of me and my two friends from Halloween. I was Hugh Hefner and they were Playboy bunnies. I decided that it would be comical to take that photo and put us at the Playboy manshion in Los Angeles. This project was time consuming. I used the burn tool to create shadow beneath us. I didn't want to use this tool too excessively because the more I added it, the more the effect looked fake. I think that I used it just enough to make it appear as though we are standing in that specific location.

ASCII

For my HTML project, I decided to create the Tampa Bay Lightning Logo. This assignment took a deal of patience and trial and error. It was a very tedious process, but I am very satisfied with my final product. The curves were the most difficult aspect of my project. I played with the gradient background for a while. In the end, I decided to use the two different shades of blue to create a faded look. I made the logo white so that it would pop out because it contrasts with the background. <!DOCTYPE HTML> <html> <head> <script> window.onload = function() { var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); ////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ context.rect(0, 0, 800, 600); var grd = context.createLinearGradient(200, 200, 200, 800, 800, 800); grd.addColorStop(0, "#1E2A5C"); grd.addColorStop(1, "blue"); context.fillStyle = grd; conte