2d transforms

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); }

translate

here is the relevevant code

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