안녕하세요 저는 전화 갭 앱에 스크롤바를 표시하려고하는데 표시되지 않습니다. 거기에있는 모든 스레드를 읽었습니다.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 스크롤 막대를 항상 볼 수있게합니다. –
안녕하세요. – John