こんにちは、私はphonegapアプリケーションに表示されるスクロールバーを取得しようとしていますが、表示されません。私はそこにあるすべてのスレッドを読みました。Phonegap Scrollbar
CSSスタイルシートでこれを設定します。私はすでにあなたがそれらを設定することはできませんスレッドを読んでいる?お時間をありがとうは
scrollbar {
-webkit-appearance: none;
width: 10px !important;
}
::-webkit-scrollbar {
width: 10px !important;
}
scrollbar:vertical {
width: 5px !important;
}
::-webkit-scrollbar:vertical {
width: 5px !important;
}
scrollbar:horizontal {
height: 2px !important;
}
::-webkit-scrollbar:horizontal {
height: 2px !important;
}
scrollbar-thumb {
background-color:#42c0fb !important;
border-radius: 5px !important;
border: 2px solid blue;
background-color:blue;
}
::-webkit-scrollbar-thumb {
background-color:#42c0fb !important;
border-radius: 5px !important;
}
scrollbar-track {
border-radius: 5px !important;
background-color: white !important;
}
::-webkit-scrollbar-track {
border-radius: 5px !important;
background-color: white !important;
}
あなたは次のようにしました:http://stackoverflow.com/a/1202542/2765346 スクロールバーが常に表示されます –
こんにちは私はそれだけでもしようとしましたが、まだdoesntが表示されます。 – John