Web/jQuery

jQuery Mobile 화면 최상단으로 Scroll 이동하기

saltdoll 2018. 6. 2. 23:01
반응형

jQuery Mobile 화면 최상단으로 Scroll 이동하기

//delegate binding to only links that have the `.top` class
$(document).delegate('a.top', 'click', function () {
    $('html, body').stop().animate({ scrollTop : 0 }, 500);
    return false;
});

상단 스크롤 버튼

또는 $.mobile.silentScroll()를 사용하면 됩니다.

 

jQuery Mobile has it's own $.mobile.silentScroll() function that scrolls to a particular Y position without triggering scroll event listeners. (http://jquerymobile.com/demos/1.1.0-rc.1/docs/api/methods.html)

 

참고: https://stackoverflow.com/questions/9783442/back-to-top-with-jquery-mobile

반응형
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)