This website will show the animation for 2D transform

Rotation

Here is the relevant code

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

Transform scale

Here is the relevant code
#fl0m{
transition: transform 0.5s;
}

#fl0m:hover {
transform: scale(1.5);
}


Translate

Here is the relevant code #car{ transition: trasnform 0.5; } .move-right{ transform: translate(900px);}