animation :: 2d Transform

Transform: Rotate

here is the relevevant code

#html5{ transition: transform 0.5s; } #html5:hover { transform:rotate(45deg); }

Transform: Scale

here is the relevevant code

#css3{ transition: transform 0.5s; } #css3:hover { transform: scale(2); }

Transform: Translate

here is the relevevant code

#car{ transition: transform 0.5s; } .move-right { transform: translateX(900px); }