vue-awesome-swiper에서 외부 단추를 누르면 그림이 다음 장으로 전환됩니다

1496 단어 vue.js
created() {
			var _this = this
			_this.swiperOption={
				pagination:{
				  el:'.swiper-pagination',
				},
			   on: {
				   slideChangeTransitionEnd: function(){
					 _this.swiperids=this.activeIndex
					 console.log(_this.swiperids)
					 if(_this.swiperids==0){
					 	_this.ispost=true
					 	_this.iscurriculum=false
					 }
					 if(_this.swiperids==1){
					 	_this.ispost=false
					 	_this.iscurriculum=true
					 }
				   },
			   },
			}
		}

제 swiper는 이렇게 밝혔어요.
그리고 지금 밑에 있는 단추를 누르면 swiper의 그림을 다음 사진으로 전환할 수 있도록 하는 수요가 있습니다. 인터넷에서 본 방법은 먼저 적어 두세요.
<swiper :options="swiperOption"  ref="demoSwiper" >

주로 이ref (명칭은 마음대로 함) 다음은 터치 터치 전환 이벤트입니다.
jump_ce1(){
//    
				document.body.scrollTop = document.documentElement.scrollTop = 0
// 
				this.$refs.demoSwiper.swiper.slideNext()
// 
				this.$refs.demoSwiper.swiper.slidePrev();
			},

좋은 웹페이지 즐겨찾기