5
スクロールバーの色を変更するタスクがあります。これはjscrollpane.Byを使用してブラウザスクロールのみを変更したものです。ドロップダウンリストの色を変更したいどうしたらいい? HTMLはスクロールバーの色を変更するには
<div class='columnLeft'>
<div class="labels w110">
<label>Country</label>
</div>
<div class="controls hello" id="hello">
@Html.DropDownList("ddlReCountry", null, new { @onchange = "onReBindCountry()", @class = "dropdown w325" })
</div>
</div>
Javascriptを
$(function() {
$('.hello ').jScrollPane();
$('#hello').bind(
'jsp-scroll-y',
function (event, scrollPositionY, isAtTop, isAtBottom) {
console.log('#pane1 Handle jsp-scroll-y', this,
'scrollPositionY=', scrollPositionY,
'isAtTop=', isAtTop,
'isAtBottom=', isAtBottom);
});
});
あるCSSはあなたができる場合、私は本当にわからない
.jspTrack {
background: lightgray !important;
}
.jspDrag {
background: gray !important;
}