Home > Web Front-end > H5 Tutorial > body text

Introduction to the implementation method of the animation effect of making pictures rotate in html5

黄舟
Release: 2018-05-16 11:04:19
Original
3964 people have browsed it

1. Take a look at the effect first:

Introduction to the implementation method of the animation effect of making pictures rotate in html5

2. The code is like this:

The picture used by
<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;
    }
Copy after login

is this: (It is the white rotating picture)

Introduction to the implementation method of the animation effect of making pictures rotate in html5

The above is the detailed content of Introduction to the implementation method of the animation effect of making pictures rotate in html5. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!