corousel

0.1.8 • Public • Published

Simple photo carousel React component.

  • Place photo URLs or paths into an array and pass it to the images prop on the Carousel component:
    var pictures = [
        './somepath/toPic.jpg',
        'https://www.myphotourl.com/thisPic',
        'https://www.myphotourl.com/thisPic2'
    ];


    <Carousel images={pictures} />
  • Default width/height are set to 600w x 400h.
  • Change that using the height or width props:
    <Carousel images={pictures} height={300} />
    <Carousel images={pictures} width={1500} />
    <Carousel images={pictures} height={300} width={1500} />
    //etc
  • The "legend" defaults to dots
  • If picture array is larger than 15 it changes to a number display in the bottom right corner.
  • Change to number legend by using the legend prop on the component and setting it to the string "numbers":
    <Carousel images={pcitures} legend={"numbers"} />

    // any other value given to legend is ignored and the dots are shown

Simple and I hope lightweight and easy to use. I plan on updating and giving an api to control slide speed, image fadein/out amount and speed, button size, and an autoplay. Stay tuned!

Package Sidebar

Install

npm i corousel

Weekly Downloads

2

Version

0.1.8

License

MIT

Unpacked Size

396 kB

Total Files

11

Last publish

Collaborators

  • cslewis