加载更多动画样式

.loading {
width: 100%;
padding: 20rpx 0;
display: flex;
justify-content: center;
align-items: center;
color: #8a8a8a;
}
 
.loading image {
margin-right: 10rpx;
width: 40rpx;
height: 40rpx;
animation: loading 3s infinite linear;
}
 
@keyframes loading {
  from {
    transform :rotate(0deg);
  }
  to {
    transform :rotate(360deg);
  }
}
 
 
 
posted @ 2019-01-23 21:43  青春时光  阅读(624)  评论(0编辑  收藏  举报