Problem:
Aspiring to rotate a loading icon continuously using CSS, the provided code fails to produce the desired animation. How can one effectively accomplish this rotation using CSS?
Solution:
To achieve endless rotation using CSS, employ the following steps:
Add CSS Animation Keyframes:
Apply Animation to Target Element:
Include Vendor Prefixes:
Example Code:
<code class="css">@-webkit-keyframes rotating { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes rotating { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .rotating { -webkit-animation: rotating 2s linear infinite; animation: rotating 2s linear infinite; }</code>
Html:
<code class="html"><div class="rotating" style="width: 100px; height: 100px; line-height: 100px; text-align: center;" >Rotate</div></code>
This revised code ensures continuous rotation of the element with endless iterations, resolving the issue faced with the previous attempt.
The above is the detailed content of How to Create an Endless CSS Rotation Animation?. For more information, please follow other related articles on the PHP Chinese website!