vue swiper 實現滾動條功能(這個可當元件引入使用)
<template>
<swiper :options="swiperOption">
<swiper-slide>
<slot></slot>
</swiper-slide>
<div class="swiper-scrollbar" v-if="scrollbar" slot="scrollbar"></div>
</swiper>
</template>
<script>
import { Swiper, SwiperSlide } from 'vue-awesome-swiper'
export default {
name: 'swiper-example-scroll-container',
title: 'Scroll container',
components: {
Swiper,
SwiperSlide
},
data() {
return {
swiperOption: {
direction: 'vertical',
slidesPerView: 'auto',
freeMode: true,
setWrapperSize: true,
scrollbar: {
el: this.swiper-scrollbar ? '.swiper-scrollbar ' : null,
hide: true
}
}
}
},
props:{
scrollbar:{
type: Boolean,
default: true
}
}
}
</script>
<style lang="scss" scoped>
</style>
相關文章
- Vue.js 桌面端自定義滾動條元件|vue美化滾動條VScrollVue.js元件
- vue2.x自定義虛擬滾動條|vue美化滾動條元件VscrollVue元件
- 使用 React + Rxjs 實現一個虛擬滾動元件ReactJS元件
- Vue實現浮動按鈕元件 - 頁面滾動時自動隱藏 - 可拖拽Vue元件
- vue2+swiper 縱向弧形滾動效果Vue
- Vue.js+cube-ui(Scroll元件)實現類似頭條效果的橫向滾動導航條Vue.jsUI元件
- Vue完美記住滾動條和實現下拉載入Vue
- vue文字滾動元件Vue元件
- vue3 使用swiper輪播元件Vue元件
- vue 自定義指令實現,滾動條百分比進度條。Vue
- element-ui滾動條元件UI元件
- 實現基於React的移動端Swiper元件React元件
- Vue 無限滾動元件Vue元件
- css實現隱藏滾動條並可以滾動內容CSS
- vue2.0使用vue-seamless-scroll實現表格平滑滾動Vue
- 記錄--vue3中使用Swiper元件Vue元件
- 手把手教你實現一個 Vue 進度條元件!Vue元件
- Vue引入vxe-table(一個功能非常強大的表格元件)Vue元件
- vue3.0使用vue3-seamless-scroll實現表格平滑滾動Vue
- 兩種方式實現橫向滾動條
- vue-count-to (數字滾動元件)Vue元件
- css實現修改預設滾動條樣式CSS
- 3種方法實現CSS隱藏滾動條並可以滾動內容CSS
- 不到200行用Vue實現類似Swiper.js的輪播元件VueJS元件
- CSS動畫-數字輪盤滾動效果實現(元件封裝,快速使用)CSS動畫元件封裝
- Vue路由+Tab元件實現多頁籤功能Vue路由元件
- Vue 返回記住滾動條位置詳解Vue
- 使用js控制滾動條的位置JS
- 使用CSS隱藏元素滾動條CSS
- 使用 flutter 的ListView實現滾動列表FlutterView
- 【Flutter實戰】自定義滾動條Flutter
- Vue實現自動觸發功能Vue
- 使用TypeScript給Vue 3.0寫一個指令實現元件拖拽TypeScriptVue元件
- 使用 selenium (python),無法在頁面的 iframe 框架中實現對貌似是自定義滾動條進行滾動Python框架
- 在vue中封裝一個從右至左滾動公告的元件Vue封裝元件
- 一個支援百萬量級的vue3無限滾動元件Vue元件
- div滾動條樣式,水平滾動
- 隱藏滾動條保留滾動效果