微信小程序开发:一篇文章掌握基础配置、基本语法和功能( 三 )

清除动画
this.clearAnimation(selector, options, callback)滚动动画
this.animate(selector, keyframes, duration, ScrollTimeline) 
this.animate('.avatar', [{borderRadius: '0',borderColor: 'red',transform: 'scale(1) translateY(-20px)',offset: 0,}, {borderRadius: '25%',borderColor: 'blue',transform: 'scale(.65) translateY(-20px)',offset: .5,}, {borderRadius: '50%',borderColor: 'blue',transform: `scale(.3) translateY(-20px)`,offset: 1}], 2000, {scrollSource: '#scroller',timeRange: 2000,startScrollOffset: 0,endScrollOffset: 85,})this.animate('.search_input', [{opacity: '0',width: '0%',}, {opacity: '1',width: '100%',}], 1000, {scrollSource: '#scroller',timeRange: 1000,startScrollOffset: 120,endScrollOffset: 252})



推荐阅读