<
div
id
=
"about"
class
=
"nano"
>
<
div
class
=
"nano-content"
> ... content here ... </
div
>
</
div
>
<link rel=
"stylesheet"
href=
"nanoscroller.css"
>
你必須爲容器指定一個寬度和高度,併爲你的滾動條定製一些基本樣式,例如:
.nano {
background
:
#bba
;
width
:
500px
;
height
:
500px
; }
.nano .nano-content {
padding
:
10px
; }
.nano .nano-pane {
background
:
#888
; }
.nano .nano-pane > .nano-slider {
background
:
#111
; }
在頁面中引入jquery.nanoscroller.js文件。
<script type="text/javascript"src="js/jquery.nanoscroller.js"></script>
而後使用下面的方法調用該滾動條插件,HTML中全部帶有.nano的DOM元素都會被應用上該方法:
$(
".nano"
).nanoScroller()
$(".nono").niceScroll({
cursorcolor: "#424242", // 改變滾動條顏色,使用16進制顏色值
cursoropacitymin: 0, // 當滾動條是隱藏狀態時改變透明度, 值範圍 1 到 0
cursoropacitymax: 1, // 當滾動條是顯示狀態時改變透明度, 值範圍 1 到 0
cursorwidth: "5px", // 滾動條的寬度,單位:便素
cursorborder: "1px solid #fff", // CSS方式定義滾動條邊框
cursorborderradius: "5px", // 滾動條圓角(像素)
zindex: "auto" | <number>, // 改變滾動條的DIV的z-index值
scrollspeed: 60, // 滾動速度
mousescrollstep: 40, // 鼠標滾輪的滾動速度 (像素)
touchbehavior: false, // 激活拖拽滾動
hwacceleration: true, // 激活硬件加速
boxzoom: false, // 激活放大box的內容
dblclickzoom: true, // (僅當 boxzoom=true時有效)雙擊box時放大
gesturezoom: true, // (僅 boxzoom=true 和觸屏設備時有效) 激活變焦當out/in(兩個手指外張或收縮)
grabcursorenabled: true // (僅當 touchbehavior=true) 顯示「抓住」圖標display "grab" icon
autohidemode: true, // 隱藏滾動條的方式, 可用的值:
true | // 無滾動時隱藏
"cursor" | // 隱藏
false | // 不隱藏,
"leave" | // 僅在指針離開內容時隱藏
"hidden" | // 一直隱藏
"scroll", // 僅在滾動時顯示
background: "", // 軌道的背景顏色
iframeautoresize: true, // 在加載事件時自動重置iframe大小
cursorminheight: 32, // 設置滾動條的最小高度 (像素)
preservenativescrolling: true, // 你能夠用鼠標滾動可滾動區域的滾動條和增長鼠標滾輪事件
railoffset: false, // 能夠使用top/left來修正位置
bouncescroll: false, // (only hw accell) 啓用滾動跳躍的內容移動
spacebarenabled: true, // 當按下空格時使頁面向下滾動
railpadding: { top: 0, right: 0, left: 0, bottom: 0 }, // 設置軌道的內間距
disableoutline: true, // 當選中一個使用nicescroll的div時,chrome瀏覽器中禁用outline
horizrailenabled: true, // nicescroll能夠管理水平滾動
railalign: right, // 對齊垂直軌道
railvalign: bottom, // 對齊水平軌道
enabletranslate3d: true, // nicescroll 能夠使用CSS變型來滾動內容
enablemousewheel: true, // nicescroll能夠管理鼠標滾輪事件
enablekeyboard: true, // nicescroll能夠管理鍵盤事件
smoothscroll: true, // ease動畫滾動
sensitiverail: true, // 單擊軌道產生滾動
enablemouselockapi: true, // 能夠用鼠標鎖定API標題 (相似對象拖動)
cursorfixedheight: false, // 修正光標的高度(像素)
hidecursordelay: 400, // 設置滾動條淡出的延遲時間(毫秒)
directionlockdeadzone: 6, // 設定死區,爲激活方向鎖定(像素)
nativeparentscrolling: true, // 檢測內容底部便於讓父級滾動
enablescrollonselection: true, // 當選擇文本時激活內容自動滾動
cursordragspeed: 0.3, // 設置拖拽的速度
rtlmode: "auto", // DIV的水平滾動從左邊開始
cursordragontouch: false, // 使用觸屏模式來實現拖拽
oneaxismousemode: "auto", // 當只有水平滾動時能夠用鼠標滾輪來滾動,若是設爲false則不支持水平滾動,若是設爲auto支持雙軸滾動
scriptpath: "" // 爲boxmode圖片自定義路徑 ("" => same script path)
preventmultitouchscrolling: true // 防止多觸點事件引起滾動
});javascript