kswedberg / jquery-smooth-scroll

Automatically make same-page links scroll smoothly
MIT License
1.97k stars 427 forks source link

horizontal scroll #115

Closed omidMolaverdi closed 3 years ago

omidMolaverdi commented 4 years ago

Hi,

Thanks for the great package.

Please can you advice how the horizontal scroll works?

kswedberg commented 4 years ago

You set the direction property to 'left'. The demo page has an example:

$('button.scrollhorz').bind('click', function(event) {
  $.smoothScroll({
    direction: 'left',
    scrollElement: $('div.scrollme'),
    scrollTarget: '.horiz'
  });
});

If you're scrolling the document, just remove the scrollElement: $('div.scrollme'), line.