小程序中滚动控制元素显示隐藏

index.js中

scroll: function(e, res) {
    if (e.detail.scrollTop > 1) {
      this.setData({
        isfixed: true
      });
    } else {
      this.setData({
        floorstatus: false
      });
    }
  },

index.xhtml中


          {{item.city_name}}
        

 

你可能感兴趣的:(小程序)