亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

Vue + ts實現輪播插件的示例

瀏覽:3日期:2022-11-02 13:18:04

背景

最近在學習 ts,打算用 ts 寫一個練手項目,參照的網站內容是 wanandroid,這個接觸過android開發的同學可能更i了解一些,其實一開始是打算后臺全部都自己寫的,不過奈何一個懶字,所以現在的打算就是自己實現登錄注冊簡單的邏輯。這些都不重要,一開始實現輪播是打算在 vue 中引入輪播圖 swiper.js,后來想想還是自己寫算了。也當作熟悉 ts。先上效果圖(這里沒有動態圖片,各位同學可以自己實現)

代碼已經上傳 git,進度比較慢,如果可以各位大佬點個 star。 github.com/jiwenjie/vu…

Vue + ts實現輪播插件的示例

<!-- vue 實現輪播圖 --><template> <div : @mouseover='suspend' @mouseout='autoPlay' @blur='suspend' @focus='autoPlay'> <!-- 淡入淡出效果 --> <transition-group tag='ul' :name='animation'> <li v-for='(item, index) in bannerList' :key='item.id' v-show='curIndex === index'> <img :src='http://www.aoyou183.cn/bcjs/item[nameField]'> </li> </transition-group> <!-- 操作按鈕部分(底部導航器) --> <ul v-if='showPagination'> <li : v-for='(item, index) in bannerList' :key='item.id' @click='jump(item, index)'></li> </ul> <!-- 左側右側切換按鈕 --> <template v-if='showBtn'> <div class='common-btn-space pre-btn-space'> <span class='common-btn-span pre-btn-span'></span> </div> <div class='common-btn-space next-btn-space'> <span class='common-btn-span next-btn-span'></span> </div> </template> </div></template><!-- ts 文件拆分 --><script lang='ts'> // 兩種動畫背景 import { Component, Prop, Vue } from ’vue-property-decorator’ import swiper from ’./ts/swiper’ @Component({ name: ’Swiper’, mixins: [swiper], }) export default class extends Vue {}</script><!-- 樣式文件拆分 --><style lang='scss' scoped> @import url('./css/swiper.scss');</style>

ts文件

import { Component, Prop, Vue} from ’vue-property-decorator’import { Banner } from ’@/beans/index’ // 首頁banner圖@Component({ name: ’Swiper’, components: {},})export default class IndexPage extends Vue { @Prop({ default: 6000 }) private timeout: number; // 默認的切換banner圖的時長 @Prop({ default: 400 }) private height: number | string; // banner區域高度 @Prop({ default: () => [] }) private bannerList: Banner[]; // 傳入的圖片數組 @Prop({ default: ’imagePath’ }) private nameField: string; // 圖片地址對應的字段名 @Prop({ default: true }) private showPagination: boolean; // 是否顯示底部原點分頁器 @Prop({ default: false }) private showBtn: boolean; // 是否顯示左右的切換按鈕 @Prop({ default: ’fade’, validator: function (value) { let arr = [’fade’, ’translate’] return arr.includes(value); } }) private animation: string; // 是否顯示左右的切換按鈕 private timer: any; private curIndex: number = 0; created(): void { this.autoPlay() } // lifecycle hook mounted(): void { } // method private handleSelect() { } // 自動播放圖片 private autoPlay() { clearInterval(this.timer)//還是一樣,開啟定時器之前需要先清除一下,防止bug this.timer = setInterval(this.nextClick, this.timeout as number) } // 切換下一個 banner 圖片 private nextClick() { this.curIndex++; if (this.curIndex >= this.bannerList.length) { this.curIndex = 0; } } // 切換上一個圖片 private preClick() { this.curIndex++; if (this.curIndex >= this.bannerList.length) { this.curIndex = 0; } } // 暫停的方法 private suspend() { clearInterval(this.timer) } // 點擊底部原點按鈕調整方法 private jump(bannerItem: Banner, index: number) { this.curIndex = index; } // private animationMethodValidator(): string { // }}

css文件

