为什么雨滴横走

来源:4-1 animation落雨到红包雨的实现

qq_慕仙6158775

2020-02-23 11:16

{

margin: 0px;

padding: 0px;


}

body,html{

height: 100%;


}




.content{

position: relative;/*(相对定位)*/

height: 100%;

background: #f2f2f2;

}

.yudi{

position: absolute;/*(绝对定位)*/

width: 4px;

height: 6px;

background: #ccc;

/*(剪切路径)*/clip-path: ellipse(10% 30% at 50% 50%);/*(椭圆形)*/

/*(变换)*/transform: scale(6);/*(缩放)*/

/*(动画)*//*(下降)*/animation: drops 1s ease-in infinite/*(无限)*/;

}

@keyframes drops{


0%{

opacity: 0;/*(不透明)*/

}

20%{

opacity: 1;

}

90%{

opacity: 1;

}

100%{

opacity: 0;

transform: translate3d(10px,100%,-10px);

}

}




写回答 关注

1回答

  • FindYouL
    2020-04-05 18:48:22

    最后一行transform: translate3d(10px,100vh,-10px);


带你走入前端动画的世界

学习css3动画,并结合实际项目向大家展示应用技巧,使大家快速入门。

29783 学习 · 65 问题

查看课程

相似问题