Popularity
1.1
Growing
Activity
0.0
Stable
13
2
6
Programming language: TypeScript
Tags:
UI Components
Carousel
flat-carousel alternatives and similar libraries
Based on the "Carousel" category.
Alternatively, view flat-carousel alternatives based on common mentions on social networks and blogs.
-
Swiper
Most modern mobile touch slider with hardware accelerated transitions -
lightGallery
A customizable, modular, responsive, lightbox gallery plugin. -
keen-slider
The HTML touch slider carousel with the most native feeling you will get. -
nuka-carousel
Small, fast, and accessibility-first React carousel library with easily customizable UI and behavior to fit your brand and site. -
react-responsive-carousel
React.js Responsive Carousel (with Swipe) -
react-awesome-slider
React content transition slider. Awesome Slider is a 60fps, light weight, performant component that renders an animated set of production ready UI general purpose sliders with fullpage transition support for NextJS and GatsbyJS. ๐ฅ๏ธ ๐ฑ -
react-id-swiper
A library to use idangerous Swiper as a ReactJs component which allows Swiper's modules custom build -
pure-react-carousel
A highly impartial suite of React components that can be assembled by the consumer to create a carousel with almost no limits on DOM structure or CSS styles. If you're tired of fighting some other developer's CSS and DOM structure, this carousel is for you. -
react-multi-carousel ๐
A lightweight production-ready Carousel that rocks supports multiple items and server-side rendering with no dependency. Bundle size 2kb. -
react-image-magnify
A responsive image zoom component designed for shopping sites. -
react-simply-carousel
A simple, lightweight, fully controlled isomorphic (with SSR support) React.js carousel component. Touch enabled and responsive. With support for autoplay and infinity options. Fully customizable -
react-carouselize
Transform everything in a simple and customizable carousel
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of flat-carousel or a related project?
README
FlatCarousel
a tiny carousel component for react.
Demo
Features
- no dependency
- support autoplay
- support touch and mouse device
- transition done with raf and tweening.
- infinite loop without duplicating the first&last item
Demo
import Carousel from 'flat-carousel';
const images = [
{ src: 'some image' }
];
const MyCarousel = () => (
<Carousel>
{images.map((image, index) => (
<div
key={index}
className="demo-item"
style={{ backgroundImage: 'url(' + image.src + ')' }}
/>
))}
</Carousel>
);
Props
initialIndex?
: number, defaults to 0transitionDuration?
: number, defaults to 400msautoplay?
: boolean, defaults to trueautoplayInterval?
: number, defaults to 3000msinfiniteLoop?
: boolean, defaults to trueonPageChange?(index: number)
: void;