vue-preview 缩略图横向滑动插件
注意:This plugin currently support vue2.5 and above安装包:npm i vue-preview -S安装插件:import VuePreview from 'vue-preview'// defalut installVue.use(VuePreview)// with parameters installVue.use(pr...
·
注意:This plugin currently support vue2.5 and above
- 安装包:
npm i vue-preview -S
- 安装插件:
import VuePreview from 'vue-preview'
// defalut install
Vue.use(VuePreview)
// with parameters install
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
})
- 引用实例:
<template>
<vue-preview :slides="slide1" @close="handleClose"></vue-preview>
</template>
<script>
export default {
data () {
return {
slide1: [
{
src: 'https://farm6.staticflickr.com/5591/15008867125_68a8ed88cc_b.jpg',
msrc: 'https://farm6.staticflickr.com/5591/15008867125_68a8ed88cc_m.jpg',
alt: 'picture1',
title: 'Image Caption 1',
w: 600,
h: 400
},
{
src: 'https://farm4.staticflickr.com/3902/14985871946_86abb8c56f_b.jpg',
msrc: 'https://farm4.staticflickr.com/3902/14985871946_86abb8c56f_m.jpg',
alt: 'picture2',
title: 'Image Caption 2',
w: 1200,
h: 900
}
]
}
},
methods: {
handleClose () {
console.log('close event')
}
}
}
</script>
slide item options
Property | Description |
---|---|
src | main (large) image |
msrc | small image |
alt | image replacement text |
w | image width |
h | image height |
Events
Event name | Description | parameter |
---|---|---|
close | close gallery | nothing |
官网:vue-preview
更多推荐
已为社区贡献19条内容
所有评论(0)