스크롤을 위아래 할 때마다 진행상황을 알려주는 막대(Bar)는 게시글을 읽을 때 편리하다. 이 막대(Bar)는 jquery로 하는 것이여서 PC는 물론 모바일에서도 사용가능하다. . 이 스크롤진행막대(Scroll Progress Bar) 구현방법은 다음과 같다. 0. 전제조건 (jquery문법을 사용할 수 있게 만들기) 1. css .scroll-line { height: 10px; margin-bottom: -2px; background: #ff000073; width: 0%; } 2. html 3. js $(window).scroll(function() { var wintop = $(window).scrollTop(), docheight = $(document).height(), winheight =..