码迷,mamicode.com
首页 > 微信 > 详细

17行代码解决微信小程序图片延迟加载

时间:2017-06-11 10:07:29      阅读:3329      评论:0      收藏:0      [点我收藏+]

标签:class   detail   ima   top   reset   script   微信小程序   index   延迟   

js 页面

Page({
  data: {
    realScrollTop: 0,//页面滚动距离
   driveHeight   //屏幕高度可初始化设置
},
scroll(e){
  if(e.detail.scrollTop > this.data.realScrollTop){
      this.setData({
          realScrollTop: e.detail.scrollTop
      });
  }
 }
});

  

wxmal页面

<scroll-view scroll-y="true" scroll-top="{{resetScrollTop}}" bindscroll="scroll" >
<image wx:if="{{realScrollTop+driveHeight*2 > (index*70)}}" src="{{item[‘img‘]}}"></image>  
<image wx:else src="{{item[‘bgm‘]}}"></image>
</scroll-view>

  

17行代码解决微信小程序图片延迟加载

标签:class   detail   ima   top   reset   script   微信小程序   index   延迟   

原文地址:http://www.cnblogs.com/subtract/p/6980496.html

(10)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!