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

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

作者: xsmile21 | 来源:发表于2022-07-19 15:16 被阅读0次

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



    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)}
    }
    

    相关文章

      网友评论

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

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