您好,登錄后才能下訂單哦!
使用 css3怎么實現一個圓形進度條?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
html代碼
<div class="progressbar"> <div class="left-container"> <div class="left-circle"></div> </div> <div class="right-container"> <div class="right-circle"></div> </div> </div>
css代碼:
.progressbar{ position: relative; margin: 100px auto; width: 100px; height: 100px; border: 20px solid #ccc; border-radius: 50%; } .left-container,.right-container{ position: absolute; width: 70px; height: 140px; top:-20px; overflow: hidden; z-index: 1; } .left-container{ left: -20px; } .right-container{ right: -20px; } .left-circle,.right-circle{ position: absolute; top:0; width: 100px; height: 100px; border:20px solid transparent; border-radius: 50%; transform: rotate(-135deg); transition: all .5s linear; z-index: 2; } .left-circle{ left: 0; border-top-color: 20px solid blue; border-left-color: 20px solid blue; } .right-circle{ border-right-color: 20px solid blue; border-bottom-color: 20px solid blue; right: 0; }
二:控制進度條的js
為了使進度條的邏輯更健壯,js部分的實現需要考慮四中情況:
1、基礎值個更改后的值在同在右邊進度,
2、基礎值在右邊,更改后的值在左邊,
3、基礎值更改后的值同在左邊,
4、基礎值在左邊,更改后的值在右邊。
不管在那種情況下,核心需要考慮只有兩點:角度的變化和使用時間的多少。
第一種情況下,比較簡單,可以很簡單計算出角度的變化和使用時間的多少。首先,需要設定改變整個半圓的所需的時間值。設定之后,只要根據比例計算出改變的角度所需要的時間值即刻。代碼如下:
time = (curPercent - oldPercent)/50 * baseTime; //確定時間值為正 curPercent - oldPercent > 0 ? '' : time = - time; deg = curPercent/50*180-135;
第二種情況,稍微麻煩一點。因為中間有一個從右邊進度,到左邊進度的過渡。為了讓進度順暢的改變,這里我們需要使用定時器,在改變完右邊的部分之后,再修改左邊的部分。代碼如下:
//設置右邊的進度 time = (50 - oldPercent)/50 * baseTime; deg = (50 - oldPercent)/50*180-135; $rightBar .css({ transform: 'rotate('+ deg+ 'deg)', transition : 'all '+ time + 's linear' }) //延時設置左邊進度條的改變 setTimeout(function(){ time = (curPercent - 50)/50; deg = (curPercent - 50)/50*180 -135; $leftBar.css({ transform: 'rotate('+ deg+ 'deg)', transition : 'all '+ time + 's linear' }) }, Math.floor(time*1000));000));
第三種情況和第四種情況同前面情況類似,這里不再討論。
完整的控制進度條的函數的代碼如下(使用jQuery實現):
/** *設置進度條的變化 *@param {number} oldPercent 進度條改變之前的半分比 *@param {number} curPercent 進度條當前要設置的值 *@return {boolean} 設置成功返回 true,否則,返回fasle */ function setProgessbar(oldPercent, curPercent){ var $leftBar = $('#left-bar'); var $rightBar = $('#right-bar'); //將傳入的參數轉換,允許字符串表示的數字 oldPercent = + oldPercent; curPercent = + curPercent; //檢測參數,如果不是number類型或不在0-100,則不執行 if(typeof oldPercent ==='number' && typeof curPercent ==='number' && oldPercent >= 0 && oldPercent <= 100 && curPercent <= 100 && curPercent >= 0){ var baseTime = 1; //默認改變半圓進度的時間,單位秒 var time = 0; //進度條改變的時間 var deg = 0; //進度條改變的角度 if(oldPercent > 50){//原來進度大于50 if(curPercent>50){ //設置左邊的進度 time = (curPercent - oldPercent)/50 * baseTime; //確定時間值為正 curPercent - oldPercent > 0 ? '' : time = - time; deg = curPercent/50*180-135; $leftBar .css({ transform: 'rotate('+ deg+ 'deg)', transition : 'all '+ time + 's linear' }) }else{ //設置左邊的進度 time = (oldPercent - 50)/50 * baseTime; deg = (oldPercent - 50)/50*180-135; $leftBar .css({ transform: 'rotate('+ deg+ 'deg)', transition : 'all '+ time + 's linear' }) //延時設置右邊進度條的改變 setTimeout(function(){ time = (50 - curPercent)/50; deg = (50 - curPercent)/50*180 -135; $rightBar.css({ transform: 'rotate('+ deg+ 'deg)', transition : 'all '+ time + 's linear' }) }, Math.floor(time*1000)); } }else{//原來進度小于50時 if(curPercent>50){ //設置右邊的進度 time = (50 - oldPercent)/50 * baseTime; deg = (50 - oldPercent)/50*180-135; $rightBar .css({ transform: 'rotate('+ deg+ 'deg)', transition : 'all '+ time + 's linear' }) //延時設置左邊進度條的改變 setTimeout(function(){ time = (curPercent - 50)/50; deg = (curPercent - 50)/50*180 -135; $leftBar.css({ transform: 'rotate('+ deg+ 'deg)', transition : 'all '+ time + 's linear' }) }, Math.floor(time*1000)); }else{ //設置右邊的進度 time = (curPercent - oldPercent)/50 * baseTime; //確定時間值為正 curPercent - oldPercent > 0 ? '' : time = - time; deg = curPercent/50*180-135; $rightBar .css({ transform: 'rotate('+ deg+ 'deg)', transition : 'all '+ time + 's linear' }) } return true; } }else{ return false; } }
關于使用 css3怎么實現一個圓形進度條問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。