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>

    动画帧

     
     
     
  • 相关阅读:
    Go学习2-切片
    Go学习1-MOD
    lua学习之逻辑运算符not,and,or
    google protobuf c++ 反射
    我要谴责一下,你们复制别人的答案好歹仔细看看
    远程登录redis
    openssl进行RSA加解密(C++)
    linux通过进程名查看其占用端口
    简体字丶冯|服务网关kong-docker安装
    简体字冯|docker-安装docker私有库
  • 原文地址:https://www.cnblogs.com/Johnon/p/5773339.html
Copyright © 2011-2022 走看看