• 仿VS安装界面小球滑动效果


    在Visual Studio 2010后续版本的安装界面中,可以发现一组小球在滑动表示安装程序正在进行:

    于是尝试用CSS实现了一下。

    首先需要建立用来表示小球的html结构:

        <div class="container">
            <div class="circle c1"></div>    
            <div class="circle c2"></div>    
            <div class="circle c3"></div>    
            <div class="circle c4"></div>    
            <div class="circle c5"></div>
        </div>

    用5个div分别表示5个小球,并加入样式:

            .container{
                width: 500px;
                background: #000;
                height: 300px;
                position: relative;
            }
            .circle{
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(255,255,255,0.6);
                position: absolute;
                left: -10px;
                top:50%;
                margin-top: -5px;
            }

    之后需要考虑小球的运动效果,于是给样式circle加入缓动样式:

            .circle{
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(255,255,255,0.6);
                position: absolute;
                left: -10px;
                top:50%;
                margin-top: -5px;
                transition:left 0.4s linear;
                animation-duration: 3s;
                animation-iteration-count: infinite;
                animation-timing-function: ease;
                backface-visibility: hidden;
            }

    另外小球有先后顺序,需要使用CSS3中的keyframes来实现顺序:

            @keyframes bounce1 {
                5%{left:-3%;}
                60%{left:55%;}
                88%{left:102%;}
                100%{left:102%;}
            }
            @keyframes bounce2 {
                10%{left:-5%;}
                66%{left:52%;}
                91%{left:102%;}
                100%{left:102%;}
            }
            @keyframes bounce3 {
                15%{left:-7%;}
                72%{left:49%;}
                94%{left:102%;}
                100%{left:102%;}
            }
            @keyframes bounce4 {
                20%{left:-9%;}
                78%{left:46%;}
                97%{left:102%;}
                100%{left:102%;}
            }
            @keyframes bounce5 {
                25%{left:-11%;}
                80%{left:43%;}
                100%{left:102%;}
            }
            .c1{animation-name: bounce1;}
            .c2{animation-name: bounce2;}
            .c3{animation-name: bounce3;}
            .c4{animation-name: bounce4;}
            .c5{animation-name: bounce5;}

    实现后的效果如下:

     
  • 相关阅读:
    水库采样算法
    在Windows的控制台和Linux的终端中显示加载进度
    如何在普通用户权限cmd怎么使用命令行变为管理员权限
    MySql命令行无法显示中文
    MySql精简
    C语言中的数据类型转换函数
    关于C语言命令行参数问题
    postgres 基本操作
    简单的实现HTTP密码验证登陆
    filebeat+logstash配置
  • 原文地址:https://www.cnblogs.com/undefined000/p/ball_slide_effect.html
Copyright © 2020-2023  润新知