zoukankan      html  css  js  c++  java
  • 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 {
                100%;
                margin:50px auto;
                text-align: center;

            }

            img {
                 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>
     
  • 相关阅读:
    博客园博客备份
    前后端对字段去除首尾空白
    StringEscapeUtils类的转义与反转义方法
    validatebox自定义验证规则以及使用
    mybatis动态sql中的trim标签的使用
    异步IO
    tomcat_下载
    JDK__下载地址
    Eclipse_下载地址
    Linux守护进程
  • 原文地址:https://www.cnblogs.com/lwming/p/11576041.html
Copyright © 2011-2022 走看看