Skip to content

Latest commit

 

History

History
33 lines (33 loc) · 610 Bytes

File metadata and controls

33 lines (33 loc) · 610 Bytes
  1. Make it infinite scroll
  2. Create tests for project
  3. Improve example lighthouse overall score:
  4. Add basic arrows when config:
<ReactCarousel
  navigation={{
    arrows: true,
  }}
>...</ReactCarousel>
  1. Permit custom dots:
<ReactCarousel
  navigation={{
    dots: {(index) => {
      <div>Go to {index + 1}</div>
    }}
  }}
>...</ReactCarousel>
  1. Permit custom arrows:
<ReactCarousel
  navigation={{
    arrows: {
      left: {<div>Previous</div>},
      right: {<div>Next</div>},
    }
  }}
>...</ReactCarousel>
  1. Handle keyboard navigation (accessibility purpose)