Recently, I developed a straightforward horizontal scroll system. You can check out an example of my work on JSFIDDLE: http://jsfiddle.net/marcus_derem/qn603h8b/133/
The Goal:
I am aiming to scroll to a container's child using the following code:
document.getElementById(target_subpage_id).scrollIntoView(false);
Unfortunately, adding animation options is not possible as the Safari browser does not support it. Check out more details here.
My Query:
Is there a way to incorporate slide animations into the system on JSFIDDLE? Or would I need to rework the mechanics entirely?
~Thanks in advance Markus.