본문 바로가기
IT 인터넷

스크롤시 특정 위치 이벤트 처리

by 곰달달 2015. 11. 3.
$(function() {
    $(window).scroll(function() {
        if ($(this).scrollTop() >= Math.ceil($('.target').offset().top)) {

        } else {

        }
    });
});