Transforms in the Wild

A journey through the absurd and beautiful world of CSS transforms

Transforms for Fun and Profit

Learn the art of transforming the mundane into the sublime

But first, let's animate it!
Animations
          .example {
            transform: scale(2);
            background-color: #f7dc6f;
          }
          .example2 {
            transform: rotate(45deg);
            background-color: #666;
          }
          .example3 {
            transform: skewX(30deg);
            background-color: #333;
          }
        
More Transform Tricks

And for the adventurous:

Transforms for the Faint of Heart