ant-design-vue/components/vc-slick/demo/SlideChangeHooks.jsx

60 lines
1.2 KiB
Vue
Raw Normal View History

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
data() {
2018-07-20 08:13:21 +00:00
return {
activeSlide: 0,
activeSlide2: 0,
2019-01-12 03:33:27 +00:00
};
2018-07-20 08:13:21 +00:00
},
2019-01-12 03:33:27 +00:00
render() {
2018-07-20 08:13:21 +00:00
const settings = {
props: {
dots: true,
infinite: true,
speed: 1000,
slidesToShow: 1,
slidesToScroll: 1,
2019-01-12 03:33:27 +00:00
beforeChange: (current, next) => {
this.activeSlide = next;
},
afterChange: current => {
this.activeSlide2 = current;
},
2018-07-20 08:13:21 +00:00
},
2019-01-12 03:33:27 +00:00
};
2018-07-20 08:13:21 +00:00
return (
<div>
<h2>beforeChange and afterChange hooks</h2>
<p>
BeforeChange => activeSlide: <strong>{this.activeSlide}</strong>
</p>
<p>
AfterChange => activeSlide: <strong>{this.activeSlide2}</strong>
</p>
<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>
2019-01-12 03:33:27 +00:00
);
2018-07-20 08:13:21 +00:00
},
2019-01-12 03:33:27 +00:00
};