반응형
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
반응형
'Web > jQuery' 카테고리의 다른 글
jQuery Mobile 1.4 SVG Icon (0) | 2018.12.05 |
---|---|
jQuery Mobile: Grid 한줄에 버튼 2개이상 놓기 (최대5개) (0) | 2018.06.05 |
jQuery Mobile: document ready vs. page events (0) | 2018.06.03 |
jQuery Mobile Button 숨기기 (0) | 2018.06.03 |
jQuery 특정 id 객체로 화면 스크롤링 해서 이동하기 (0) | 2018.06.02 |
jQuery Mobile header 에 select box 추가하기 (0) | 2018.06.02 |
jQuery Mobile의 listview search data-filter 위치 Fixed (0) | 2018.06.02 |
jQuery Mobile 버튼 색상변경과 + 상단 Title의 길이 늘리기 (0) | 2018.05.25 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)