zoukankan      html  css  js  c++  java
  • css3 切换贞动画的效果,仿gif效果

    /*---第一组动画---*/
        .cartonGif_1{
            position: absolute;
            display: block;
            background:url("img/haihangzhuanqu/0-1.png") no-repeat center center/100% 100% ;
            -webkit-animation-name: charector-1;/* 动画名称 */
            -webkit-animation-iteration-count: infinite;/* 动画无限播放 */
            -webkit-animation-timing-function: step-start;/* 马上跳到动画每一结束桢的状态 */
            -webkit-animation-duration: 950ms;/* 动画运行的时间 */
        }
        @-webkit-keyframes charector-1{
            0% {background-position: 0 0;}
            25% {background:url("img/haihangzhuanqu/0-1.png")  no-repeat center center/100% 100%;}
            50% {background:url("img/haihangzhuanqu/0-2.png")  no-repeat center center/100% 100%;}
            75% {background:url("img/haihangzhuanqu/0-3.png")  no-repeat center center/100% 100%;}
            100% {background:url("img/haihangzhuanqu/0-4.png")  no-repeat center center/100% 100%;}
        }
        /*---第二组动画---*/
        .cartonGif_2{
            position: absolute;
            display: block;
            background:url("img/haihangzhuanqu/1-1.png")  no-repeat center center/100% 100%;
            -webkit-animation-name: charector-2;/* 动画名称 */
            -webkit-animation-iteration-count: infinite;/* 动画无限播放 */
            -webkit-animation-timing-function: step-start;/* 马上跳到动画每一结束桢的状态 */
            -webkit-animation-duration: 950ms;/* 动画运行的时间 */
        }
        @-webkit-keyframes charector-2{
            0% {background-position: 0 0;}
            25% {background:url("img/haihangzhuanqu/1-1.png")  no-repeat center center/100% 100%;}
            50% {background:url("img/haihangzhuanqu/1-2.png")  no-repeat center center/100% 100%;}
            75% {background:url("img/haihangzhuanqu/1-3.png")  no-repeat center center/100% 100%;}
            100% {background:url("img/haihangzhuanqu/1-4.png")  no-repeat center center/100% 100%;}
        }
  • 相关阅读:
    音视频入门-15-手动生成一张JPEG图片
    音视频入门-14-JPEG文件格式详解
    音视频入门-13-使用开源库生成PNG图片
    微信小程序笔记
    JS找到嵌套在iframe内联框架中的table表头元素
    京东 PC 首页 2019 改版前端操作总结
    web前端开发中各种图片引入方式及其优缺点
    10个面向前端开发人员的安全提示
    HTML/CSS switch开关 (包括JS控制checked选择)
    Echarts常用属性含义
  • 原文地址:https://www.cnblogs.com/Kummy/p/4882315.html
Copyright © 2011-2022 走看看