skip to Main Content

Trying to recreate this, Does anyone know how?

Basically, it’s a list of devs in that project and I want to make it carousel-like. where-by the item in the middle is always larger than the rest.

2

Answers


  1. When working with Angular, it’s common to seek ways to expedite tasks like this one:

    One approach is to check Angular Material for existing code that aligns with your current task.

    Since Angular Material lacks a pre-built carousel component, you can incorporate Bootstrap into your project.

    This lets you use carousel code from Bootstrap as a starting point.

    Refer to the documentation at https://getbootstrap.com/docs/5.3/getting-started/introduction/ for guidance.

    I’d advise you to be careful when implementing Bootstrap, making sure to pick the version that best suits your project.

    Login or Signup to reply.
  2. If you want to use third party npm pakage then i would suggest https://www.npmjs.com/package/ngx-slick-carousel .

    Here is a tutorial you can follow: https://www.positronx.io/angular-slick-carousel-slider-integration-tutorial/

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search