cute-clever-carousel
Usage
Install
npm install --save cute-clever-carousel
HTML Markup
<div class="carousel">
<div class="ccc-frame">
<div class="ccc-items">
<img src="https://placehold.jp/150x200.png?text=1" alt="">
<img src="https://placehold.jp/150x200.png?text=2" alt="">
</div>
</div>
</div>
Required styles
.ccc-frame {
overflow: hidden;
}
.ccc-items {
position: relative;
white-space: nowrap;
}
.ccc-items > * {
display: inline-block;
}
js
import Carousel from 'cute-clever-carousel';
new Carousel(document.getElementsByClassName('carousel')[0], {});
Options
see src/Options.ts