Ömer
Ömer

Reputation: 61

Scrollable card-list in Vue.js

I need to implement card-list with scroll down button in Vuejs. What's the best way to do that? What npm packages I can use?

card list

Upvotes: 0

Views: 592

Answers (1)

Matheus Lopes
Matheus Lopes

Reputation: 26

Put id = "content" in the parent div and on the button you call the scroll function

const containerMovie = document.getElementById("content");

containerMovie.scrollBy({
  top: -600,
  left: 0,
  behavior: "smooth"
});

Upvotes: 1

Related Questions