vue+swiper가 사이드바 메뉴를 구현하는 방법

php中世界最好的语言
풀어 주다: 2018-04-13 13:36:32
원래의
3591명이 탐색했습니다.

이번에는 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="{&#39;background&#39;: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="{&#39;background&#39;:getRandomColor()}"> 
   <slot name="top"></slot> 
   </swiper-slide> 
   <swiper-slide class="content" ref="content" v-bind:style="{&#39;background&#39;:getRandomColor()}"> 
   <slot name="content"></slot> 
   </swiper-slide> 
   <swiper-slide class="bottom" ref="bottom" v-bind:style="{&#39;background&#39;:getRandomColor()}"> 
   <slot name="bottom"></slot> 
   </swiper-slide> 
  </swiper> 
  </swiper-slide> 
  <swiper-slide class="right" ref="right" v-bind:style="{&#39;background&#39;: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를 호출하여 모두 업데이트해야 합니다. 그렇지 않으면 슬라이딩할 때 너비와 높이가 평소대로 업데이트됩니다. 상위 구성 요소에서 호출됨:

상위 구성 요소에 이 vue 구성 요소를 도입하는 것을 잊지 마세요.

이 기사의 사례를 읽은 후 방법을 마스터했다고 생각합니다. 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트의 다른 관련 기사를 주목하세요!

추천 도서:

vue.js의 데이터 전송 및 데이터 배포 단계에 대한 자세한 설명

Angular17에서 사용자 정의 명령어 사용에 대한 자세한 설명

위 내용은 vue+swiper가 사이드바 메뉴를 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!