This article mainly introduces the implementation method of VUE 3D carousel diagram encapsulation in detail. It has certain reference value. Interested friends can refer to it.
This article shares the VUE 3D carousel diagram with everyone. The specific code for image encapsulation is for your reference. The specific content is as follows
1. Experience address
VUE 3D carousel image
2. Implement function points
(1), seamless carousel
(2), enlarge when entering, shrink when leaving (like 3D Switching effect)
3. js code
<!--轮播图插件模板--> <template> </template> <script type="text/ecmascript-6"> import {swiper, swiperSlide} from 'vue-awesome-swiper' require('swiper/dist/css/swiper.css');//注意这里 import Pageination from "./pageination" import { mapActions, mapMutations, mapGetters, mapState} from "vuex" import {getPriceSymbolValue} from '../../util/tool/index' export default { //props: ['bannerList'], data() { let _self=this; return { pageinationIndex:0, data: { "bannerList":[] }, swiperOption: { loop: true, // 循环 speed:500, //切换速度 mousewheelControl: false,// 禁止鼠标滚轮切换 lazy: { loadPrevNext: true, }, pagination: { el: '.swiper-pagination', }, autoplay: { delay:2000, stopOnLastSlide: false, // 切换到最后一个时不停止 disableOnInteraction: false, //用户操作swiper之后 不停止autoplay }, watchSlidesProgress:true, centeredSlides: true, //设定为true时,活动块会居中,而不是默认状态下的居左。 spaceBetween:10, slidesPerView: 1.7, loopedSlides :2, observer: true, observeParents: true } } }, methods: { }, mounted() { // 这边就可以使用swiper这个对象去使用swiper官网中的那些方法 // this.$nextTick(function() { // this.swiper.slideTo(3, 10, false); // }); }, computed: { swiper() { return this.$refs.mySwiper.swiper } }, components: { swiper, swiperSlide, Pageination } } </script> <style lang="scss" type="text/scss"> </style>
The above is the entire content of this article, I hope it will help everyone learn Helpful, please pay attention to the PHP Chinese website for more related content!
Related recommendations:
Analysis of vue data control view source code
Use vue to realize clicking the button to slide out of the panel
The above is the detailed content of VUE 3D carousel diagram encapsulation implementation method. For more information, please follow other related articles on the PHP Chinese website!