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>

    动画帧

     
     
     
  • 相关阅读:
    如何获取antlr解析的错误消息?(完美)
    2021最新版保姆级Journal Citation Reports使用
    【 Linux系统 】Centos下Linux启动时默认内核设置机制
    留言板
    友链
    java enum简记
    java enum多路分发下浅识表驱动式编程
    c语言建立和调用dll
    scanf
    js学习1 —— 类型,值,变量
  • 原文地址:https://www.cnblogs.com/Johnon/p/5773339.html
Copyright © 2011-2022 走看看