スクロールバーの色を変更したい.スクロールバーを作成するには、指定されたコードを使用しました。
JavaScriptは
$('.scroll-pane').jScrollPane();
$('#body').bind(
'jsp-scroll-y',
function (event, scrollPositionY, isAtTop, isAtBottom) {
console.log('#pane1 Handle jsp-scroll-y', this,
'scrollPositionY=', scrollPositionY,
'isAtTop=', isAtTop,
'isAtBottom=', isAtBottom);
}
);
CSSは
.scroll-pane
{
width: 100%;
height: 300px;
overflow: auto;
}
しかし、ここではスクロールバーの色を変更できません。どうすれば色を変更できますか? デモ