Hi V Vinayaka Rao Jonnada,
You can achieve this using CSS. On button click, you can toggle a boolean attribute. Based on its value, apply a dynamic class to the section of the page you want to show or hide.
Here’s an example:
.timeline-hidden{
right: -50%;
position: absolute;
transition: all 0.5s;
}
.timeline-show{
right: 0;
position: absolute;
transition: all 0.5s;
z-index: 9999;
}
When the button is clicked, toggle the show boolean, and bind the class dynamically based on its value (timeline-show or timeline-hidden).
Hope this helps.
Thanks
The CSS route mentioned by Shreya will probably work, but it is not a low-code approach, and it requires CSS expertise since not many people seem to be sharing examples of what to do.
I even attended a CSS class, and while it was also mentioned there as a possible option, no one left us with a working example. Strike many, I guess, against the CSS gurus; we'll never learn or use your art if we don't see examples (or maybe they want it that way :-) ).
Anyway, look at this widget, maybe this can help ? https://marketplace.mendix.com/link/component/214968