Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afiru/657df2b421f741745799d84461c2dd43 to your computer and use it in GitHub Desktop.
Save afiru/657df2b421f741745799d84461c2dd43 to your computer and use it in GitHub Desktop.
$(window).bind("scroll", function() {
scrollHeight = $(document).height();
scrollPosition = $(window).height() + $(window).scrollTop();
if ( (scrollHeight - scrollPosition) / scrollHeight <= 0.06) {
} else {
//それ以外のスクロールの位置の場合
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment