css3實現圓環進度條方法

來源:互聯網
上載者:User
剛開始寫這個圓環的時候是參照文章上給出的css代碼代入,然後根據自己的需求改,發現圓環可以完美轉動了,但是好像沒法用百分比控制,所以放棄了隨便copy一個現成的想法,該動動腦子還是有必要的。

實現原理

css實現圓環的方法很多,我看大部分都是採用邊框(border)+ 裁剪(clip:rect())來實現的,所以我也準備採用這種方式。

主要是布局問題,我看大部分圓環進度條都大同小異,就是布局和轉動方式不同

// html <p id="loading" class="loading">    <p class="circle">        <p class="percent left"></p>        <p class="percent right wth0"></p>    </p>    <p class="per"></p></p>// css .loading {  position: fixed;  top: 50%;  left: 50%;  overflow: hidden;  z-index: 9999;  -webkit-transform: translate(-50%,-50%);          transform: translate(-50%,-50%);}.circle{  -webkit-box-sizing: border-box;     -moz-box-sizing: border-box;          box-sizing: border-box;  border:10px solid #fff;  clip:rect(0,100px,100px,50px);}.clip-auto{  clip:rect(auto, auto, auto, auto);}.percent{  -webkit-box-sizing: border-box;     -moz-box-sizing: border-box;          box-sizing: border-box;  top:-10px;  left:-10px;}.left{  -webkit-transition:-webkit-transform ease;  transition:-webkit-transform ease;  transition:transform ease;  border:10px solid #E54B00;  clip: rect(0,50px,100px,0);}.right{  border:10px solid #E54B00;  clip: rect(0,100px,100px,50px);}.wth0{  width:0;}// js$('.left').animate({    deg: per*3.6}, {    step: function(n, fx) {        if(per>180){            $('.circle').addClass('clip-auto');            $('.right').removeClass('wth0');        }        $(this).css({            "-webkit-transform":"rotate("+n+"deg)",            "-moz-transform":"rotate("+n+"deg)",            "transform":"rotate("+n+"deg)"        });    },    duration:500})

通過對 .circle(左右兩側圓環的父元素) 的裁剪只顯示左側的圓環,右側的圓環的寬度直接為 0 ,當進度條進行到50%的時候,即左側圓環轉動角度為 transform: rotate(180deg) ,將 .circle 的裁剪去掉 (.clip-auto),右側圓環的寬度恢複。基本就是這個套路。

jQuery的 動畫方法 animate() 的 step屬性

如果僅用

$(this).css({    "-webkit-transform":"rotate("+n+"deg)",    "-moz-transform":"rotate("+n+"deg)",    "transform":"rotate("+n+"deg)"});

來控制角度的轉動,沒有絲毫動畫顯得比較生硬,這時候就要考慮給它加個動畫了,而jq提供的 animate 對只有數字值可建立動畫,而字串類型的值無法建立動畫。

這時候需要用到 animate的step屬性了。

step介紹

animate的progress屬性是我們經常用的,對數字值的屬性進行操作,但是字串值的屬性卻並不能用它進行操作,這時候就需要step屬性了。

step 顧名思義就是對一段動畫進行步驟分解,在animate方法中,每一步具體是怎麼分解的,不是由我們設定的CSS屬性值和動畫時間長度來決定的,是由系統來決定的。

$(".left").animate({left:50},{    duration:100,    step:function(now,fx){        console.log(now) //控制台輸出,看看這個動畫被分解成了幾個片段    }});

這個地方主要是解釋為什麼在這裡給角度賦值,順便說明一下它到底將該值分成多少個片段並不是由我們人為控制的。

step方法的第二個參數——fx

$(".demo").animate({    first:2,    second:10}, {    step:function(n,fx){        // 動畫元素的每個動畫屬性每一次動畫效果的執行都將調用的函數。第1個參數是當前動畫正在改變的屬性的即時值(每1次動畫過程中,屬性值的即時反饋呈現);第2個參數為修改Tween 對象提供了一個機會來改變animate第1個參數中設定的屬性在動畫結束時的值。        // fx: jQuery.fx 原型對象的一個引用,其中包含了多項屬性,比如        // 執行動畫的元素:elem;        // 動畫正在改變的屬性:prop;        // 正在改變屬性的當前值:now;        // 正在改變屬性的結束值:end;        // 正在改變屬性的單位:unit;等                // 可在這裡改變animate第1個參數中設定的屬性second在動畫結束時的值        if(fx.prop=="second"){fx.end=5}        console.log(fx.prop+": "+n);    },    duration:2000})

相關推薦:

詳解canvas實現圓弧、圓環進度條的執行個體方法

利用CSS clip 實現音頻播放圓環進度條教程執行個體

使用css3來製作圓環進度條的執行個體

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.