
目的:
实现落叶的旋转下落效果。
(学习视频分享: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);}
}
例子代码和图片:
落叶.zip
相关推荐:CSS教程
以上就是css实现落叶动画效果的详细内容,更多请关注php中文网其它相关文章!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
