2019-01-12 03:33:27 +00:00
|
|
|
import '../assets/index.less';
|
|
|
|
import Slider from '../src/slider';
|
2018-07-20 08:13:21 +00:00
|
|
|
|
|
|
|
export default {
|
2019-01-12 03:33:27 +00:00
|
|
|
render() {
|
2018-07-20 08:13:21 +00:00
|
|
|
const settings = {
|
|
|
|
props: {
|
|
|
|
infinite: true,
|
|
|
|
centerPadding: '60px',
|
|
|
|
slidesToShow: 5,
|
|
|
|
swipeToSlide: true,
|
2019-01-12 03:33:27 +00:00
|
|
|
afterChange: function(index) {
|
|
|
|
console.log(`Slider Changed to: ${index + 1}, background: #222; color: #bada55`);
|
2018-07-20 08:13:21 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
class: 'center',
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-07-20 08:13:21 +00:00
|
|
|
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>
|
2019-01-12 03:33:27 +00:00
|
|
|
);
|
2018-07-20 08:13:21 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|