This article mainly introduces the animation effect of html5 to achieve image rotation - related information to make the page move. Friends who need it can refer to it
1. Take a look at the effect first:
2. The code is like this:
<img src="images/circle.png" alt="" id="circle"/> @mixin ani-btnRotate{ @keyframes btnRotate{ from{transform: rotateZ(0);} to{transform: rotateZ(360deg);} } } @include ani-btnRotate; #circle{ position: absolute; left: 50%; width: REM(338); height: REM(338); margin-top: REM(200); margin-left: REM(-338/2); transform-origin: center center ; animation: btnRotate 1s 1s linear forwards; }
Used The picture of Please pay attention to the PHP Chinese website for content!
#Using HTML5
How to draw polygons such as triangles and rectangles with Canvas
The above is the detailed content of How to achieve the animation effect of picture rotation in html5. For more information, please follow other related articles on the PHP Chinese website!