2016-11-18 43 views
2

工作我運行一個javascript向下滾動圖像時,它被放大,但滾輪不能在這裏工作 是腳本滾輪不會在JavaScript

$(function(){ 
    // Add a custom filter to recognize images from lorempixel (that don't end with ".jpg" or something similar) 
      $.tosrus.defaults.media.image = { 
       filterAnchors: function($anchor) { 
       return $anchor.attr('href').indexOf('cdn.shopify.com') > -1; 
       } 
      }; 

      $('#example-2 a').tosrus({ 
       pagination : { 
        add   : true 
       }, 
       caption  : { 
        add   : true 
       }, 
       slides  : { 
        scale  : 'fill' 
       } 
      }); 
     }); 

zoomed image that is not scrolling

回答

2

試試這個

$('#event-list').scroll(function() { 
var curScroll = $(this)[0].scrollTop, 
    maxScroll = $(this)[0].scrollHeight - $(this).height(); 

console.log(curScroll, ' :: ', maxScroll); 

if ((curScroll >= maxScroll - 200) && !loading) { 
    loading = true; 

    $(this)[0].scrollTop = curScroll; 

    $('.loading').fadeIn('fast'); 

    if (page <= $('.page').length) { 
     loadMore(); 
    } 
} 

});