主頁(yè) > 知識(shí)庫(kù) > 純html+css實(shí)現(xiàn)Element loading效果

純html+css實(shí)現(xiàn)Element loading效果

熱門(mén)標(biāo)簽:crm外呼系統(tǒng)好不好 貴陽(yáng)ai外呼系統(tǒng) 愛(ài)巢地圖標(biāo)注 電話機(jī)器人批發(fā) 重慶人工智能電銷機(jī)器人報(bào)價(jià) 長(zhǎng)春極信防封電銷卡公司 智能電銷機(jī)器人廣告語(yǔ) 電銷外呼線路改不外呼線路 強(qiáng)訊外呼系統(tǒng)

這是 Element UI loading 組件的效果圖,看起來(lái)很酷,我們來(lái)實(shí)現(xiàn)一下!

分析

動(dòng)畫(huà)由兩部分組成:

藍(lán)色的弧線由點(diǎn)伸展成一個(gè)圓,又從圓收縮成一個(gè)點(diǎn)。

圓的父節(jié)點(diǎn)帶著圓旋轉(zhuǎn)

代碼
html

<svg viewBox="25 25 50 50" class="box">
    <circle cx="50" cy="50" r="20" fill="none" class="circle"></circle>
</svg>

css
默認(rèn)樣式

.box {
    height: 200px;
    width: 200px;
    background: wheat;
}
.box .circle {
    stroke-width: 2;
    stroke: #409eff;
    stroke-linecap: round;
}

添加動(dòng)畫(huà)效果

/* 旋轉(zhuǎn)動(dòng)畫(huà) */
@keyframes rotate {
    to {
        transform: rotate(1turn)
    }
}
/* 弧線動(dòng)畫(huà) */
/* 125 是圓的周長(zhǎng) */
@keyframes circle {
    0% {
 /* 狀態(tài)1: 點(diǎn) */
        stroke-dasharray: 1 125;
        stroke-dashoffset: 0;
    }
    50% {
 /* 狀態(tài)2: 圓 */
        stroke-dasharray: 120, 125;
        stroke-dashoffset: 0;
    }
    to {
 /* 狀態(tài)3: 點(diǎn)(向旋轉(zhuǎn)的方向收縮) */
        stroke-dasharray: 120 125;
        stroke-dashoffset: -125px;
    }
}
.box {
  /* ...同上 */
  animation: rotate 2s linear infinite;
}
.circle {
  /* ...同上 */
  animation: circle 2s infinite;
}

最后把背景去掉

 

在線代碼演示 https://jsbin.com/yarufoy/edit?html,css,output

到此這篇關(guān)于純html+css實(shí)現(xiàn)Element loading效果的文章就介紹到這了,更多相關(guān)html+css實(shí)現(xiàn) loading內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

標(biāo)簽:陜西 吳忠 山南 清遠(yuǎn) 上海 廣安 內(nèi)蒙古 保定

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《純html+css實(shí)現(xiàn)Element loading效果》,本文關(guān)鍵詞  純,html+css,實(shí)現(xiàn),Element,loading,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《純html+css實(shí)現(xiàn)Element loading效果》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于純html+css實(shí)現(xiàn)Element loading效果的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章