I am trying to add next/prev buttons, create a dots navigation but I am not able to animate the .horizontal-scroll div.
I tried many ways:
TweenMax.to('.horizontal-scroll', 1, { x: -500 });
$('.horizontal-scroll').css({ transform: 'translate3d(-1000px, 0 ,0)' });
Nothing worked. How can I jump to a specific block or even animate the animate .horizontal-scroll div manually?
I am trying to add next/prev buttons, create a dots navigation but I am not able to animate the
.horizontal-scrolldiv.I tried many ways:
TweenMax.to('.horizontal-scroll', 1, { x: -500 });$('.horizontal-scroll').css({ transform: 'translate3d(-1000px, 0 ,0)' });Nothing worked. How can I jump to a specific block or even animate the animate
.horizontal-scrolldiv manually?