WebPublisher/Interactive

페이지 로딩 시 scroll top 값 조정

amanda 2023. 10. 25. 13:53
function mainScrollTop(){
    var winterTop = $('.win_main_sec').offset().top,
        targetTop = winterTop + 100;
    
    $('html').scrollTop(targetTop);
    
    //$('html').stop().animate({
    //    'scrollTop': targetTop
    //}, 1000)
}