How to use the range slider vertically?
-
I would like to use the range slider vertically. However, it seems that this component can only be used horizontally. I know we can use a slider vertically with JQuery so I thought that maybe it would be possible with OnsenUI. Is it?
-
Just change the style:
<ons-range style=“transform: rotate(270deg);width: 100%;” value=“75”></ons-range>
transform: rotate(270deg); is the key here.
Jamal