苏州:平均气温 29℃
Archive for 八月, 2012
jScrollPane滚动条插件详解[jQuery]
星期一, 八月 6th, 2012jScrollPane基于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(); });