• CSS3简单的动画


    Fix Bug
    <style>
    .demo{
            width:80px;
            height:80px;
            text-align:center;
            line-height:80px;
            background:#f80;
            border:3px solid #eee;
            color:#fff;
            -webkit-animation: animate 3s .5s ease infinite alternate;
            -moz-animation: animate 3s .5s ease infinite alternate;
        }
    @-webkit-keyframes animate{
            from {
                background:#f00;
                -webkit-transform:translate(0px) rotate(0deg);
                }
            to {
                background:#33C;
                -webkit-transform:translate(200px) rotate(360deg);
                }
        }
    @-moz-keyframes animate{
            from {
                background:#f00;
                -moz-transform:translate(0px) rotate(0deg);
                }
            to {
                background:#33C;
                -moz-transform:translate(200px) rotate(360deg);
                }
        }        
    </style>

    <div class="demo">Fix Bug</div>

  • 相关阅读:
    常见压缩/解压缩及打包命令
    黑盒测试和白盒测试
    基础命令的操作

    转]DLL-多个进程间共享动态链接库的原理
    Ansi UNICODE,GBK,UTF-8区别
    Cppunit 源码 SynchronizedObject
    二分查找实现
    Androdi 开发学习四 Activity和Intent
    Android开发学习三:adb启动失败
  • 原文地址:https://www.cnblogs.com/fixbug/p/4007380.html
Copyright © 2020-2023  润新知