Vue使用v-viewer插件实现图片放大缩小的功能

Posted cyqdeshenluo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue使用v-viewer插件实现图片放大缩小的功能相关的知识,希望对你有一定的参考价值。

今天无意中发现一个比较有趣的插件v-viewer,可以实现图片的放大缩小,旋转,图片集预览,全屏预览等功能非常全面。

效果:

技术图片

 

如何使用

1、安装依赖
npm install v-viewer --save
2、在main.js中全局引入
import Viewer from ‘v-viewer’
import ‘viewerjs/dist/viewer.css’
Vue.use(Viewer)
Viewer.setDefaults({
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’ }
})

 

属性

技术图片

 

 

页面中使用:注意,这里的images务必是Array类型,否则会报错

技术图片

 

 

如果这里的images不是Array类型,就会报错:

技术图片

 

如果只需要预览一张图片

注意每次预览时把images清空否则之前的图片路径也在其中,就像这样:

技术图片

 


技术图片

 

参考:https://blog.csdn.net/jasmine0178/article/details/103494864

 

https://github.com/mirari/v-viewer?spm=a2c4e.10696291.0.0.52f319a4bkZfKM

以上是关于Vue使用v-viewer插件实现图片放大缩小的功能的主要内容,如果未能解决你的问题,请参考以下文章

Vue插件(点击图片放大)v-viewer使用

vue图片点击放大预览v-viewer

图片预览放大缩小插件

vue3使用viewer

一款强大的前端vue实用图片放大预览插件(推荐收藏)

vue图片轮播一次显示三张且中间一张图片可以放大缩小