收藏
回答

向下箭头→的动画怎么做?

这个箭头要会向下动

https://www.sohu.com/a/165594235_607781

回答关注问题邀请回答
收藏

1 个回答

  • 石兴龙-程序员小石
    石兴龙-程序员小石
    2020-06-13

    我刚刚试过了, 亲测有效 .

    我记得以前的小程序时不支持 animation 的现在支持了

    测试代码: https://github.com/shixinglong007/wxa-case/tree/master/animation/demo001

    <text>
      测试小程序 animation 向下的箭头
    </text>
    <View 
      class="amin"
    >
      ↓
    </View>
    
    .amin {
      position: relative;
      text-align: center;
      font-size: 50rpx;
      animation: animFn 1s infinite;
    }
    @keyframes animFn {
      0% {
        bottom: 0;
      }
      50% {
        bottom: -20rpx;
      }
      100% {
        bottom: 0;
      }
    }
    


    2020-06-13
    有用
    回复
登录 后发表内容
问题标签