1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| const app = getApp() Page({ data: { extraClasses: '', }, triggerTransition: function () { if (this.data.extraClasses == 'box-transition box-moved') { this.setData({ extraClasses: 'box-transition' }) } else { this.setData({ extraClasses: 'box-transition box-moved' }) } }, triggerAnimation: function () { this.setData({ extraClasses: 'box-animation' }) }, transitionEnd: function () { console.log('渐变已结束') }, animationStart: function () { console.log('动画已开始') }, animationIteration: function () { console.log('动画进行中') }, })
|