1. 程式人生 > >實現一個vue的圖片預覽外掛

實現一個vue的圖片預覽外掛

vue-image-swipe

基於photoswipe實現的vue圖片預覽元件

安裝

1 第一步

npm instatll vue-image-swipe -D

2 第二步

vue 入口檔案引入

import Vue from 'vue'
import VueImageSwipe from 'vue-image-swipe'
import 'vue-image-swipe/dist/vue-image-swipe.css'
Vue.use(VueImageSwipe)

使用

<template>
<div>
  hello world
  <div>
    <ul>
      <li
        :key="index"
        @click="preview(index)"
        v-for="(l, index) in images">
         <img :src="l" alt="">
      </li>
    </ul>
  </div>
</div>
</template>
<script>
export default {
  name: 'app',
  data() {
    return {
      images: [
        'http://oayhezji6.bkt.clouddn.com/preview1.jpg',
        'http://oayhezji6.bkt.clouddn.com/preview2.jpg',
        'http://oayhezji6.bkt.clouddn.com/preview3.jpg',
        'http://oayhezji6.bkt.clouddn.com/preview9.jpg',
        'http://oayhezji6.bkt.clouddn.com/preview10.jpg',
        'http://oayhezji6.bkt.clouddn.com/preview6.jpg'
      ]
    }
  },
  created() {
  },
  methods: {
    preview(index) {
      this.$imagePreview({
        images: this.images,
        index: index,
      })
    }
  }
}
</script>

methods

只暴露了一個方法this.$imagePreview,並繫結到vue的原型上使用

this.$imagePreview(options = {})

options有三個引數

引數 預設值 說明
images 空陣列 圖片的url陣列
index 0 預覽圖片的索引值, 預設是0
defaultOpt {} 配置項

defaultOpt 的配置項請參考photoswipe配置項注意:不能保證所有配置項都是可用的

列舉一些常用的配置

defaultOpt: {
  fullscreenEl: true,
  shareEl: false,
  arrowEl: true,
  preloaderEl: true,
  loop: false,
  bgOpacity: 0.85,
  showHideOpacity: true,
  errorMsg: '<div class="pswp__error-msg">圖片載入失敗</div>',
}

demo

demo

LICENSE

MIT