第一种:viewerjs使用介绍

【VUE】VUE 图片预览放大缩小插件 - 图1
viewerjs插件截图

1、安装依赖
npm install v-viewer —save

2、main.js内引用并注册调用

  1. //main.js
  2. import Viewer from 'v-viewer'
  3. import 'viewerjs/dist/viewer.css'
  4. Vue.use(Viewer);
  5. Viewer.setDefaults({
  6. Options: { "inline": true, "button": true, "navbar": true, "title": true, "toolbar": true, "tooltip": true, "movable": true, "zoomable": true, "rotatable": true, "scalable": true, "transition": true, "fullscreen": true, "keyboard": true, "url": "data-source" }
  7. });

3、代码中使用xxx.vue

  1. <template>
  2. <div class="content">
  3. <h1>Viewer图片预览插件</h1>
  4. <viewer :images="imgs">
  5. <img v-for="src in imgs" :src="src.url" :key="src.title">
  6. </viewer>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data () {
  12. return {
  13. imgs: [
  14. {
  15. url: 'https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=85690711,3884201894&fm=27&gp=0.jpg',
  16. title: '图片1'
  17. },
  18. {
  19. url: 'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=3564877025,796183547&fm=27&gp=0.jpg',
  20. title: '图片2'
  21. }
  22. ]
  23. }
  24. },
  25. }
  26. </script>

【VUE】VUE 图片预览放大缩小插件 - 图2
viewerjs使用配置参数

第二种:vue-photo-preview使用介绍

【VUE】VUE 图片预览放大缩小插件 - 图3
vue-photo-preview插件截图

1、先安装依赖
npm install vue-photo-preview --save

2、main.js内引用并注册调用

  1. //main.js
  2. import preview from 'vue-photo-preview'
  3. import 'vue-photo-preview/dist/skin.css'
  4. Vue.use(preview)

3、代码中使用xxx.vue

  1. <template>
  2. <div class="content">
  3. <section>
  4. <h1>preview图片预览插件</h1>
  5. <img v-for="src in imgs" :src="src.url" :key="src.title" :preview="src.preview" :preview-text="src.title">
  6. </section>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data () {
  12. return {
  13. imgs: [
  14. {
  15. url: 'https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=85690711,3884201894&fm=27&gp=0.jpg',
  16. title: '图片1',
  17. preview: '1'
  18. },
  19. {
  20. url: 'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=3564877025,796183547&fm=27&gp=0.jpg',
  21. title: '图片2',
  22. preview: '1'
  23. }
  24. ]
  25. }
  26. },
  27. }
  28. </script>

option配置查看 http://photoswipe.com/documentation/options.html

第三种:vue-picture-preview使用介绍

【VUE】VUE 图片预览放大缩小插件 - 图4
vue-picture-preview插件截图

1、先安装依赖
npm install vue-picture-preview --save

2、main.js内引用并注册调用

  1. //main.js
  2. iimport vuePicturePreview from 'vue-picture-preview'
  3. Vue.use(vuePicturePreview)

3、在根组件添加 lg-preview 组件的位置

  1. <!-- APP.vue -->
  2. <div id="app">
  3. <router-view></router-view>
  4. <lg-preview></lg-preview>
  5. </div>

4、代码中使用xxx.vue

  1. <template>
  2. <div class="content">
  3. <h1>vuePicturePreview图片预览插件</h1>
  4. <img v-for="(img,index) in imgs"
  5. v-preview="img.url"
  6. :src="img.url"
  7. :alt="img.title"
  8. :key="index"
  9. preview-title-enable="true"
  10. preview-nav-enable="true">
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. data () {
  16. return {
  17. imgs: [
  18. {
  19. url: 'https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=85690711,3884201894&fm=27&gp=0.jpg',
  20. title: '图片1'
  21. },
  22. {
  23. url: 'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=3564877025,796183547&fm=27&gp=0.jpg',
  24. title: '图片2'
  25. }
  26. ]
  27. }
  28. },
  29. }
  30. </script>

总结

除了第三种vue-picture-preview插件只有预览和切换上下张功能,另外两种都有放大和缩小(包括手势)以及其他功能