您好,登錄后才能下訂單哦!
效果圖如下
用兩個(gè)嵌套的div容器就可以了,父容器來(lái)控制圖標(biāo)顯示的位置,子容器用來(lái)寫烏云的樣式。而陰影和閃電的樣式都用偽元素就可以了,這些都是在css中定義的。
<div class="container">
<div class="stormy"></div>
</div>
css按照步驟來(lái)實(shí)現(xiàn)
1、先寫父容器樣式,順便給整個(gè)頁(yè)面加個(gè)背景色,方便預(yù)覽
body{
background: rgba(73,74,95,1);
}
.container{
width: 170px;
height: 170px;
position: relative;
margin: 250px auto;
}
專門建立的學(xué)習(xí)Q-q-u-n ⑦⑧④-⑦⑧③-零①② 分享學(xué)習(xí)方法和需要注意的小細(xì)節(jié),不停更新最新的教程和學(xué)習(xí)技巧(從零基礎(chǔ)開始到前端項(xiàng)目實(shí)戰(zhàn)教程,學(xué)習(xí)工具,全棧開發(fā)學(xué)習(xí)路線以及規(guī)劃)
2、寫烏云的樣式,別忘了烏云有一個(gè)上下移動(dòng)的動(dòng)畫效果
.stormy{
width: 50px;
height: 50px;
position: absolute;
left: 80px;
top: 70px;
margin-left: -60px;
background: #222;
border-radius: 50%;
box-shadow: #222 64px -15px 0 -5px,
#222 25px -25px,
#222 30px 10px,
#222 60px 15px 0 -10px,
#222 85px 5px 0 -5px;
animation: stormy 5s ease-in-out infinite;
}
@keyframes stormy{
50%{
transform: translateY(-20px);
}
}
3、陰影樣式,同樣是有動(dòng)畫的
.stormy::after{
content: '';
width: 120px;
height: 15px;
position: absolute;
left: 5px;
bottom: -60px;
background: #000;
border-radius: 50%;
opacity: 0.2;
transform: scale(0.7);
animation: stormy_shadow 5s ease-in-out infinite;
}
@keyframes stormy_shadow{
50%{
transform: translateY(20px) scale(1);
opacity: 0.05;
}
}
4、閃電樣式
.stormy::before{
display: block;
content: '';
width: 0;
height: 0;
position: absolute;
left: 57px;
top: 70px;
border-left: 0px solid transparent;
border-right: 7px solid transparent;
border-top: 43px solid yellow;
box-shadow: yellow -7px -32px;
transform: rotate(14deg);
transform-origin: 50% -60px;
animation: stormy_thunder 2s steps(1, end) infinite;
}
@keyframes stormy_thunder{
0%{
transform: rotate(20deg);
opacity: 1;
}
5%{
transform: rotate(-34deg);
opacity: 1;
}
10%{
transform: rotate(0deg);
opacity: 1;
}
15%{
transform: rotate(-34deg);
opacity: 0;
}
}
OK,搞定。按著步驟來(lái),你也可以在你的頁(yè)面上實(shí)現(xiàn)酷炫的電閃雷鳴天氣圖標(biāo)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。