add albums from the same artist to album view

This commit is contained in:
geoffrey45
2021-12-12 02:49:42 +03:00
parent e970324314
commit 7d0f38755b
7 changed files with 388 additions and 108 deletions
+17
View File
@@ -0,0 +1,17 @@
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, };