1.0.1 • Published 6 years ago

@egolord/carousel v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

ImageTrack

props: {
  images: {
    type: Array,
    required: true,
  },
  activeIndex: {
    type: Number,
    required: true,
  },
  transition: {
    type: String,
    default: 'fade',
  },
},

images array is of

{
  address: {
    type: String,
  },
  alt: {
    type: String,
  }
}

AutoFadeCarousel

props: {
  interval: {
    type: Number,
    default: 4000,
  },
  images: {
    type: Array,
    required: true,
  }
},

images array is of

{
  address: {
    type: String,
  },
  alt: {
    type: String,
  }
}

ButtonCarousel

props: {
  images: {
    type: Array,
    required: true,
  }
},

images array is of

{
  address: {
    type: String,
  },
  alt: {
    type: String,
  }
}