Logic Machine Forum
Layers in visualization - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Layers in visualization (/showthread.php?tid=5592)



Layers in visualization - PolymorphedCust - 02.09.2024

Hi
Is it through "Additional classes" I can make different object occur in the right order in visualization, and if so, how? Smile 

I've got 1 big object with a few on top of this. How do I make sure the big one is furthest back? 

Thanks


RE: Layers in visualization - admin - 02.09.2024

You can change the vertical stacking order via z-index CSS property. Keep in mind that this won't be visible in the editor, only in the visualization itself.


RE: Layers in visualization - PolymorphedCust - 02.09.2024

(02.09.2024, 10:37)admin Wrote: You can change the vertical stacking order via z-index CSS property. Keep in mind that this won't be visible in the editor, only in the visualization itself.

I'm litteraly new to CSS. I'd need to make this index in this Custom CSS, and then type in the Additional classes, right? 

And how do I create that index? Smile


RE: Layers in visualization - admin - 02.09.2024

Set additional class to elem1, elem2 and elem3 for each element respectively.

Add to CSS:
Code:
.elem1 {
  z-index: 101;
}
.elem2 {
  z-index: 102;
}
.elem3 {
  z-index: 103;
}



RE: Layers in visualization - Daniel - 02.09.2024

Or just use Layout and place one element on layout and second on plan.


RE: Layers in visualization - PolymorphedCust - 02.09.2024

(02.09.2024, 10:44)Daniel Wrote: Or just use Layout and place one element on layout and second on plan.

That works very well! 

Thanks both of you! Smile


RE: Layers in visualization - PolymorphedCust - 03.09.2024

Is it possible to have a primary background (Blueprints of a building) and then a faded background (the facade of the building) under that? Smile


RE: Layers in visualization - Daniel - 03.09.2024

You can use background and image, the last one will stay on top