react-items-slider

1.0.6 • Public • Published

react-items-slider

slider for anything, whether it be like mediums navigation, a single image carousel, or a multiple item product slider... whatever you want.

NPM JavaScript Style Guide

Install

npm

npm install --save react-items-slider

yarn

yarn add react-items-slider

Usage

import React from 'react'
import { Link } from 'react-router'
import ReactItemSlider from 'react-items-slider'
import ProductCard from './ProductCard' // product card component, could be anything.

const Example = () => (
  <div>
    <ReactItemSlider productsInView="max" arrowSize="small">
      <Link to="/home">home</Link>
      <Link to="/about">about</Link>
      <Link to="/contact">contact</Link>
      <Link to="/blog">blog</Link>
      <Link to="/shop">shop</Link>
      <Link to="/faq">faq</Link>
      <Link to="/deals">deals</Link>
    </ReactItemSlider>

    <ReactItemSlider productsInView={1} arrowSize="medium">
      <img alt="car" src="/img/car.jpg" />
      <img alt="monkey" src="/img/monkey.jpg" />
      <img alt="taco" src="/img/taco.jpg" />
      <img alt="pogo stick" src="/img/pogo-stick.jpg" />
    </ReactItemSlider>

    <ReactItemSlider productsInView={2} arrowSize="large">
      <ProductCard 
        title="car"
        price="12"
        image="/img/car.jpg"
      />
      <ProductCard 
        title="monkey"
        price="100"
        image="/img/monkey.jpg"
      />
      <ProductCard 
        title="taco"
        price="19"
        image="/img/taco.jpg"
      />
      <ProductCard 
        title="pogo stick"
        price="15"
        image="/img/pogostick.jpg"
      />
    </ReactItemSlider>
  </div>
) 

export default Example

License

MIT © fraserisland

react-items-slider

Readme

Keywords

none

Package Sidebar

Install

npm i react-items-slider

Weekly Downloads

0

Version

1.0.6

License

MIT

Unpacked Size

48.5 kB

Total Files

6

Last publish

Collaborators

  • fraserisland