zoukankan      html  css  js  c++  java
  • css3 loading 效果3

    代码:

    <!doctype html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
    #box{position: relative;margin: 100px;}
    #box span{
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        background-color: #3498db;
        opacity: 0.5;
        border-radius: 50%;
        -webkit-animation:preloader 1s infinite ease-in-out;
    }
    #box span:nth-child(2){left: 20px;-webkit-animation-delay:0.2s;}
    #box span:nth-child(3){left: 40px;-webkit-animation-delay:0.4s;}
    #box span:nth-child(4){left: 60px;-webkit-animation-delay:0.6s;}
    #box span:nth-child(5){left: 80px;-webkit-animation-delay:0.8s;}
    @-webkit-keyframes preloader{
        0%{opacity: 0.3;-webkit-transform:translateY(0px);box-shadow: 0px 0px 3px rgba(0,0,0,0.1);}
        50%{opacity: 1;-webkit-transform:translateY(-10px);box-shadow: 0px 20px 3px rgba(0,0,0,0.05);background-color: #f1c40f;}
        100%{opacity: 0.3;-webkit-transform:translateY(0px);box-shadow: 0px 0px 3px rgba(0,0,0,0.1);}
    }
    </style>
    </head>
    <body>
        <div id="box">
            <span></span>
            <span></span>
            <span></span>
            <span></span>
            <span></span>
        </div>
    </body>
    </html>

    效果图:

    高否?富否?帅否? 否? 滚去学习!
  • 相关阅读:
    1058 A+B in Hogwarts (20)
    1046 Shortest Distance (20)
    1061 Dating (20)
    1041 Be Unique (20)
    1015 Reversible Primes (20)(20 分)
    pat 1027 Colors in Mars (20)
    PAT 1008 Elevator (20)
    操作系统 死锁
    Ajax的get方式传值 避免& 与= 号
    让IE浏览器支持CSS3表现
  • 原文地址:https://www.cnblogs.com/baixc/p/4430434.html
Copyright © 2011-2022 走看看