function getScrollTop(){ $("#result").text($(window).scrollTop() + 'px'); } $(window).on("load scroll", getScrollTop);
function getScrollTop(){ $("#result").text($(window).scrollTop() + $(window).height() + 'px'); } $(window).on("load scroll resize", getScrollTop);
var scrollBottom; var lastTop = $("#last").offset().top; function getScrollTop(){ scrollBottom = $(window).scrollTop() + $(window).height(); $("#result").text(scrollBottom + 'px'); if(scrollBottom >= lastTop){ $("#result").text('lastまでスクロールされました'); } else{ $("#result").text(scrollBottom + 'px'); } } $(window).on("load scroll resize", getScrollTop);
いちばんやさしいJavaScriptの教本 人気講師が教えるWebプログラミング入門(「いちばんやさしい教本」シリーズ) |