My ion scroll is synchronized with another component for scrolling. I achieve this by using the function
scroll1.scrollTo(left, top, false);
Unfortunately, this function does not allow scrolling to a negative position, such as
scroll1.scrollTo(left, -50, false);
Is there a way to accomplish this?
I need my scroll to automatically scroll without any user interaction (which is why I use the scrollTo function), and my primary aim with the negative top position is to emulate a bouncing effect.