vue-litebox
A lightweight, zero dependency lightbox implementation for vuejs.
Out of the box vue-litebox is pretty ugly looking, but this is because it ships with the absolute minimum CSS in order to provide the lightbox functionality. The making it look pretty is left to the implementor as I find that one size doesn't always fit all.
Supports images as well as youtube and vimeo videos.
Instalation
Install via npm
or include via a script tag for browser based projects
Usage
NB If included via a script tag, the component will be regisered globally so the following import
and components
declarations in the example below won't be necesary.
Options
- items: Array of url strings and/or objects with a
src
property - startAt: The index at which to start the lightbox
- closeCaption: The caption to display on the close button. Defaults to 'Close'
- prevCaption: The caption to display on the prev arrow button. Defaults to 'Previous'
- nextCaption: The caption to display on the next arrow button. Defaults to 'Next'
- loadingCaption: The caption to display whilst loading a media item. Defaults to 'Loading...'
- videoRegex: The regex to match for video URLs which will displayed in a 16:9 ration iframe. Defaults to
/youtube.com|vimeo.com/
- closeOnEsc: Define whether to close the lightbox on
Esc
key press. Defaults totrue
- nextOnImageClick: Define whether clicking an image moves you to the next image. Defaults to
true
Events
- close: Fired when the close button is clicked or
Esc
key is pressed withcloseOnEsc
enabled
Slots
loading
Provide custom markup for the loading overlay
close
Provide custom markup for the close button
prev
Provide custom markup for the prev button
next
Provide custom markup for the next button
caption
Provide custom markup for the next button