小程序 点击按钮 慢慢淡出隐藏不占位

工作日志  随手笔记 仅供参考

 

小程序 点击按钮 慢慢淡出隐藏不占位_第1张图片

点击关注 关注按钮慢慢淡出隐藏 不占位

 

data:{
    animationData:{},
    hidden:false,//关注默认显示
},


// 点击关注隐藏按钮
  bindfollow:function(e){
    var animation = wx.createAnimation({
      duration: 1000,
      timingFunction: 'linear',
    })

    this.animation = animation

    animation.opacity(0).step()

    this.setData({
      animationData: animation.export()
    })

    setTimeout(function () {
      this.setData({
        hidden: true
      })
    }.bind(this), 1000)
    
  },

 

 

你可能感兴趣的:(get,技能)