1.0.2 • Published 5 years ago

vue-active-preview v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

vue-active-preview

NPM

img img img img

vue-active-preview 是一个面向移动端、无依赖、轻量级的 vue放大预览组件(image gallery)

img

English | 简体中文

示例

img

img

安装

npm install vue-active-preview --save

导入

全局导入

// 样式引用
import 'vue-active-preview/dist/VueActivePreview.css'

import Vue from 'vue'
import VueActivePreview from 'vue-active-preview'

Vue.use(VueActivePreview)

局部导入

// 样式引用
import 'vue-active-preview/dist/VueActivePreview.css'

// in ES6 modules
import VueActivePreview from 'vue-active-preview'

// in CommonJS
const VueActivePreview = require('vue-active-preview')

export default {
  components: {
    VueActivePreview
  }
}

script 脚本形式导入

<link rel="stylesheet" href="../node-modules/vue-active-preview/dist/VueActivePreview.css" charset="utf-8">
<script src="../node-modules/vue-active-preview/dist/VueActivePreview.umd.min.js"></script>
new Vue({
  el: '#app',
  components: {
    VueActivePreview
  }
})

用法

Vue组件实例中使用:

<VueActivePreview :urlList="[
  'https://dummyimage.com/375x100/FB8A80?text=1',
  'https://dummyimage.com/375x100/29A90F?text=2',
  'https://dummyimage.com/375x100/6F9DFF?text=3'
]" />

Options

Props

参数类型描述默认值是否必须
urlListArray传入的图片数组[]
backgroundSizeString图片以何种缩放的形式铺在滑动容器框(Swiper)内,取值及效果都与 CSS background-size一致 只有当指定了 urlList 时才有效contain
maxScaleValueNumber最大放大倍数,如果设置为 0,表示不限制最大放大倍数5
showCounterBoolean是否需要默认的计数器false
counterStyleObject自定义默认计数器的样式 只有当 showCountertrue时才有效null
startIndexNumber起始渲染显示的previewItem index0
criticalValueNumber临界点的比例值,当超过此值代表的临界点,则将自动滑动到下一张图片1/3
autoPlayDelayNumber如果指定了此参数,并且值 >= 0,则将会将此值当做 自动轮播delay的时间(单位为 ms)进行自动轮播;不指定则不自动轮播 如果想要指定此值,一般建议设置为 3000null
durationNumber自动滚动到稳定位置所需的时间,单位是秒(ms)350
noDragWhenSingleBoolean如果只有一个 swipeItem,是否禁止拖动true

Events

事件名描述参数
click整个组件的点击事件(可用于控制组件的显示/隐藏)activeIndex
change每次滚动结束后的回调activeIndex

额外的能力

slot

VueActivePreview组件还可以接收一个 slot,方便开发者更加自由地定制化组件,但请注意的是,此 slot只是作为 VueActivePreview组件的一个普通子元素,而不是可缩放预览的图片组件

<VueActivePreview :urlList="urlList">
  <p>slot content</p>
</VueActivePreview>

License

MIT

1.0.2

5 years ago

1.0.1

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago