CSS3 animation属性 实现转动效果

▼魔方 西西 提交于 2019-11-30 08:35:24

<!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>
 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!