Welcome to my website!

My avatar picture

Gillian Torrecampo

Hillsborough, NJ

Biography:

A picture of myself A picture of myself

Hello there! My name is Gillian Torrecampo and I am a Computer Science major at Raritan Valley Community College (RVCC). In the Spring 2021 semester, I expect to graduate with an Associate's degree and I also plan to get my Interface Design and Web Development certificate by the end of next year. Besides going to school, a big hobby of mine is playing video games. The first video game I ever played was the Legend of Zelda Wind Waker on the GameCube. Some games I play now include CS:GO, Valorant, Overwatch, Teamfight Tactics (TFT), and more. Playing video games helps me relieve stress and it also helped me start drawing art; I would often draw characters from Nintendo games and now I try to come up with my own characters. In the future, I hope to be skilled enough to sell my own stickers. One other hobby I have is baking and my favorite pastries to bake are chocolate chip cookies and crinkles. Before Covid-19, I also used to travel a lot. I've been to France, Italy, Japan, and the Philippines. Some pictures of these places can be found as you scroll down (the rhyme wasn't intended) to the gallery section. In high school, I was set on majoring in biology then game development, but I could never make up my mind. However, after taking this web development course, I've finally found something I actually enjoy doing and want to pursue as a career. While my code is messy and my designs need a ton of work, I will try my best to improve these skills and learn more. By the time I graduate from a four year school, I hope to become a front-end web developer.

Hobbies:

  1. Playing video games (Valorant)
  2. Baking
  3. Watching K-dramas and anime
  4. Listening to music (K-pop, alternative rock, lo-fi... I'll listen to anything that isn't screamo or country)
  5. Hiking
  6. Travelling (I've been to Japan, Italy, France, and the Philippines)
  7. Photography
  8. Doodling

CSS Animations

Generally, for CSS animations to work, they must bind to an element. CSS animations allow an HTML element to gradually change from one style to another without using JavaScript or Flash. By using CSS animations, people can change as many CSS properties as they want. Some properties of CSS animations include:

  1. @keyframes
  2. animation-name
  3. animation-duration
  4. animation-delay
  5. animation-iteration-count
  6. animation-direction
  7. animation-timing-function
  8. animation-fill-mode
  9. animation

If you hover over the headers of each section on this website, you will notice that there will be a neon glow effect (but technically pure xenon makes the white glowy color while neon produces reds and oranges). In this "neon" glow css animation that I used based on code by Felix Rilling, the @keyframes rule and animation shorthand property are used. When you specify CSS styles inside the @keyframes rule, the animation will gradually change from the current style to the new style at specified times. To get the neon effect, the text shadows change. Below is a snippet of the code:

Code snippet of neon glow effect

Additionally, the animation shorthand property uses the six animation properties: animation-name, animation-dureation, animation-timing-function, animation-delay, animation-iteration-count, and animation-direction. Here is another snippet of code broken down by each of its animation properties:

Code snippet of animation
  1. animation-name: neon2
  2. animation-duration: 1.5s
  3. animation-timing-function: ease-in-out
  4. animation-iteration-count: infinite
  5. animation-direction: alternate

According to the MDN (Mozilla Developer Network) Web Docs, there are three key advantages to CSS animations over traditional script-driven animation techniques. One advantage is that CSS animations are easy to use for simple animations and you can create them without having to know JavaScript. Another advantage of CSS animations is that the animations run well due to the rendering engine can use frame-skipping and other techniques to keep the performance as smooth as possible. One other advantage of CSS animations is that CSS animations allow the browser to control the animation sequence which then allows the browser to optimize performance and efficiency by reducing the update frequency of animations running in tabs that aren't currently visible.

However, despite the advtanges of CSS, there are limited effects. These limitations include the inability to animate along a curve, to use interesting eases such as a bounce, to use different eases for different properties by using keyframes, to have physics-based motion, to animate the scroll position, to have directional rotation, and finally to animate attributes. Additionally, when you change HTML elements, the browser may need to do a layout which will require it to calculate the position and size of all the lements affected by the change. Changing one element may lead to the position and size of other elements to be recalculates, which then results in a loop of changing each element. Thus, one should avoid animating properties that trigger layout. According to the article "High Performance Animations" by Paul Lewis and Paul Irish, they discuss the difference between imperative and declarative animations. Imperative animations involve JavaScript which is both a pro and con. Since the main thread is busy with other JavaScript, style calculations, layout, and painting, there is often thread contention which increases the chance of missing animation frames. However, animating in JavaScript still grants you more control as opposed to CSS. CSS on the other hand is declarative animation. As stated before, an advantage of CSS animations is that the browser can optimize the animation but it comes at the price of not being as flexible as JavaScript.

My First Experience at a KPOP Concert

Contact Me:

Contact Form
Would you like a reply?