clip實現圓環進度條

小心夾手發表於2018-02-08

效果

環形進度條.gif

怎麼實現這樣一個圓環進度條的效果呢,可以使用canvas、svg、GIF等等方式,今天我們來說下使用css3怎麼來實現。

實現思路

圓環很簡單,一行cssborder-radius:50%即可實現,而且沒有相容性問題,什麼,你說IE,讓它滾...

我們這裡需要三個圓環,一個整的,兩個半的。大概畫了下圖

image.png

這裡半圓環我使用了clip進行裁剪,主要程式碼如下,

.left{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 10px solid lightblue;
	position:absolute;
	top: -10px;   /* 10的原因是因為邊框是10個畫素 */
	right: -10px;
	clip: rect(0 100px 200px 0);  /* 上面為0 右邊到100px
         下面200px 左邊到0 這個區域的我們裁剪出來 */ 
}

複製程式碼

右邊類似只是裁剪位置改了

.right{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 10px solid lightblue;
	position:absolute;
	top: -10px;  /* 10的原因是因為邊框是10個畫素 */
	right: -10px;
	clip: rect(0 200px 200px 100px);  /* 位置更改,計算可以參考上圖 */ 
}
複製程式碼

完整程式碼

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        div{
            box-sizing: border-box;
        }
        .box{
            width: 200px;
            height: 200px;
            position: relative;
            background-color: #ccc;
            border-radius: 50%;
            left: 40%;
            top: 200px;

        }
        .num{
            position: absolute;
            top: 50%;
            left: 50%;
            background: #fff;
            border-radius: 50%;
            width: 180px; 
            height: 180px;
            transform: translate(-50%, -50%);
            text-align: center;
            line-height: 180px;
            font-size: 32px;
        }
        
        
        .clip{
            width: 200px;
            height: 200px;
            position: absolute;
            border: 10px solid #ccc;
            border-radius: 50%;
            clip: rect(0, 200px, 200px, 100px);
        }
        .left{
            width: 200px;
            height: 200px;
            position: absolute;
            border: 10px solid lightblue;
            border-radius: 50%;
            clip: rect(0 100px 200px 0);
            top: -10px;
            left: -10px;
        }
        .right{
            width: 200px;
            height: 200px;
            position: absolute;
            border: 10px solid lightblue;
            border-radius: 50%;
            clip: rect(0 200px 200px 100px);
            top: -10px;
            left: -10px;
        }
        .width-none{
            width: 0;
        }
        .auto{
            clip: auto;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="clip">
            <div class="left"></div>
            <div class="right width-none"></div>
        </div>
        <div class="num">

        </div>
    </div>
    <script >
        let clip = document.querySelector('.clip'),
        left = document.querySelector('.left'),
        right = document.querySelector('.right'),
        num = document.querySelector('.num'),
        rotate = 0;
    
        let loop = setInterval(() => {
            if(rotate >= 100){
                rotate = 0;
                right.classList.add('width-none');
                clip.classList.remove('auto');
            } else if(rotate > 50){
                right.classList.remove('width-none');
                clip.classList.add('auto');
            }
            rotate++;
            left.style.transform = 'rotate('+ 3.6*rotate + 'deg)';
            num.innerHTML = `${rotate}%`
        },100)

    </script>
</body>
</html>

複製程式碼

簡單說下上面的程式碼

1、首先隱藏了右半圓,這是因為我們需要旋轉的是左半圓,我們可以等左半圓轉到右邊圓的位置再顯示右 邊,就是等到旋轉到180度的時候。

2、同時我們看到主圓新增了clip: rect(0, 200px, 200px, 100px);裁剪樣式,這是因為預設我們 進度是0%的,我們只顯示右邊的話才能隱藏左邊,但是我們右邊不是隱藏的嗎?那顯示它幹嘛呢,因為 旋轉左邊的時候就看到轉到右邊的圓了。稍微有點繞,請結合程式碼,多多理解

3、等到左邊旋轉了180我們需要將右邊顯示出來,並且將box元素的裁剪設定為預設值,就是不裁剪,這 這樣才能顯示完整的左右兩個圓。

4、最後我們使用js來控制旋轉角度並將百分比顯示在頁面上

寫在最後

如果上面的解釋看不明白,索性就不要看了,把程式碼放在本地除錯下,自己去理解。

別鑽牛角尖,程式碼是最好的語言。

使用clip才實現圓環進度還是很簡單的,還不需要考慮相容性,關於clip可以看張鑫旭大神的日誌

相關文章