View on GitHub

reading-notes

My learning journal for Code Fellows

Class 14 Reading Notes

What Google Learned from Trying to Create the perfect team

CSS Transforms

A great reference for CSS

Transforming within CSS means to change the size, position, and element itself.

Ex: to rotate an element with the class of box 20 degrees clockwise

  .box1{
      transform: rotate(20deg);
  }

Transitions

Transitions allow someone to manipulate the visual transitions in their images right form CSS with no influence from JavaScript or Flash

Things I want to know more about

Honestly this is the first reading that has gotten me excited about using CSS. With this reading’s knowledge, there is a ton of stuff that can be done with CSS aside form how it statically looks on the page. I would like to investigate further of how these applications of CSS in a dynamic setting could create a deeper interaction with the user