效果图:
代码:
//wxml <view class="container"> <view class="usermotto" animation="{{ani}}"> <text class="user-motto">{{motto}}</text> </view> <button bindtap='start'>动画</button> </view> //wxss .usermotto { margin-top: 100px; border: solid; } //js Page({ data: { motto: 'Hello World', }, start () { var animation = wx.createAnimation({ duration: 4000, timingFunction: 'ease', delay: 1000 }); animation.opacity(0.2).translate(100, -100).step() this.setData({ ani: animation.export() }) } })