반응형
jQuery Mobile 위치 Fixed하기 (스크롤해도 항상 위에 있게)
You can customize the search-filter-element's CSS so it is fixed in the viewport.
#my-wrapper {
padding-top : 45px;
}
#my-wrapper form {
position : fixed;
top : 15px;
left : 15px;
width : 100%;
z-index : 1;
}
You'll notice the #my-wrapper
selector, I used it to be able to target just the search-input for a specific listview widget. My HTML looks like this:
<div id="my-wrapper">
<ul data-filter="true" data-role="listview">
...
</ul>
</div>
참고: https://stackoverflow.com/questions/12681799/jquery-mobile-data-filter-fixed-position-static
반응형
'Web > jQuery' 카테고리의 다른 글
jQuery Mobile Button 숨기기 (0) | 2018.06.03 |
---|---|
jQuery Mobile 화면 최상단으로 Scroll 이동하기 (0) | 2018.06.02 |
jQuery 특정 id 객체로 화면 스크롤링 해서 이동하기 (0) | 2018.06.02 |
jQuery Mobile header 에 select box 추가하기 (0) | 2018.06.02 |
jQuery Mobile 버튼 색상변경과 + 상단 Title의 길이 늘리기 (0) | 2018.05.25 |
jQuery Mobile의 뒤로 가기 오류가 생긴다면. (0) | 2018.05.25 |
video tag 멈추게 하기 $('#vd').get(0).pause() 처리 (0) | 2017.12.21 |
jquery 에서 다른 링크 클릭 이벤트 부르기 (0) | 2017.12.16 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)