zoukankan      html  css  js  c++  java
  • css动画帧

    1.动画帧

    <style type="text/css">
                    .box{
                        width: 500px;
                        height: 200px;
                        background-color: gold;
                        animation-name: fromLeftToRight;
                        animation-duration: 1s;
                        animation: fromLeftToRight .5s infinite;
                        animation-delay: 0s;
                        animation-timing-function: ease-in;
                    }
                    @keyframes fromLeftToRight{
                        from{
                            margin-left: 0;
                        }
                        to{
                            margin-left: 1300px;;
                        }
                    }
                    .pp{
                        width: 500px;
                        height: 200px;
                        background-color: blue;
                        animation-name: FromLeftToRight;
                        animation-duration: 1s;
                        animation: FromLeftToRight .5s infinite;  /*无限循环*/
                        animation-delay: 2s;
                    }
                    @keyframes FromLeftToRight{
                        from{
                            margin-left: 0;
                        }
                        to{
                            margin-left: 1300px;
                        }
                    }
                    .pi{
                        width: 500px;
                        height: 200px;
                        background-color: red;
                        animation-name: FromLeftToRight;
                        animation-duration: 1s;
                        animation: LeftToRight .5s infinite;
                        animation-delay: 4s;
                    }
                    @keyframes LeftToRight{
                        from{
                            margin-left: 0;
                        }
                        to{
                            margin-left: 1300px;;
                        }
                    }
                </style>

    动画帧

     
     
     
  • 相关阅读:
    <转>css选择器基本语法
    Pycharm错误提示
    Python继承Selenium2Library
    对于框架设计的一点总结
    <转>自动化框架设计思想
    svn检出项目报错
    eclipse查看jar包源文件
    plsql连接远程数据库快捷方式
    plsql过期注册
    hql语句cast用法
  • 原文地址:https://www.cnblogs.com/Johnon/p/5773339.html
Copyright © 2011-2022 走看看