With CSS, how can we perform animation on the transform property?
To implement animation on transform property with CSS, you can try to run the following code:
Live Demo
<!DOCTYPE html> <html> <head> <style> div { margin: auto; border: 2px solid blue; width: 300px; height: 400px; background-color: orange; animation: myanim 3s; } @keyframes myanim { 30% { transform: rotate(120deg); } } </style> </head> <body> <h1></h1> <div> <h1>Demo</h1> </div> </body> </html>
We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy. Accept Learn more