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>

    动画帧

     
     
     
  • 相关阅读:
    JavaScript 基础,登录前端验证
    CSS实例:图片导航块
    导航,头部,CSS基础
    web基础,用html元素制作web页面
    web基础
    timestamp与timedelta,管理信息系统概念与基础
    datetime处理日期和时间
    Linux操作系统编程 实验五 块设备实验
    Linux操作系统编程 实验四 字符设备实验
    Linux操作系统编程 实验三 模块编程实验
  • 原文地址:https://www.cnblogs.com/Johnon/p/5773339.html
Copyright © 2011-2022 走看看