Skip to content

Instantly share code, notes, and snippets.

@yoonsy
Last active August 29, 2015 13:57
Show Gist options
  • Save yoonsy/9686395 to your computer and use it in GitHub Desktop.
Save yoonsy/9686395 to your computer and use it in GitHub Desktop.
determine time to load more. for infinite scroll.
function timeToLoadMore( threshold ){
var wScrollTop = $(window).scrollTop(),
wHeight = $(window).height(),
dHeight = $(document).height();
return dHeight - (wHeight + wScrollTop) < threshold;
}
@yoonsy
Copy link
Author

yoonsy commented Mar 21, 2014

으.. 이거 로드모어 구현할때마다 계산하기 귀찮아서 만들었다

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment