I am currently trying to create an HTML5 app on Monaca.
Regarding the CSS Components Range,
http://ja.onsen.io/reference/css.html#range
Is it possible to place the slider vertically as well as horizontal?
When I searched for it, it didn't come out when I read Monaca's instruction book, so I asked you a question here.
I would appreciate it if you could let me know if there is a solution through Onsen UI or Monaca.
I'm not familiar with the Onsen UI, but since transform
is now available from CSS3, you may be able to create a vertical slider by specifying transform:rotate(90deg);
.
input[type=range]{
- webkit-transform:rotate (90 deg);
-moz-transform:rotate (90 deg);
-o-transform:rotate (90 deg);
-ms-transform:rotate (90 deg);
transform —rotate (90 deg);
}
Try adding .
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
914 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
581 PHP ssh2_scp_send fails to send files as intended
611 GDB gets version error when attempting to debug with the Presense SDK (IDE)
© 2024 OneMinuteCode. All rights reserved.