Forum Discussion
ReneeHeberli891
4 months agoCommunity Member
I need the scroll panel scroll bar start at the bottom and scroll up.
I’m working on an interactive project where I would like to use the scroll feature, but the first action I need is to scrolling up not down (which is the default.) When I place the image in the scrol...
- 4 months ago
Hi Renee,
Try adding this javascript trigger on the slide you want the scrollbar to start at the bottom:
var x = document.getElementsByClassName("scrollarea-area");
x[0].scrollTop = x[0].scrollHeight;
kathrynbrown-2d
4 months agoCommunity Member
Hi Renee,
Try adding this javascript trigger on the slide you want the scrollbar to start at the bottom:
var x = document.getElementsByClassName("scrollarea-area");
x[0].scrollTop = x[0].scrollHeight;
- ReneeHeberli8914 months agoCommunity Member
Thank you! That was exactly what I needed.