首頁 > web前端 > css教學 > 主體

css實作圓與邊框旋轉動畫的程式碼實例

不言
發布: 2018-09-18 14:54:13
原創
2973 人瀏覽過

這篇文章帶給大家的內容是關於css實現圓與邊框的程式碼實例,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

實作效果:

css實作圓與邊框旋轉動畫的程式碼實例

#程式碼

html:

<div>
    <div>
        <div> </div>
    </div>
    <div>
    </div>
    <div>
    </div>
</div>
登入後複製

css:

     #box {
        height:200px;
        width:200px;
    }

    .circle-out{
        height: inherit;
        width: inherit;

        display: inline-block;
        text-align: center;

        border: 20px solid blue;
        border-radius: 50%;
        
    }

    /* 绘制弧形 */
    .circle-part{
        display: inline-block;
        position: relative;
        width:0px;
        height: 0px;

        border-radius: 50%;
        border: 100px solid #0000ff05;
        border-top: 100px solid blue;

        top: -220px;
        left: 20px;

        transform: rotate(0deg);
        animation: run-part 5s infinite;
    }

    .part1{
        height: 0px;
        width: 0px;

        border-radius: 50%;
        border:100px solid #fafafa;
        border-top: 100px solid #ff000000;

        position: relative;
        top: -420px;
        left: 20px;

        transform: rotate(45deg);
        animation: run-part1 5s infinite;
    }

    .circle-inner{
        height: 0px;
        width: 0px;
        display: inline-block;

        border-radius: 50%;
        border: 20px solid blue;

        top: 80px;
        position: relative;
        
        z-index: 1000;
    }

    @-webkit-keyframes run-part1{
        0%{
            transform: rotate(45deg);
        }

        100% {
            transform: rotate(405deg);
        }
    }

    @-webkit-keyframes run-part{
        0%{
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
登入後複製

實現想法

1 圖形構成

從外觀看到,圖形大致由:外圓,內圓及構扇形構成。

1.1 外圓

在本範例中,主要採用一個p,設定高與寬,背景不設定或白色。設定 border-radius為50%外圓圈,使用邊框構成從而形成外圈。

.circle-out{
    height: inherit;
    width: inherit;
    border: 20px solid blue;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
}
登入後複製

效果圖

css實作圓與邊框旋轉動畫的程式碼實例

#1.2內圓

內圓很簡單,也是使用border完成的圓,設定boder-radius:50%實現的圓的效果,最後就是一個定位的事情。

1.3扇形

扇形,在本範例中,實現的想法也是拼湊,外加旋轉,利用邊框border實作。

  .circle-part{
        //(1)
        display: inline-block;
        width:0px;
        height: 0px;

        //(2)
        border-radius: 50%;
        border: 100px solid #0000ff05;
        border-top: 100px solid blue;
        
        //(3)
        position: relative;
        top: -220px;
        left: 20px;

        //(4)
        transform: rotate(0deg);
        animation: run-part 5s infinite;
    }
登入後複製

如上程式碼:
分為(1)、(2)、(3)、(4)部分,出去固定形狀、動畫外,比較重要的就在於(2)部分。

先畫出1/4的圓(邊框)。其他另外3/4的扇形以透明繪製。

相同的,另外使用另外一個圓進行相同的處理,這樣兩個圓就能重疊在一起,唯一不同的是:第二個圓設定那3/4圓作為白色,1/4設定為透明色。

這時,呈現的為1/4的扇形,背景為blue,而因為透明的原因1/4是完全暴露的。

最後,由於最後的圓為頂層元素,所以當頂層元素發生旋轉時,藍色的扇形部分就會被頂層元素那3/4的扇形區域所遮蔽。從而達到最後的效果。

程式碼最後加上自己的動畫,實現最後的效果。


以上是css實作圓與邊框旋轉動畫的程式碼實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板