vue-easy-lightbox
A Vue.js 3.0 image lightbox component with Zoom / Drag / Rotate / Switch .
Vue-easy-lightbox@1.x only supports Vue.js 3, if you need Vue.js 2 version please check here.
Installation
Package managers
Direct Download
Include the CDN link in the html file.
Different Builds
ES5
build is converted by Babel
. If you don't need to support an es5 environment, you can choose a nonES5
build with smaller size.
ES5(default in package.json) | ES6 | |
---|---|---|
UMD(for browsers) | vue-easy-lightbox.es5.umd.min.js | vue-easy-lightbox.umd.min.js |
CommonJS | vue-easy-lightbox.es5.common.min.js (pkg.main) | vue-easy-lightbox.common.min.js |
ES Module(for bundlers) | vue-easy-lightbox.es5.esm.min.js (pkg.module) | vue-easy-lightbox.esm.min.js |
Usage
Direct <script>
Include
example:
Register VueApp component
The Global Vue Constructor is no longer available in Vue.js
3.0. You need to register the vue-easy-lightbox
for each VueApp
you use.
https://v3.vuejs.org/guide/migration/global-api.html#a-new-global-api-createapp
Usage of Component
Use vue slot custom buttons or toolbar
Reference: Slots-Vue.js
Options
Props
Name | Type | Default | Description |
---|---|---|---|
visible | Boolean | required | Control lightbox display |
imgs | String/String[]/ImgObject:{ src: string, title: string }/ImgObject[] | required | Image's src / array of src / ImgObject:{ src, title } / array of ImgObject / array of ImgObject. |
index | Number | 0 | Index of imgList |
escDisabled (esc-disabled) | Boolean | false | By default, press the esc key to close Modal during presentation. |
moveDisabled (move-disabled) | Boolean | false | Pass true to disable image movement. |
Event
Name | Description | Return Value |
---|---|---|
hide | When you click modal mask or close Btn, component will emit this event | - |
on-error | Image loading error | event (event.target is not the image to be displayed) |
on-prev-click | Emit when prev btn is clicked | (oldIndex, newIndex) |
on-next-click | Emit when next btn is clicked | (oldIndex, newIndex) |
on-index-change | Emit when imgs's index is changed | (oldIndex, newIndex) |
Slot & Scoped Slot
Slot Name | Slot Props | Slot Props Type | Description |
---|---|---|---|
prev-btn | prev | Function | Show the prev img |
next-btn | next | Function | Show the next img |
close-btn | close | Function | Close modal |
toolbar | toolbarMethods: { zoomIn, zoomOut, rotate(rotateLeft), rotateLeft, rotateRight } | { Function } | Zoom in, zoom out, rotate(rotateLeft), rotateLeft, rotateRight |
loading | - | - | Loading icon |
onerror | - | - | Error Placeholder |