jScrollPane滚动条插件详解[jQuery]

关键词: 留言, 互链

jScrollPane基于jQuery的滚动条插件,毫无疑问是我用过的最好的jQuery滚动条插件。

jScrollPane使用起来极其方便.当然 首先你要在你的文档中加载必要的插件文件,并将它们置入你的中去:

<!-- styles needed by jScrollPane -->
<link type="text/css" href="style/jquery.jscrollpane.css" rel="stylesheet" media="all" />

<!-- latest jQuery direct from google's CDN -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>

<!-- the mousewheel plugin - optional to provide mousewheel support -->
<script type="text/javascript" src="script/jquery.mousewheel.js"></script>

<!-- the jScrollPane script -->
<script type="text/javascript" src="script/jquery.jscrollpane.min.js"></script>

另外在jQuery预加载中插入jScrollPane()事件。

$(function()
{
	$('.scroll-pane').jScrollPane();
});

留言