Sliders allow the user to select a single value within a given range using a slider.
<wa-range>
component!
<label>Select a value: <input type="range"></label>
Use the min
and max
attributes to set the range's minimum and maximum values, respectively. The step
attribute determines the value's interval when increasing and decreasing.
<input type="range" min="0" max="10" step="1">
Use the disabled
attribute to disable a slider.
<input type="range" disabled>