弹跳加载
<view class="bouncing-loader"> <view></view> <view></view> <view></view> </view>
@keyframes bouncing-loader { to { opacity: 0.1; transform: translate3d(0, -20rpx, 0); } } .bouncing-loader { display: flex; justify-content: center; } .bouncing-loader > view { width: 15rpx; height: 15rpx; margin: 30rpx 2rpx; background: red; border-radius: 50%; animation: bouncing-loader 0.6s infinite alternate; } .bouncing-loader > view:nth-child(2) { animation-delay: 0.2s; } .bouncing-loader > view:nth-child(3) { animation-delay: 0.4s; }
本文参与腾讯云自媒体分享计划,欢迎正在阅读的你也加入,一起分享。
我来说两句