이번에는 vue+swiper로 사이드바 메뉴를 구현하는 방법을 보여드리겠습니다. vue+swiper로 사이드바 메뉴를 구현하기 위한 주의사항은 무엇인가요?
이 기사의 예는 참고용으로 사이드 슬라이딩 메뉴 효과를 얻기 위한 vue swiper의 특정 코드를 공유합니다.
이 좌우 슬라이딩과 상하 슬라이딩은 주로 Swiper의 회전식 기능을 사용합니다. 첫 번째는 자체 정의된 구성 요소의 코드입니다:
<template> <p class="s-slider"> <swiper :options="horizontalSwiperOptions" ref="horizontalSwiper"> <swiper-slide class="left" ref="left" v-bind:style="{'background':getRandomColor()}"> <slot name="left"></slot> </swiper-slide> <swiper-slide class="content"> <swiper :options="verticalSwiperOptions" ref="verticalSwiper"> <swiper-slide class="top" ref="top" v-bind:style="{'background':getRandomColor()}"> <slot name="top"></slot> </swiper-slide> <swiper-slide class="content" ref="content" v-bind:style="{'background':getRandomColor()}"> <slot name="content"></slot> </swiper-slide> <swiper-slide class="bottom" ref="bottom" v-bind:style="{'background':getRandomColor()}"> <slot name="bottom"></slot> </swiper-slide> </swiper> </swiper-slide> <swiper-slide class="right" ref="right" v-bind:style="{'background':getRandomColor()}"> <slot name="right"></slot> </swiper-slide> </swiper> </p> </template> <script> import {swiper, swiperSlide, swiperWraper} from 'vue-awesome-swiper' export default { name: "s-slider", props: ['leftWidth','rightWidth','topHeight','bottomHeight'], data() { return { horizontalSwiperOptions: { slidesPerView: 'auto', initialSlide: 0, direction: 'horizontal' }, verticalSwiperOptions:{ slidesPerView: 'auto', initialSlide: 0, direction: 'vertical' } } }, mounted() { setTimeout(() => { this._initMenuWidth(); }, 20); }, methods: { _initMenuWidth() { this.$refs.left.$el.style.width = this.leftWidth; this.$refs.right.$el.style.width = this.rightWidth; this.$refs.top.$el.style.height = this.topHeight; this.$refs.bottom.$el.style.height = this.bottomHeight; this.horizontalSwiper.updateSlides(); this.horizontalSwiper.slideTo(1, 1000, false); this.verticalSwiper.updateSlides(); this.verticalSwiper.slideTo(1, 1000, false); }, /*获取随机颜色*/ getRandomColor() { return "#" + ("00000" + ((Math.random() * 16777215 + 0.5) >> 0).toString(16)).slice(-6); } }, computed: { horizontalSwiper() { return this.$refs.horizontalSwiper.swiper; }, verticalSwiper(){ return this.$refs.verticalSwiper.swiper; } } } </script> <style scoped lang="scss"> @import "src/base/css/public/variable.scss"; @import "swiper/dist/css/swiper.css"; .s-slider { height: 100%; color: white; .swiper-container { @include fill-with-parent } } </style>
이 컴포넌트는 왼쪽 및 오른쪽 슬라이딩 메뉴의 너비, 상하 슬라이딩 메뉴의 높이, leftWdith, rightWidth, topHeight, BottomHeight의 네 가지 속성을 사용자 정의한 다음 수평 캐러셀을 사용하여 왼쪽 슬라이딩 메뉴와 메뉴가 오른쪽으로 슬라이드되고, 가운데 콘텐츠에 수직 캐러셀이 배치되어 슬라이드업 메뉴, 콘텐츠, 슬라이드다운 메뉴가 배치됩니다. 컴포넌트가 마운트되면 상위 컴포넌트에서 전달한 값을 기준으로 4개 메뉴의 너비와 높이를 초기화해야 하며, 너비와 높이가 초기화된 후 swiper 자체의 updateSlides를 호출하여 모두 업데이트해야 합니다. 그렇지 않으면 슬라이딩할 때 너비와 높이가 평소대로 업데이트됩니다. 상위 구성 요소에서 호출됨: <s-slider leftWidth="200px" rightWidth="300px" topHeight="100px" bottomHeight="150px">
<p slot="left">
left
</p>
<p slot="content">
Content
</p>
<p slot="right">
right
</p>
<p slot="top">
top
</p>
<p slot="bottom">
bottom
</p>
</s-slider>
이 기사의 사례를 읽은 후 방법을 마스터했다고 생각합니다. 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트의 다른 관련 기사를 주목하세요!
추천 도서:
vue.js의 데이터 전송 및 데이터 배포 단계에 대한 자세한 설명Angular17에서 사용자 정의 명령어 사용에 대한 자세한 설명
위 내용은 vue+swiper가 사이드바 메뉴를 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!