mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
const scrollLeftX = (artists_dom) => {
|
|
const dom = artists_dom.value;
|
|
dom.scrollBy({
|
|
left: -700,
|
|
behavior: "smooth",
|
|
});
|
|
};
|
|
|
|
const scrollRightX = (artists_dom) => {
|
|
const dom = artists_dom.value;
|
|
dom.scrollBy({
|
|
left: 700,
|
|
behavior: "smooth",
|
|
});
|
|
};
|
|
|
|
export { scrollLeftX, scrollRightX, }; |