WebPublisher/JavaScript & jQuery

[jQuery] road 시 scroll top 값 조정

amanda 2023. 10. 13. 15:03

로딩 시 스크롤이 특정 div 높이값에 맞춰 부드럽게 움직이도록 조정

 

function mainScrollTop(){
    var winterTop = $('.win_main_sec').offset().top,
        targetTop = winterTop + 100;
    $('body').animate({
        scrollTop: targetTop
    }, 1000)
}