junya-y
6/6/2017 - 12:58 AM

resizeTimer

resizeTimer

var _timer;

resizeTimer(200,function(){
  console.log('リサイズタイマー');
});

function resizeTimer(interval,func){
  $(window).on('resize orientationchange', function () {
    clearTimeout(_timer);
    _timer = setTimeout(function () {
      func();
    }, interval);
  });
}