UNPKG

svelte-tabs-scrollable

Version:

a simple svelte scrollable tabs with a lot of additional features and with fully supporting of RTL mode

12 lines (10 loc) 277 B
import animate from './animate'; export const scroll = (scrollValue = 100, duration = 300, animation = true, element) => { if (animation) { animate('scrollLeft', element, scrollValue, { duration: duration || 300 }); } else { element.scrollLeft = scrollValue; } };