CSS3 animation属性 实现转动效果

Posted lwming

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS3 animation属性 实现转动效果相关的知识,希望对你有一定的参考价值。


<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <meta charset="utf-8">
    <title>旋转效果</title>
    <style>


        div 
            width:100%;
            margin:50px auto;
            text-align: center;

        

        img 
            width: 200px;
            height: 200px;
            border-radius: 100px;
            animation: run 5s linear infinite;
            -webkit-animation: run 5s linear infinite;
            animation-play-state: running;
            -webkit-animation-play-state: running;
        

        img:hover 
            animation-play-state: paused;
            -webkit-animation-play-state: paused;
        

        @keyframes run 
            0% 
                transform: rotate(0deg);
            

            100% 
                transform: rotate(360deg);
            
        

        @-webkit-keyframes run 
            0% 
                transform: rotate(0deg);
            

            100% 
                transform: rotate(360deg);
            
        
    </style>
</head>

<body>
    <div>
        <img src="bg.png" />
    </div>
</body>

</html>
 

 

以上是关于CSS3 animation属性 实现转动效果的主要内容,如果未能解决你的问题,请参考以下文章

基于CSS3新属性Animation及transform实现类似翻书效果

css3 animation

css3动画使用

CSS3实践之路:CSS3的过渡效果(transition)与动画(animation)

CSS3:属性transition和animation的用法

css3 动画库Animate.css使用