本文是針對剛學(xué)編程的小白,都是一些基礎(chǔ)知識,如果想了解更多深層一點的東西,歡迎移步本人博客!!
< ! ---------- HTML ----------- >
<ul>
<li></li>
<li></li>
<li></li>
</ul>
< ! --------- Style --------------- >
<style>
*{
margin: 0;
padding: 0;
}
ul{
height: 400px;
background-color: skyblue;
margin-top: 150px;
animation: sky 5s linear 0s infinite alternate;
position: relative;
}
@keyframes sky {
from{
background-color: skyblue;
}
to{
background-color: black;
}
}
ul li{
list-style: none;
width:400%;
height: 400px;
position: absolute;
left: 0;
top: 0;
}
ul li:nth-child(1){
background: url("素材/cloud_one.png");
animation: oneSport 30s linear 0s infinite alternate;
}
ul li:nth-child(2){
background: url("素材/cloud_two.png");
animation: twoSport 30s linear 0s infinite alternate;
}
ul li:nth-child(3){
background: url("素材/cloud_three.png");
animation: threeSport 30s linear 0s infinite alternate;
}
@keyframes oneSport {
from{
left: 0;
}
to{
left:-100%;
}
}
@keyframes twoSport {
from{
left: 0;
}
to{
left: -200%;
}
}
@keyframes threeSport {
from{
left: 0;
}
to{
left: -300%;
}
}
</style>
< ! --------- 效果展示 ---------- >
- 運行在電腦上不卡,可能是截圖的工具渲染不出來那種效果吧! 可以把代碼放編輯器運行看看真實的效果
**云層特效**
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者