css3动画

image.png
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title></title>
    <style type="text/css">
    *{
        margin: 0;
        padding: 0;
    }
     .den{
            width: 250px;
            height: 250px;
            border: 1px solid  #999;
            margin: 50px;
        }
       .loading{
            width: 200px;
            height: 200px;
            line-height: 200px;
            text-align: center;
            position: relative;
            margin: 25px;
            color: #999;
            border-radius: 50%;
            border: 1px solid #ddd;
       }

       .loading:after{
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: -10px;
            left: 0;
            right: 0;
            margin: auto;
            background: #ddd;
            transform-origin: center 110px;
            animation: loading 2s linear  infinite;
       }
       .three,
       .two,
       .first{
            display: inline-block;
            opacity:0.5;
            animation: jump 1s linear alternate infinite;
       }
       .two{
            animation: jump 2s linear alternate infinite;
       }
       .three{
            animation: jump 3s linear alternate infinite;
       }
       @keyframes loading {
            0%{
                transform: rotate(0);
            }
            100%{
                transform: rotate(360deg);
            }
       }
       @keyframes jump{
            0%{
                opacity: 0;
            }
            100%{
                opacity: 1;
            }
       }

        .den2{
            width: 250px;
            height: 250px;
            border: 1px solid  #999;
            margin-left: 300px;
            margin-top: -302px;
            position: relative;
        }
        .list{
            position: absolute;
            left: 100px;
            top: 100px;
        }

       li{
          width: 5px;
          height: 30px;
          background-color: #84D2FA;
          float: left;
          list-style: none;
          margin: 1px ;
          transform-origin: center ;
          animation: run 2s alternate infinite;
      }
      .list>li:nth-child(1)
      {
        animation-delay: 0.1s;
      }
      .list>li:nth-child(2)
     {
       animation-delay: 0.2s;
     }
      .list>li:nth-child(3)
      {
        animation-delay: 0.3s;
      }
      .list>li:nth-child(4)
      {
        animation-delay: 0.4s;
      }
      .list>li:nth-child(5)
      {
        animation-delay: 0.5s;
      }
      .list>li:nth-child(6)
      {
        animation-delay: 0.6s;
      }
      .list>li:nth-child(7)
      {
        animation-delay: 0.7s;
      }
      .list>li:nth-child(8)
      {
        animation-delay: 0.8s;
      }
      @keyframes run{
        0%{
          transform : scale(1,1);
        }
        100%{
         transform : scale(1,2);
        }
      }

      .den3{
        width: 250px;
        height: 250px;
        border: 1px solid  #999;
        margin-top: -252px;
        margin-left: 550px;
      }
      .squale{
         width: 150px;
         height: 150px;
         margin-top: 45px;
         margin-left: 45px;
         background: #84D2FA;
         animation: squl 3s linear  infinite;
      }
      @keyframes squl{
         0% {
            transform: rotate(0);
         }
         10%{
            transform: rotate(90deg);
            border-radius: 50%;
         }
         25%{
            transform: rotate(90deg);
            border-radius: 50%;
         }
        35%{
            transform: rotate(180deg);
            border-radius: 0;
         }
         50%{
            transform: rotate(180deg);
            border-radius: 0;
         }
         65%{
            transform: rotate(270deg);
            border-radius: 50%;
         }
         75%{
            transform: rotate(270deg);
            border-radius: 50%;
         }
         85%{
            transform: rotate(360deg);
            border-radius: 0;
         }
         100%{
            transform: rotate(360deg);
            border-radius: 0;
         }


      }

     .den4{
        width: 250px;
        height: 250px;
        border: 1px solid  #999;
        margin-left: 800px;
        margin-top: -252px;
        position: relative;
     }
     .ball{
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-top: 80px;
        margin-left: 80px;
        background: radial-gradient(at 20px 20px, #fff, #33CC99);
        animation: bounce 0.8s ease-in infinite alternate;
     }
     .ball2 {
          position: absolute;
          left: 100px;
          bottom: 20px;
          width: 40px;
          height: 10px;
          background: #eee;
          border-radius: 50%;
          animation: bounce2 0.8s ease-in infinite alternate;
    }

     @keyframes bounce {
      0% {
        transform: translate(0, 0);
      }
      100% {
        transform: translate(0, 60px);
      }
    }
    @keyframes  bounce2 {
        0%{
           transform: scale(1);
        }
        100%{
            transform: scale(2);
        }
    }
    .den5{
        width: 250px;
        height: 250px;
        border: 1px solid #999;
        margin-left: 50px;

     }
     .progress{

        width: 230px;
        height: 40px;
        border: 1px solid #33CC99;
        margin-left: 10px;
        margin-top: 105px;
     }
     .progress-value{
        position: relative;
        display: block;
        height: 100%;
        width: 70%;
        background-image: linear-gradient(to right, rgba(51, 204, 153, 0.2), #33CC99);
       }
     .progress-value:after{
         content: '';
         position: absolute;
         left: 0;
         top: 0;
         z-index: 2;
         height: 100%;
         width: 0;
         background-image: linear-gradient(to right, rgba(51, 204, 153, 0.2), #33CC99);
         animation: progress 1s linear infinite;
     }
     @keyframes progress{
        0%{
            width: 0px;
        }
        100%{
            width: 100%;
        }
     }
     .den10,
     .den6{
            width: 250px;
            height: 250px;
            border: 1px solid #999;
            margin-left: 300px;
            margin-top: -252px;
    }
    .progress2{
        width: 230px;
        height: 40px;
        border: 1px solid #33CC99;
        margin-left: 10px;
        margin-top: 105px;
     }
     .progress2:after{
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        background: #33CC99;
        animation: progress2 1s linear alternate infinite;
     }
      @keyframes progress2{
        0%{
            transform: translate(0,0);
        }
        100%{
            transform: translate(190px,0);
        }
     }
     .den7{
            width: 250px;
            height: 250px;
            border: 1px solid #999;
            margin-left: 551px;
            margin-top: -252px;
    }
    .progress3{
        width: 230px;
        height: 40px;
        border: 1px solid #33CC99;
        margin-left: 10px;
        margin-top: 105px;
        overflow: hidden;
     }
     .progress3:after{
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        margin-left: -40px;
        background: #33CC99;
        animation: progress3 1s linear infinite;
     }
     @keyframes progress3{
        0%{
            transform: translate(0,0);
        }
        100%{
            transform: translate(230px,0);
        }
     }

     .den8{
        width: 250px;
        height: 250px;
        border: 1px solid #999;
        margin-left: 801px;
        margin-top: -252px;
     }
     .runman{
        width: 140px;
        height: 140px;
        background-image: url("run-man.jpg");
        margin-top: 40px;
        margin-left: 40px;
        animation: runman 1s steps(8) infinite;
     }
     @keyframes runman{
        0%{
          background-position: 0,0;
        }
        100%{
          background-position: -1120px,0;
        }
     }
     .den9{
        width: 250px;
        height: 250px;
        border: 1px solid #999;
        margin-left: 50px;
     }
     .eat {
      position: relative;
      width: 250px;
      height: 250px;
    }
    .eat .head {
      position: relative;
      margin-right: 20px;
    }
    .eat .head:before, .eat .head:after {
      content: '';
      width: 20px;
      height: 40px;
      background: #33CC99;
      border-radius: 40px 0 0 40px;
      position: absolute;
      margin-top: 110px;
      transform-origin: right center;
    }
    .eat .head:before {
      transform: rotate(45deg);
      animation: eat1 0.3s linear infinite alternate;
    }
    .eat .head:after {
      transform: rotate(-45deg);
      animation: eat2 0.3s linear infinite alternate;
    }
    .eat .pointer {
      overflow: hidden;
      margin-left: 20px;
      padding-top: 120px;
    }
    .eat i {
      float: left;
      width: 16px;
      height: 16px;
      margin-left: 10px;
      border-radius: 50%;
      background: #33CC99;
      animation: eat 2s linear infinite;
    }
    .eat i:nth-child(1) {
      animation-delay: 0s;
    }
    .eat i:nth-child(2) {
      animation-delay: 0.3s;
    }
    .eat i:nth-child(3) {
      animation-delay: 0.6s;
    }
    .eat i:nth-child(4) {
      animation-delay: 0.9s;
    }
    @keyframes eat{
      0%{
        transform: translate(0,0);
        opacity: 1;
      }
      25%{
        transform: translate(-60px,0);
        opacity: 1;
      }
      50%{
        transform: translate(-120px,0);
        opacity: 0;
      }
      75%{
        transform: translate(-60px,0);
        opacity: 0;
      }
      99%{
        transform: translate(0,0);
        opacity: 0;
      }
     100%{
        transform: translate(0,0);
        opacity: 1;
      }
    }
    @keyframes eat1{
      100%{
        transform: rotate(90deg);
      }
    }
    @keyframes eat2{
      100%{
        transform: rotate(-90deg);
      }
    }
    .dic{
        width: 150px;
        height: 100px;
        background: #33CC99;
        margin-top: 75px;
        margin-left: 50px;
        animation: shake 0.2s linear infinite;
    }
    @keyframes shake{
          0%{
            transform:translate(0,5px);
          }
          25%{
           transform:translate(5px,0);
           }
         50%{
           transform:translate(0,-5px);
           }
         75%{
           transform:translate(-5px,0px);
           }
         100%{
           transform:translate(0,5px);
         }
    }
    </style>

</head>
<body>
    <div class="den">
         <div class="loading">
             loading <div class="first">.</div><div class="two">.</div><div class="three">.</div>
        </div>
    </div>
    <div class="den2">
         <ul class="list">
            <li></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
        </ul>
    </div>
    <div class="den3">
        <div class="squale">

        </div>
    </div>
    <div class="den4">
        <div class="ball"></div><div class="ball2"></div>
    </div>
    <div class="den5">
            <div class="progress">
                <i class="progress-value"></i>
            </div>
    </div>
    <div class="den6">
            <div class="progress2">

            </div>
    </div>
    <div class="den7">
            <div class="progress3">

            </div>
    </div>
    <div class="den8">
          <div class="runman"></div>
    </div>
    <div class="den9">
          <div class="eat">
          <div class="head"></div>

          <div class="pointer">
            <i></i>
            <i></i>
            <i></i>
            <i></i>
          </div>
        </div>

    </div>
    <div class="den10">
        <div class="dic">

        </div>
    </div>
</body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,014评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,796评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,484评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,830评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,946评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,114评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,182评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,927评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,369评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,678评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,832评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,533评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,166评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,885评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,128评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,659评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,738评论 2 351

推荐阅读更多精彩内容