Method: 1. Use the "element {animation:name time}" statement to bind the rotation and scaling animation to the element; 2. Use "@keyframes name {100%{transform:rotate(rotation angle) scale(scale) Proportion);}}" statement to achieve the rotation and scaling animation effect.
The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.
How to achieve rotation and scaling animation effects in css3
In css, you can use the animation attribute to bind rotation and scaling animations to elements.
Use the @keyframes rule to set the animation action keyframes of the element, use the transform attribute with the rotate() function to set the element rotation action, and use the transform attribute with the scale() function to set the element scaling action.
The example is as follows:
Output result:
(Learning video sharing:css video tutorial)
The above is the detailed content of How to achieve rotation and scaling animation effect in css3. For more information, please follow other related articles on the PHP Chinese website!