美文网首页
前端编写一个小球动画作为loading,控制页面没获取数据回来前

前端编写一个小球动画作为loading,控制页面没获取数据回来前

作者: yuki20 | 来源:发表于2020-03-23 10:13 被阅读0次

/*球动画*/

.ball {

width: 20px;

height: 20px;

background-color: #FF5A65;

border-radius: 50%;

transform: scale(1);

animation: ball .6s ease-in-out infinite alternate;

}

.ball:nth-child(1) {

animation-delay: 0;

}

.ball:nth-child(2) {

animation-delay: -.9s;

}

@keyframes ball {

0% {

transform: scale(1);

}

100% {

transform: scale(0);

}

}

相关文章

网友评论

      本文标题:前端编写一个小球动画作为loading,控制页面没获取数据回来前

      本文链接:https://www.haomeiwen.com/subject/wumiyhtx.html