Giter Club home page Giter Club logo

react-native-swipeable-parallax-carousel's Introduction

React Native Swipeable Parallax Carousel

npm version

Android & iOS // React Native v0.46+

Preview

Carousel with parallax effect, overlay and dots navigation

Preview

Carousel without parallax effect, without overlay and with bars navigation

Get started

Installation

Run: $ npm install react-native-swipeable-parallax-carousel --save

Usage

import SwipeableParallaxCarousel from 'react-native-swipeable-parallax-carousel';

const datacarousel = [
  {
      "id": 339964,
      "title": "Valerian and the City of a Thousand Planets",
      "imagePath": "https://image.tmdb.org/t/p/w780/o6OhxtsgMurL4h68Uqei0aSPMNr.jpg",
  },
  {
      "id": 315635,
      "imagePath": "https://image.tmdb.org/t/p/w780/fn4n6uOYcB6Uh89nbNPoU2w80RV.jpg",
  },

  ...

  {
      "id": 339403,
      "title": "Baby Driver",
      "subtitle": "More than just a trend",
      "imagePath": "https://image.tmdb.org/t/p/w780/xWPXlLKSLGUNYzPqxDyhfij7bBi.jpg",
  },
];

<SwipeableParallaxCarousel
  data={datacarousel}
/>

Properties

Prop Description Default Required
data An array with all your items. Read bellow about Data array structure. None Yes
align Title alignment. Could be left, right or center. left No
titleColor Color title. #ffffff No
navigation Display a navigation bar or not. Boolean true or false. true No
navigationColor Color of the current item in the navigation bar. #ffffff No
navigationType Navigation bar type. 3 types available: dots, bars or squares. See navigationType examples for illustrations. dots No
height Carousel height. 200 No
parallax Parallax effect while scrolling. Boolean true or false. true No
overlayPath Image ressource to overlay item image. For example: {require('../assets/images/itemGradient.png')} None No
onPress A function called when an item is pressed None No
parentScrollViewRef Reference of the parent ScrollView. Read bellow about Make your carousel ScrollView friendly None No

Data array structure

Your data array must be an array of objects with at least an id and an imagePath key.

Prop Description Required
id Item ID. Yes
title Item title. Omit this prop if you don't want a title. No
subtitle Item subtitle. Omit this prop if you don't want a subtitle. No
imagePath Item image path. Yes
const datacarousel = [
  {
      "id": 339964,
      "title": "Valerian and the City of a Thousand Planets",
      "imagePath": "https://image.tmdb.org/t/p/w780/o6OhxtsgMurL4h68Uqei0aSPMNr.jpg",
  },
  {
      "id": 315635,
      "imagePath": "https://image.tmdb.org/t/p/w780/fn4n6uOYcB6Uh89nbNPoU2w80RV.jpg",
  },
  {
      "id": 339403,
      "title": "Baby Driver",
      "subtitle": "More than just a trend",
      "imagePath": "https://image.tmdb.org/t/p/w780/xWPXlLKSLGUNYzPqxDyhfij7bBi.jpg",
  },
];

navigationType examples

You can easily customize your navigation bar with navigationType: use dots, barsor squares to give a different look at your navigation items. Remember you can also use navigationColor to change the color of the current item in your navigation bar.

Navigation types

Dots, bars and squares navigation

Make your carousel ScrollView friendly

In order to use your carousel component inside a ScrollView and avoid any conflicts while scrolling, you need to use parentScrollViewRef prop.

<ScrollView
  ref={(c) => { this.parentScrollView = c; }}
>

  ...

  <SwipeableCarousel
    data={datacarousel}
    parentScrollViewRef={this.parentScrollView}
  />

  ...

</ScrollView>

Demo

Questions or suggestions?

Feel free to contact me on Twitter or create an issue.

License

This project is licenced under the MIT License.

react-native-swipeable-parallax-carousel's People

Contributors

davidsamacoits avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

react-native-swipeable-parallax-carousel's Issues

image styling?

how to style an image inside the carousel?

Thank you.

How to use navigationType ?

Hello thanks for nice plugin!

Any code example that I able to use navigationType ?
it did not show dots or bars

thanks

Navigation style

Hello, is there any way to change the style of the navigation? i would like to put it at the top of the image, or a couple pixels above the image

How to use autoPlay

I want the carousel to swipe left automatically after some few seconds but can't seem to find that feature

[Request] Exclusively lock PanResponder to container

Hi,
Thank you for your amazing component!

Please consider adding extra pan handlers to lock gesture inside carousel:

onPanResponderTerminationRequest: (evt, gestureState) => false, onMoveShouldSetPanResponderCapture: (evt, gestureState) => true, onStartShouldSetPanResponderCapture: (evt, gestureState) => true,

This will allow carousel to work with no issues inside parent scrollable containers.

Cheers.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.