DIV기준으로로 스크롤을 쉽게 만들어 주는 오픈소스입니다.
자세한 사용법은 홈페이지를 참조하세요
- 홈페이지 : http://rocha.la/jQuery-slimScroll
- github : https://github.com/rochal/jQuery-slimScroll
- 라이선스 : Dual licensed under the MIT and GPL
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="libs/jquery.slimscroll.min.js"></script>
<div class="some-content-related-div">
<div id="inner-content-div">
<p>Lorem ipsum dolor sit amet, consectetur .... snip</p>
</div>
</div>
$(function(){
$('#inner-content-div').slimScroll({
height: '250px'
});
});