Thêm chút css3 nếu bạn không muốn dùng jquery để tạo style thanh scroll , đặc điểm nhẹ và ổn định tuy không tương thích các trình duyệt lắm (nhất là ie )
<style>
::-webkit-scrollbar {
width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px blue;
-webkit-border-radius: 10px;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: red;
-webkit-box-shadow: inset 0 0 6px #f4f5f6;
}
::-webkit-scrollbar-thumb:window-inactive {
background: gray;
}
</style>
No comments: