Replies: 1 comment 3 replies
-
|
There are probably a number of ways to attack this. What about touching the icon which causes the action to toggle between UP-STOP-DOWN-STOP and then you could have an arrow which shows the direction the shutter is currently travelling? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am looking for an example to control my windows shutters. The issue is there should be three buttons for each shutter motor : UP, STOP, DOWN. and obviously there is no much space available on the plan to place them all for all windows.
I suspect one of a solution here is to design some kind of dropdown menu for each window: once window element is active these three control elements appear next to the window to let user to select required action: UP, STOP, DOWN. I am not a pro in CSS but recommended trick to make it happen is to enable children element class like below.
`
.menu-elements-class { display: none; }
.parent-menu-class:active .menu-elements-class { display: block; }
`
But in SVG those elements are not necessary children, then I have no idea how to change display attribute for their class.
How do you make your shutters manageable on your floorplans?
Beta Was this translation helpful? Give feedback.
All reactions