Horizontal Multi-Thumb Slider Example
WARNING! Some users of touch-based assistive technologies may experience difficulty utilizing widgets that implement this slider pattern because the gestures their assistive technology provides for operating sliders may not yet generate the necessary output. To change the slider value, touch-based assistive technologies need to respond to user gestures for increasing and decreasing the value by synthesizing key events. This is a new convention that may not be fully implemented by some assistive technologies. Authors should fully test slider widgets using assistive technologies on devices where touch is a primary input mechanism before considering incorporation into production systems.
The following example of the multi-thumb slider design pattern demonstrates an input for setting a pair of values that represent a range. This example enables users to specify a price range for a hotel reservation by moving the two arrows (thumbs) that represent the minimum and maximum price.
Similar examples include:
- Color Viewer Slider Example: Basic horizontal sliders that illustrate setting numeric values for a color picker.
- Vertical Temperature Slider Example: Demonstrates using
aria-orientation
to specify vertical orientation andaria-valuetext
to communicate unit of measure for a temperature input. - Rating Slider Example: Horizontal slider that demonstrates using
aria-valuetext
to communicate current and maximum value of a rating input for a five star rating scale. - Media Seek Slider Example: Horizontal slider that demonstrates using
aria-valuetext
to communicate current and maximum values of time in media to make the values easy to understand for assistive technology users by converting the total number of seconds to minutes and seconds.
Example
Hotel Price Range (in USD)
Accessibility Features
- The display of the slider's current value remains adjacent to the thumb as the thumb is moved, so people with a small field of view (e.g., due to magnification) can easily see the value while focusing on the thumb as they move it.
- To highlight the interactive nature of the thumb, the focus ring is drawn around the thumb and the value.
-
To ensure the borders of the slider rail, thumb and focus ring have sufficient contrast with the background when high contrast settings invert colors, the color of the borders are synchronized with the color of the text content.
For example, the color of the focus ring border is set to match the foreground color of high contrast mode text by specifying the CSS
currentColor
value for thestroke
property of the inline SVGrect
element used to draw the focus ring border. To make the background of therect
match the high contrast background color, thefill-opacity
attribute of therect
is set to zero. If specific colors were instead used to specify thestroke
andfill
properties, those colors would remain the same in high contrast mode, which could lead to insufficient contrast between the rail and the thumb or even make them invisible if their color matched the high contrast mode background.
Note: The SVG element needs to have the CSSforced-color-adjust
property set toauto
for thecurrentColor
value to be updated in high contrast mode. Some browsers do not useauto
for the default value.
Keyboard Support
Key | Function |
---|---|
Right Arrow | Increases slider value one step. |
Up Arrow | Increases slider value one step. |
Left Arrow | Decreases slider value one step. |
Down Arrow | Decreases slider value one step. |
Page Up | Increases slider value multiple steps. In this slider, jumps ten steps. |
Page Down | Decreases slider value multiple steps. In this slider, jumps ten steps. |
Home | Sets slider to its minimum value. |
End | Sets slider to its maximum value. |
Role, Property, State, and Tabindex Attributes
Role | Attribute | Element | Usage |
---|---|---|---|
none
|
svg
|
The use of the none role on the SVG element ensures assistive technologies do not interpret the SVG element as an image or some other role.
|
|
slider
|
g
|
|
|
tabindex=
|
g
|
Includes the slider thumb in the page tab sequence. | |
aria-valuemax=
|
g
|
Specifies the maximum value of the slider. | |
aria-valuemin=
|
g
|
Specifies the minimum value of the slider. | |
aria-valuenow=
|
g
|
Indicates the current value of the slider. | |
aria-label=
|
g
|
A label identifying the purpose of the slider, e.g., Hotel Minimum Price. |
|
aria-hidden=
|
g
|
Removes the SVG g element from the accessibility tree to prevent assistive technologies from presenting it as an image separate from the slider. |
Javascript and CSS Source Code
- CSS: slider-multithumb.css
- Javascript: slider-multithumb.js
HTML Source Code