佳木斯湛栽影视文化发展公司

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

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

熱門標(biāo)簽:智能手機(jī) 使用U盤裝系統(tǒng) 阿里云 美圖手機(jī) 網(wǎng)站建設(shè) 硅谷的囚徒呼叫中心 檢查注冊(cè)表項(xiàng) 百度競(jìng)價(jià)點(diǎn)擊價(jià)格的計(jì)算公式

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

分析

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

藍(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)畫效果

/* 旋轉(zhuǎn)動(dòng)畫 */
@keyframes rotate {
    to {
        transform: rotate(1turn)
    }
}
/* 弧線動(dòng)畫 */
/* 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)簽:湘潭 賀州 煙臺(tái) 湖北 黃山 山南 懷化 通遼

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《純html+css實(shí)現(xiàn)Element loading效果》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    叙永县| 苍梧县| 舒兰市| 分宜县| 天台县| 青海省| 绥德县| 泰和县| 紫云| 云梦县| 灵璧县| 常宁市| 喀喇| 广安市| 泽普县| 江山市| 会理县| 平乐县| 永胜县| 中江县| 乐都县| 两当县| 奉化市| 永年县| 大理市| 海淀区| 农安县| 金塔县| 措勤县| 九龙县| 济宁市| 伊宁县| 潜江市| 临猗县| 宝兴县| 贡山| 赣州市| 常山县| 南通市| 上虞市| 濮阳市|