Vue中使用vue-preview实现缩略图

vue

1.安装vue-preview

2.在项目的main.js文件中导入并使用
2.1全局安装(推荐使用)

import VuePreview from ‘vue-preview’

Vue.use(VuePreview)

2.1带参数安装

import VuePreview from ‘vue-preview’

Vue.use(preview, {

mainClass: ‘pswp–minimal–dark’,

barsSize: {top: 0, bottom: 0},

captionEl: false,

fullscreenEl: false,

shareEl: false,

bgOpacity: 0.85,

tapToClose: true,

tapToToggleControls: false})

3**.在组件中使用vue-preview(此时需要注意的是,使用Vue-resource的get方法时,必须将属性‘w’,‘h’,‘msrc’放进数组里面msrc的值和src值相同)**



4.对缩略图设置样式(特别注意要将样式中scoped去掉,否则预览前的图片大小无法和样式设置一样)
5.效果展示
5.1预览前

5.2预览时

以上是 Vue中使用vue-preview实现缩略图 的全部内容, 来源链接: utcz.com/z/378210.html

回到顶部