當(dāng)前位置:首頁 >  IDC >  服務(wù)器 >  正文

純css實(shí)現(xiàn)流向性和動(dòng)態(tài)線條效果的代碼

 2020-10-19 15:59  來源: 腳本之家   我來投稿 撤稿糾錯(cuò)

  域名預(yù)訂/競(jìng)價(jià),好“米”不錯(cuò)過

這篇文章主要介紹了純css實(shí)現(xiàn)流向性和動(dòng)態(tài)線條效果的代碼,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或功能具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

思路:

一個(gè)外層盒子設(shè)置背景;一個(gè)內(nèi)層盒子設(shè)置寬高背景,并設(shè)置animate讓盒子移動(dòng)

demo:

css部分:

@keyframes mymove {
from{left:0px;}
to{left:70px;}
}
.father{
background: #748096;
border-radius:5px;
position: relative;
top: 70px;
left: -5px;
}

.moveson {
width:20px;
height:8px;
background:#a0e80c;
border-radius: 5px;
animation:mymove 2s linear infinite;
position:relative;
}

html部分:

<div class="father">
<div class="moveson"></div>
</ediv>

文章來源:腳本之家,原文鏈接:https://www.jb51.net/css/743619.html

申請(qǐng)創(chuàng)業(yè)報(bào)道,分享創(chuàng)業(yè)好點(diǎn)子。點(diǎn)擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!

相關(guān)標(biāo)簽
CSS

相關(guān)文章

熱門排行

信息推薦