• js进度条


    第一步
    //====================
    .wrap,.circle,.percent{  
                    position: absolute;  
                    200px;  
                    height: 200px;  
                    border-radius: 50%;  
                }  
                .wrap{  
                    top:50px;  
                    left:50px;  
                      
                }  
                .circle{  
                    box-sizing: border-box;  
                    border:20px solid #ccc;  
                    clip:rect(0,200px,200px,100px);  
                }  
                .clip-auto{  
                    clip:rect(auto, auto, auto, auto);  
                }  
                .percent{  
                    box-sizing: border-box;  
                    top:-20px;  
                    left:-20px;  
                }  
                .left{  
                    transition:transform ease;  
                    border:20px solid blue;  
                    clip: rect(0,100px,200px,0);  
                }  
                .right{  
                    border:20px solid blue;  
                    clip: rect(0,200px,200px,100px);  
                }  
                .wth0{  
                    0;  
                }  
                .num{  
                    position: absolute;  
                    box-sizing: border-box;  
                    160px;  
                    height: 160px;  
                    line-height: 160px;  
                    text-align: center;  
                    font-size: 40px;  
                    left: 20px;  
                    top: 20px;  
                    border-radius: 50%;  
                      
                    z-index: 1;  
                }  


    第二步
    //===============
    <div class="wrap">  
                <div class="circle">  
                    <div class="percent left"></div>  
                    <div class="percent right wth0"></div>  
                </div>  
                <div class="num"><span>0</span>%</div>  
            </div>  




    第三步
    //===============

    <script>  
        var percent=0;  
        var loading=setInterval(function(){  
            if(percent>100){  
                percent=0;  
                $('.circle').removeClass('clip-auto');  
                $('.right').addClass('wth0');  
            }else if(percent>50){  
                $('.circle').addClass('clip-auto');  
                $('.right').removeClass('wth0');  
            }  
            $('.left').css("-webkit-transform","rotate("+(18/5)*percent+"deg)");  
            $('.num>span').text(percent);  
            percent++;  
        },200);  
    </script>  

  • 相关阅读:
    Java泛型-类型擦除
    static加载问题
    当使用System,out.println()打印一个对象是自动调用toString方法
    python——变量作用域及嵌套作用域
    Python 构造函数、 Python 析构函数、Python 垃圾回收机制
    python——type()创建类
    HTML4,HTML5,XHTML 之间有什么区别?
    斐波那契数列算法分析
    python——iterator迭代器|iterator详解——20140918|
    django model filter 条件过滤,及多表连接查询、反向查询,某字段的distinct
  • 原文地址:https://www.cnblogs.com/jeryM/p/7800493.html
Copyright © 2020-2023  润新知