国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Vue實現可復用輪播組件的方法

3403771864 / 449人閱讀

  vue可以簡單的就實現一個輪播圖的基礎功能,不僅重復用,且可抽離出來作為一個公共組件。

  html和js部分

  <template>
  <div
  class="img-box"
  ref="img-box"
  :style="{width: styles.width, height: styles.height}"
  >
  <div v-for="(item, index) in imgList"
  :key="index"
  class="img-item"
  :ref="'img-item-' + index"
  :class="{'active': index === active}"
  >
  <img
  :src="item"
  style="width:100%"
  :style="{height: styles.height}"
  />
  </div>
  <div
  class="img-position"
  v-if="isShowPosition"
  >
  <template v-for="(item, index) in imgList">
  <span :key="index"
  class="img-position-item"
  :ref="'img-position-' + index"
  :class="[
  {'active': index === active},
  isCircle ? 'circle' : '',
  isNums ? 'nums' : ''
  ]"
  @click="clickSpan(index)"
  >
  {{isNums ? index + 1 : ''}}
  </span>
  </template>
  </div>
  <div
  class="left-btn"
  v-if="isShowLeftOrRightBtn"
  @click="clickBtn('left')"
  >
  <i class="iconfont roll-zuo"></i>
  </div>
  <div
  class="right-btn"
  v-if="isShowLeftOrRightBtn"
  @click="clickBtn('right')"
  >
  <i class="iconfont roll-you"></i>
  </div>
  </div>
  </template>
  <script>
  export default {
  name: 'Roll',
  props: {
  imgList: { // 圖片列表 src數組
  type: Array,
  default: () => []
  },
  isShowPosition: { // 是否顯示下方小圓點
  type: Boolean,
  default: true
  },
  positionInner: { // 圓點內容
  type: String,
  default: 'circle' // 默認圓點,可選值 circle => 圓點 num => 數字 both => 
圓點+數字
  },
  isShowLeftOrRightBtn: { // 是否顯示左右按鈕
  type: Boolean,
  default: true
  },
  duration: { // 切換間隔
  type: [Number, String],
  default: 3000
  },
  styles: { // 自定義輪播圖片寬高 默認500*300
  type: Object,
  default: () => {
  return {
  width: '500px',
  height: '300px'
  }
  }
  }
  },
  data () {
  return {
  active: 0, // 當前輪播圖片
  timer: null // 定時器
  }
  },
  computed: {
  isCircle () {
  return ['circle', 'both'].includes(this.positionInner)
  },
  isNums () {
  return ['num', 'both'].includes(this.positionInner)
  }
  },
  updated () {
  if (this.timer) this.clearTimer()
  this.setTimer()
  },
  created () {
  this.setTimer()
  },
  methods: {
  clickSpan (index) {
  this.clearTimer()
  this.active = index
  },
  clickBtn (arg) {
  this.clearTimer()
  if (arg === 'left') {
  this.active = this.active - 1 < 0 ? this.imgList.length - 1 : 
this.active - 1
  } else {
  this.active = this.active + 1 === this.imgList.length ? 0 : this.active + 
1
  }
  this.setTimer()
  },
  setTimer () {
  this.timer = setInterval(() => {
  this.clickBtn('right')
  }, Number(this.duration))
  },
  clearTimer () {
  clearInterval(this.timer)
  this.timer = null
  }
  }
  }
  </script>

  css樣式部分  

  <style scoped>
  @import url('//at.alicdn.com/t/font_1451815_senarwrqu6.css');
  * {
  margin: 0;
  padding: 0;
  }
  .img-box {
  position: relative;
  margin: 0 auto;
  }
  .img-item {
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -5;
  text-align: center;
  }
  .img-item.active {
  z-index: 0;
  opacity: 1;
  transition: .3s;
  }
  .img-position {
  position: absolute;
  bottom: 5px;
  left: 50%;
  display: flex;
  transform: translate(-50%, 0);
  }
  .img-position-item {
  display: inline-block;
  width:10px;
  height:10px;
  box-sizing: border-box;
  cursor: pointer;
  }
  .img-position-item.circle {
  border-radius: 50%;
  border: 1px solid #606266;
  }
  .img-position-item.nums {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #606266;
  font-size:14px;
  }
  .img-position-item:hover, .img-position-item.active {
  border-color: #d1d2d3;
  color: #d1d2d3;
  transition: .3s;
  }
  .img-position-item + .img-position-item {
  margin-left: 10px;
  }
  .left-btn, .right-btn {
  position: absolute;
  top: 50%;
  bottom: 0;
  width: 20px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #d1d2d3;
  font-size: 20px;
  transform: translate(0, -50%);
  }
  .left-btn:hover, .right-btn:hover {
  color: #fff;
  transition: .3s;
  }
  .left-btn {
  left: 5px;
  }
  .right-btn {
  right: 5px;
  }
  </style>

  用上述方式只是用Vue作為一個組件,可以現在一個輪播圖比較基礎的部分,大家可以多多參照。


文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/127614.html

相關文章

  • 面試官(6): 寫過『通用前端組件』嗎?

    摘要:很久沒上掘金發現草稿箱里存了好幾篇沒發的文章最近梳理下發出來往期面試官系列如何實現深克隆面試官系列的實現面試官系列前端路由的實現面試官系列基于數據劫持的雙向綁定優勢所在面試官系列你為什么使用前端框架前言設計前端組件是最能考驗開發者基本功的測 很久沒上掘金,發現草稿箱里存了好幾篇沒發的文章,最近梳理下發出來 往期 面試官系列(1): 如何實現深克隆 面試官系列(2): Event Bus...

    waltr 評論0 收藏0
  • vue-music(1)音樂播發器 項目開發記錄

    摘要:在中新建組件許文瑞正在吃屎。。。。在中添加如下代碼三歌手組件開發歌手首頁開發數據獲取數據獲取依舊從音樂官網獲取歌手接口創建我們和以前一樣,利用我們封裝的等發放,來請求我們的接口,返回給。 Vue-Music 跟學一個網課老師做的仿原生音樂APP跟學的筆記,記錄點滴,也希望對學習vue初學小伙伴有點幫助 showImg(https://segmentfault.com/img/remot...

    happen 評論0 收藏0
  • Vue 實現網易云音樂 WebApp

    摘要:基于等開發一款移動端音樂,界面參考了安卓版的網易云音樂布局適配常見移動端。圖標使用阿里巴巴圖標庫,中間的唱片旋轉動畫使用了實現。搜索功能實現功能搜索歌手歌單歌曲熱門搜索數據節流上拉刷新保存搜索記錄。 基于 Vue(2.5) + vuex + vue-router + vue-axios +better-scroll + Scss + ES6 等開發一款移動端音樂 WebApp,UI ...

    Karuru 評論0 收藏0

發表評論

0條評論

3403771864

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<