zoukankan      html  css  js  c++  java
  • 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>  

  • 相关阅读:
    Mysql基本类型(字符串类型)——mysql之二
    MySQL 中索引的长度的限制
    MySQL索引长度限制
    WebStorm 2019 3.3 安装及破解教程附汉化教程 Jetbrains2020全系列 2020.1.2 最新激活补丁
    用Swoole4 打造高并发的PHP协程Mysql连接池
    phpsocket.io
    php并发加锁
    PHP字符串全排列算法
    php beast windows编译教程
    使用PHP-Beast加密你的PHP源代码
  • 原文地址:https://www.cnblogs.com/jeryM/p/7800493.html
Copyright © 2011-2022 走看看