CSS Animation

Inspired by the Medium post - A Guide to CSS Animation by Jhey Tompkins and the book CSS: The Definitive Guide: Visual Presentation for the Web, 4th Edition by Eric A. Meyer and Estelle Weyl.

CSS Animations add a degree of polish to a user interface. Animations can give users valuable information about how to use a website. Animations also can reflect on a high degree of professionalism and set it apart from websites that don’t use animations. Animations can be applied via CSS using two common methods - transition and animation.

Transform

There are several ways to change the position or shape of an element using the transform property. By itself, transform will be applied to an element without any animation.

Translate

/* translation functions accepts a length or percentage value */
div {
  transform: translate(100px, 20%);
}

h2 {
  transform: translateX(200em);
}

aside {
  transform: translateY(10%);
}

Scale

/* scale functions accept a number value */
section {
  transform: scale(2); /* will scale along the X and Y axes the same value */
}

article {
  transform: scale(3, 0.5);
}

div.picture {
  transform: scaleY(2.5);
}

Rotate

Rotation occurs as a flat 2 dimensions without using changing the perspective unless this is specified as with using the perspective() function.

/* rotate functions accept an angle value - degrees, gradians, radians or turns */
div {
  transform: rotate(45deg);
}

h3 {
  transform: rotate(1turn);
}

Perspective

Perspective is needed for elements that are transformed in 3D space. Lower numbers result in more extreme perspective versus higher numbers.

Perspective can be applied two ways.

  1. As a function within the transform property definition:

  2. As a property

/* perspective as a function */
div {
  transform: perspective(200px) rotateX(45deg);
}

/* perspective as a property */
div.pictures {
  perspective: 400px;
}

Transform-Origin

/* transform-origin - default behavoir is to rotate an object around it's center */
div {
  transform-origin: 0 100%;
  transform: rotate(45deg);
}

Transform-Style

/* transform-style - either the values flat or preserve-3d */
div {
  transform: perspective(300px) rotateX(25deg);
  transform-style: preserve-3d;
}
/* perspective-origin - defining the point where the sight lines convere */
div {
  perspective: 500px;
  perspective-origin: 0 10%;
}

Transition

Using the transition property in conjunction with properties like transform or opacity will produce an animation. The animation can be applied upon rendering of the element or using other means like a :hover pseudo-class.

Transition

/* transitions are applied to elements using transition properties */
div {
  transition-property: transform;
  transition-duration: 200ms;
  transition-timing-function: ease-in;
  transition-delay: 50ms;
}

div:hover {
  transform: rotate(360deg);
  transform-origin: center center;
}

Multiple properties can be transitioned at once by using the all value for the transition-property property. The shorthand for the transition property is transition: transition-property transition-duration transition-timing-duration transition-delay.

/* transition scale and opacity */
div {
  width: 100px;
  height: 100px;
  background-color: green;
  transition: all 3s ease-out 1s;
}

div:hover {
  opacity: 0.5;
  transform: scale(1.25);
}

Working Example - Transition

See the Pen CSS Animation - Transition by Robert Laws (@robert_laws) on CodePen.

Keyframes

Defining keyframes allows for significant power over the application of animations in CSS. Using the keyframes feature also allows for organization of animations and the ability to apply multiple keyframe animations to a single element.

Setting up Keyframes

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    background-color: red;
  }
  100% {
    transform: scale(1);
  }
}

Applying Keyframes for an Animation

div {
  animation: grow 2s ease-in 0.2s infinite normal;
}

button {
  animation: grow 1s, fadeout 2s;
}

Working Example - Keyframes and Animation

See the Pen CSS Animation - Keyframes by Robert Laws (@robert_laws) on CodePen.

category: