Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

React.js Responsive Carousel (with Swipe)

License

NotificationsYou must be signed in to change notification settings

leandrowd/react-responsive-carousel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

npm versionBuild StatusFOSSA Status

Powerful, lightweight and fully customizable carousel component for React apps.

Important

I don't have any time available to keep maintaining this package. If you have any request, try to sort it within the community. I'm able to merge pull requests that look safe from time to time but no commitment on timelines here. Feel free to fork it and publish under other name if you are in a hurry or to use another component.

Features

  • Responsive
  • Mobile friendly
  • Swipe to slide
  • Mouse emulating touch
  • Server side rendering compatible
  • Keyboard navigation
  • Custom animation duration
  • Auto play w/ custom interval
  • Infinite loop
  • Horizontal or Vertical directions
  • Supports images, videos, text content or anything you want. Each direct child represents one slide!
  • Supports external controls
  • Highly customizable:
    • Custom thumbs
    • Custom arrows
    • Custom indicators
    • Custom status
    • Custom animation handlers

Important links:

Demo

http://leandrowd.github.io/react-responsive-carousel/

Check it out thesecool demos created usingstorybook. The source code for each example is availablehere

Customize it yourself:

Installing as a package

yarn add react-responsive-carousel

Usage

importReact,{Component}from'react';importReactDOMfrom'react-dom';import"react-responsive-carousel/lib/styles/carousel.min.css";// requires a loaderimport{Carousel}from'react-responsive-carousel';classDemoCarouselextendsComponent{render(){return(<Carousel><div><imgsrc="assets/1.jpeg"/><pclassName="legend">Legend 1</p></div><div><imgsrc="assets/2.jpeg"/><pclassName="legend">Legend 2</p></div><div><imgsrc="assets/3.jpeg"/><pclassName="legend">Legend 3</p></div></Carousel>);}});ReactDOM.render(<DemoCarousel/>,document.querySelector('.demo-carousel'));// Don't forget to include the css in your page// Using webpack or parcel with a style loader// import styles from 'react-responsive-carousel/lib/styles/carousel.min.css';// Using html tag:// <link rel="stylesheet" href="<NODE_MODULES_FOLDER>/react-responsive-carousel/lib/styles/carousel.min.css"/>

Props

NameValueDescription
ariaLabelstringDefine thearia-label attribute for the root carousel element. The default isundefined, skipping the attribute from markup.
axis'horizontal','vertical'Define the direction of the slider, defaults to'horizontal'.
autoFocusbooleanForce focus on the carousel when it renders.
autoPlaybooleanChange the slide automatically based oninterval prop.
centerModebooleanCenter the current item and set the slide width based oncenterSlidePercentage.
centerSlidePercentagenumberDefine the width percentage relative to the carousel width whencenterMode istrue.
dynamicHeightbooleanThe height of the items will not be fixed.
emulateTouchbooleanEnable swipe on non-touch screens whenswipeable istrue.
infiniteLoopbooleanGoing after the last item will move back to the first slide.
intervalnumberInterval in milliseconds to automatically go to the next item whenautoPlay is true, defaults to3000.
labelsobjectApplyaria-label on carousel with anobject with the propertiesleftArrow,rightArrow anditem. The default is{leftArrow: 'previous slide / item', rightArrow: 'next slide / item', item: 'slide item'}.
onClickItemfunctionCallback to handle a click event on a slide, receives the current index and item as arguments.
onClickThumbfunctionCallback to handle a click event on a thumb, receives the current index and item as arguments.
onChangefunctionCallback to handle every time the selected item changes, receives the current index and item as arguments.
onSwipeStartfunctionCallback to handle when the swipe starts, receives a touch event as argument.
onSwipeEndfunctionCallback to handle when the swipe ends, receives a touch event as argument.
onSwipeMovefunctionCallback triggered on every movement while swiping, receives a touch event as argument.
preventMovementUntilSwipeScrollTolerancebooleanDon't let the carousel scroll until the user swipe to the value specified onswipeScrollTolerance.
renderArrowPrevfunctionRender custom previous arrow. Receives a click handler, aboolean that shows if there's a previous item, and the accessibility label as arguments.
renderArrowNextfunctionRender custom previous arrow. Receives a click handler, aboolean that shows if there's a next item, and the accessibility label as arguments.
renderIndicatorfunctionRender custom indicator. Receives a click handler, aboolean that shows if the item is selected, the item index, and the accessibility label as arguments.
renderItemfunctionRender a custom item. Receives an item of the carousel, and anobject with theisSelected property as arguments.
renderThumbsfunctionRender prop to show the thumbs, receives the carousel items as argument. Get theimg tag of each item of the slider, and render it by default.
selectedItemnumberSet the selected item, defaults to0.
showArrowsbooleanEnable previous and next arrow, defaults totrue.
showStatusbooleanEnable status of the current item to the total, defaults totrue.
showIndicatorsbooleanEnable indicators to select items, defaults totrue.
showThumbsbooleanEnable thumbs, defaults totrue.
statusFormatterfunctionFormatter that returns the status as astring, receives the current item and the total count as arguments. Defaults to{currentItem} of {total} format.
stopOnHoverbooleanThe slide will not change byautoPlay on hover, defaults totrue.
swipeablebooleanEnable the user to swipe the carousel, defaults totrue.
swipeScrollTolerancenumberHow many pixels it's needed to change the slide when swiping, defaults to5.
thumbWidthnumberWidth of the thumb, defaults to80.
transitionTimenumberDuration of the animation of changing slides.
useKeyboardArrowsbooleanEnable the arrows to move the slider when focused.
verticalSwipe'natural','standard'Set the mode of swipe when the axis is'vertical'. The default is'standard'.
widthnumber orstringThe width of the carousel, defaults to100%.

Customizing

Items (Slides)

By default, each slide will be rendered as passed as children. If you need to customize them, use the proprenderItem.

renderItem: (item: React.ReactNode, options?: { isSelected: boolean }) => React.ReactNode;

Thumbs

By default, thumbs are generated extracting the images in each slide. If you don't have images on your slides or if you prefer a different thumbnail, use the methodrenderThumbs to return a new list of images to be used as thumbs.

renderThumbs: (children: React.ReactChild[]) => React.ReactChild[]

Arrows

By default, simple arrows are rendered on each side. If you need to customize them and the css is not enough, use therenderArrowPrev andrenderArrowNext. The click handler is passed as argument to the prop and needs to be added as click handler in the custom arrow.

renderArrowPrev: (clickHandler: () => void, hasPrev: boolean, label: string) => React.ReactNode;renderArrowNext: (clickHandler: () => void, hasNext: boolean, label: string) => React.ReactNode;

Indicators

By default, indicators will be rendered as those small little dots in the bottom part of the carousel. To customize them, use therenderIndicator prop.

renderIndicator: (    clickHandler: (e: React.MouseEvent | React.KeyboardEvent) => void,    isSelected: boolean,    index: number,    label: string) => React.ReactNode;

Take full control of the carousel

If none of the previous options are enough, you can build your own controls for the carousel. Check an example athttp://react-responsive-carousel.js.org/storybook/?path=/story/02-advanced--with-external-controls

Custom Animations

By default, the carousel uses the traditional 'slide' style animation. There is also a built in fade animation, which can be used by passing'fade' to theanimationHandler prop. *note: the 'fade' animation does not support swiping animations, so you may want to setswipeable tofalse

If you would like something completely custom, you can pass custom animation handler functions toanimationHandler,swipeAnimationHandler, andstopSwipingHandler. The animation handler functions accept props and state, and return styles for the contain list, default slide style, selected slide style, and previous slide style. Take a look at the fade animation handler for an idea of how they work:

constfadeAnimationHandler:AnimationHandler=(props,state):AnimationHandlerResponse=>{consttransitionTime=props.transitionTime+'ms';consttransitionTimingFunction='ease-in-out';    letslideStyle:React.CSSProperties={position:'absolute',display:'block',zIndex:-2,minHeight:'100%',opacity:0,top:0,right:0,left:0,bottom:0,transitionTimingFunction:transitionTimingFunction,msTransitionTimingFunction:transitionTimingFunction,MozTransitionTimingFunction:transitionTimingFunction,WebkitTransitionTimingFunction:transitionTimingFunction,OTransitionTimingFunction:transitionTimingFunction,};if(!state.swiping){slideStyle={            ...slideStyle,WebkitTransitionDuration:transitionTime,MozTransitionDuration:transitionTime,OTransitionDuration:transitionTime,transitionDuration:transitionTime,msTransitionDuration:transitionTime,};}return{        slideStyle,selectedStyle:{ ...slideStyle,opacity:1,position:'relative'},prevStyle:{ ...slideStyle},};};

Videos

If your carousel is about videos, keep in mind that it's up to you to control which videos will play. Using therenderItem prop, you will get information saying if the slide is selected or not and can use that to change the video state. Only play videos on selected slides to avoid issues. Check an example athttp://react-responsive-carousel.js.org/storybook/?path=/story/02-advanced--youtube-autoplay-with-custom-thumbs

=======================

Contributing

Thecontributing guide contains details on how to create pull requests and setup your dev environment. Please read it before contributing!

=======================

Raising issues

When raising an issue, please add as much details as possible. Screenshots, video recordings, or anything else that can make it easier to reproduce the bug you are reporting.

  • A new option is to create an example with the code that causes the bug. Fork thisexample from codesandbox and add your code there. Don't forget to fork, save and add the link for the example to the issue.

=======================

License

FOSSA Status


[8]ページ先頭

©2009-2025 Movatter.jp