forked from akiran/react-slick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomArrows.js
51 lines (47 loc) · 1.1 KB
/
CustomArrows.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import React, { Component } from 'react'
import Slider from '../src/slider'
function SampleNextArrow(props) {
const {className, style, onClick} = props
return (
<div
className={className}
style={{...style, display: 'block', background: 'red'}}
onClick={onClick}
></div>
);
}
function SamplePrevArrow(props) {
const {className, style, onClick} = props
return (
<div
className={className}
style={{...style, display: 'block', background: 'green'}}
onClick={onClick}
></div>
);
}
export default class CustomArrows extends Component {
render() {
const settings = {
dots: true,
infinite: true,
slidesToShow: 3,
slidesToScroll: 1,
nextArrow: <SampleNextArrow />,
prevArrow: <SamplePrevArrow />
};
return (
<div>
<h2>Custom Arrows</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>
</Slider>
</div>
);
}
}