cank : vue |实现点击图片预览浏览器满屏大图_橘子972的博客-CSDN博客_vue 图片点击全屏
1.安装插件
cnpm install vue-directive-image-previewer -D
2.[src/main.js]引入插件
import VueDirectiveImagePreviewer from 'vue-directive-image-previewer'
import 'vue-directive-image-previewer/dist/assets/style.css'
Vue.use(VueDirectiveImagePreviewer, {
//1. wrapper背景颜色———— 你也可以写成background: '#000' //支持rgba、rgb和image: 'url(xxx)'
background: {
color: '#000'
},
//2. 转换动画
animate: {
duration: 600,
delay: 500
},
//3. 鼠标样式(css)
cursor: 'pointer',
copy:true,
zIndex:9999,
maxWidth:"100%",
maxHeight:"100%"
})
3. 使用
<img v-image-preview :src="temp.imgSrc" style="height: 50px;"/>