本篇文章为大家展示了使用css怎么实现一个落叶动画效果,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
目的:
实现落叶的旋转下落效果。
代码如下:
html代码:
<div class="con">
<img src="img/yeluobig.png" id="yeluobig"/>
<img src="img/yeluolit1.png" id="yeluolit1"/>
<img src="img/yeluolit2.png" id="yeluolit2"/>
</div>
css代码:
#yeluobig{position: absolute;top: 29%;left: 30%;
-webkit-animation:luo 8s infinite linear;
animation:luo 8s infinite linear;}
#yeluolit1{position: absolute;top: -2%;left: 40%;
-webkit-animation:luo 8s infinite 2s linear;
animation:luo 8s infinite 2s linear;}
#yeluolit2{position: absolute;top: -2%;left: 50%;
-webkit-animation:luo 8s infinite 4s linear;
animation:luo 8s infinite 4s linear;}
@-webkit-keyframes luo{
0%{top: -1%;transform:rotate(-60deg);}
100%{top: 100%;transform:rotate(60deg);}
}
@keyframes luo{
0%{top: -1%;transform:rotate(-60deg);}
100%{top: 100%;transform:rotate(60deg);}
}
上述内容就是使用css怎么实现一个落叶动画效果,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注天达云行业资讯频道。