UNPKG

react-slick-ssr-transform

Version:

React port of slick carousel with dynamic transform width

34 lines (32 loc) 856 B
import React, { Component } from 'react' import Slider from '../src/slider' export default class SwipeToSlide extends Component { render() { const settings = { className: 'center', infinite: true, centerPadding: '60px', slidesToShow: 5, swipeToSlide: true, afterChange: function (index) { console.log(`Slider Changed to: ${index + 1}, background: #222; color: #bada55`); } }; return ( <div> <h2>Swipe To Slide</h2> <Slider {...settings}> <div><h3>1</h3></div> <div><h3>2</h3></div> <div><h3>3</h3></div> <div><h3>4</h3></div> <div><h3>5</h3></div> <div><h3>6</h3></div> <div><h3>7</h3></div> <div><h3>8</h3></div> <div><h3>9</h3></div> </Slider> </div> ) } }