| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- Page({
- onShareAppMessage() {
- return {
- title: 'swiper',
- path: 'page/component/pages/swiper/swiper'
- }
- },
- data: {
- background: ['demo-text-1', 'demo-text-2', 'demo-text-3'],
- indicatorDots: true,
- vertical: false,
- autoplay: false,
- interval: 2000,
- duration: 500
- },
- changeIndicatorDots() {
- this.setData({
- indicatorDots: !this.data.indicatorDots
- })
- },
- changeAutoplay() {
- this.setData({
- autoplay: !this.data.autoplay
- })
- },
- intervalChange(e) {
- this.setData({
- interval: e.detail.value
- })
- },
- durationChange(e) {
- this.setData({
- duration: e.detail.value
- })
- }
- })
|