如何实现Ben Alman的debounce jQuery?

时间:2017-01-10 13:02:26

标签: javascript jquery debounce

我正在使用这个项目:https://github.com/cowboy/jquery-throttle-debounce

我的代码是-sorta- working,但是debounce被忽略了。 因此,在每个图像加载时都会调用瀑布函数,但不会遵守2秒延迟。没有显示任何错误。

实现这个的正确方法是什么? 我现在已经花了3个小时摆弄这个,但找不到解决办法。

(function($) {
  $(document).ready(function(e) {

    var $waterfall = $('.waterfall');
    if ($waterfall.length) {
      $waterfall.waterfall({});
    }

    // sort the waterfall when images are loaded
    var $waterfall_images = $waterfall.find('img');
    $waterfall_images.each(function(j, image) {
      var $img = $(image);

      $img.load(function() {
        $.debounce(2000, $waterfall.waterfall('sort'));
      });

    });

  });
})(jQuery);
<ul class="waterfall">
  <li class="waterfall-item">
    <a href="hidden link" title="hidden title">
      <img alt="hidden alt" title="hidden title" data-srcset="hidden in this example" data-src="also hidden in this example" src="still hidden in this example" data-sizes="(min-width:440px) 300px, 95vw" class=" lazyloaded" sizes="(min-width:440px) 300px, 95vw"
      srcset="think I'll hide this one too">
      <span class="waterfallImgOverlay"></span>
    </a>

  </li>
</ul>

1 个答案:

答案 0 :(得分:1)

您正在调用方法,而不是分配引用。最简单的事情,将其包装在一个功能中。第二件事是debounce返回一个方法,所以你需要存储它返回的内容而不是调用该方法。

(function($) {
  $(document).ready(function(e) {

    var $waterfall = $('.waterfall');
    if ($waterfall.length) {
      $waterfall.waterfall({});
    }

    var waterfallSort = $.debounce(2000, function(){ $waterfall.waterfall('sort'); });

    // sort the waterfall when images are loaded
    var $waterfall_images = $waterfall.find('img');
    $waterfall_images.each(function(j, image) {
      var $img = $(image);

      $img.load( waterfallSort );

    });

  });
})(jQuery);