#swiperDIV { position: relative; display: block; width: 100%;}.img-list { width: 100%; height: 100%; position: relative; margin: 0; padding: 0; z-index: 9;}.img-list li { position: absolute; left: 0; width: 100%; height: 100%;}.img-list img { width: 100%; height: 100%;}.option-list { position: absolute; left: 0; right: 0; bottom: 10px; height: 30px; line-height: 30px; z-index: 99; text-align: center;}.option-list-item { display: inline-block; background-color: rgba(255, 255, 255, .4); width: 10px; height: 10px; border-radius: 50%; margin: 0 3px; cursor: pointer;}.cur-option-style { background-color: #fff;}.common-btn-space { position: absolute; top: 0; bottom: 0; z-index: 99; width: 22px;}.pre-btn-space { left: 20px;}.next-btn-space { right: 20px;}.common-btn-span { display: inline-block; width: 22px; height: 22px; background-color: transparent; cursor: pointer; position: absolute; top: 0; bottom: 0; margin: auto; border-top: 2px solid transparent; border-right: 2px solid transparent; border-bottom: 2px solid red; border-left: 2px solid red;}.pre-btn-span { transform: rotate(45deg);}.next-btn-span { transform: rotate(-135deg);}/* 實現動畫的兩組類(淡入淡出) */.fade-enter-active,.fade-leave-active { transition: opacity .6s;}.fade-enter,.fade-leave-to { opacity: 0;}/* (滾動) */.translate-enter { transform: translateX(100%)}.translate-enter-to { transition: all .6s ease; transform: translateX(0);}.translate-leave { transform: translateX(0)}.translate-leave-active { transition: all .6s ease; transform: translateX(-100%)}

很多地方做了配置,包括底部的分頁器,左右兩側的按鈕。動畫目前只實現了兩種,一種是淡入淡出,一種是平滑滾動。

這里我把整個 vue 文件做了拆分。有多種原因,一個是我司做項目時整體就是這種拆分,不過我司用的就是正常的 vue 和 js。主要原因就是考慮到頁面復雜和邏輯交互很多的時候,一個 vue 文件可能超過萬行,所以做了拆分,這里我也延續了這種寫法,基本思想其實就是使用 mixins 引入 ts。還有一個原因是 ts 在 vue 文件中會有很多莫名其妙的報錯,明明代碼沒問題,但就是有錯誤警告。如果提到 ts 文件中就正常,這也是我拆分的一個原因。

其他的功能可以自己在加,如果有問題可以留言,有錯誤希望各位大佬指正。

以上就是Vue + ts實現輪播插件的示例的詳細內容,更多關于Vue + ts 輪播插件的資料請關注好吧啦網其它相關文章!

標簽: Vue
相關文章:
主站蜘蛛池模板: 久久99视频精品 | 欧美日韩性生活 | 亚洲无吗视频 | 九九视频高清视频免费观看 | 亚洲综合图片区 | 久久综合给合久久狠狠狠色97 | 一级特黄录像实干片 | 日韩在线第一区 | 精品九九在线 | 黄色一级免费 | 美国黄色一级片 | 欧美色图一区 | 高清女主播一区二区三区 | 在线观看视频黄 | 精精国产xxxx视频在线播放器 | 国产高清不卡一区二区三区 | 91短视频在线看 | 日本高清天码一区在线播放 | 免费一级片网站 | 思思久久q6热在精品国产 | 国产特级毛片 | 国产视频h| 一级黄色日本 | 国产高清在线精品一区αpp | 7799国产精品久久久久99 | 一级片黄色的 | 日韩电影中文字幕在线网站 | 真实做爰对白录音 | 欧美操大逼视频 | 国产污片在线观看 | 久久er热这里只有精品23 | 手机在线观看黄色 | 全免费a级毛片免费看 | 欧美精品一区二区三区免费观看 | 亚洲综合在线播放 | 最新欧美精品一区二区三区 | 色妇色综合久久夜夜 | 免费在线国产视频 | 国产免费一区二区三区 | 国内一区二区三区精品视频 | 国语对白清晰好大好白在线 |