2d Transform

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

Transform Scale

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

Translate

here is the relevevant code

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