While it seems that the general consensus on custom scrollbars is that they are somewhat detrimental to overall user experience, powers beyond my control are suggesting their implementation is mandatory. Other than giving the scrollbar standard accessibly features (wide enough to be easily selected, high enough contrast to be easily noticed, etc), what are usability features I should keep in mind for an easily used custom scrollbar?
|
|
Good old Jacob Nielsen on Scrolling and Scrollbars:
|
|||
|
|
The big thing is are they usable regardless of the input device? Can I scroll with the keyboard, the mouse, the mouse wheel, by touch? Does it hinder any assistive technology (such as screen reading software)? In the end, though, as you seem to already realize, this is something that one probably shouldn't do. It's akin to a client asking you to build a custom web browser just for their site. It's silly on one level, arrogant on another. Sounds like you already fought that battle, though. |
|||||||
|
|
The important thing is that it behave as much as possible like the standard OS provided scroll bar. As DA01 mentioned they should respond all the normal inputs, including page-up/page-down, arrow keys and space bar. Also scrolling should be done at the same speed that the OS would do it. One of the biggest reasons to not to do custom scrollbars is because it could easily feel nonstandard on certain platforms, and significant testing is needed to understand the extent of this and know if it is a problem. And properly supporting touch UIs suddenly becomes complicated - you need to detect touch platforms and remove the space wasting custom scroll bars. |
|||
|
|