蚂蚁森林收取能量泡泡效果实现(微信小程序css3动画)

2022-07-19  本文已影响0人  xsmile21

需要实现的效果(类似蚂蚁森林收取能量)



dom部分

<view class="bubble">
   <image src="../../static/bubble.png" mode="widthFix"></image>
</view>

css部分

.bubble {
    width: 80rpx;
    position: absolute;
    top: 180rpx;
    left: 280rpx;
    animation: heart 2s ease-in infinite alternate;
}

@keyframes heart{
    from {transform: translate(0, 0)}
    to {transform: translate(0, 10rpx)}
}
上一篇 下一篇

猜你喜欢

热点阅读