vue-zoomable-lightbox

1.1.2 • Public • Published

vue-zoomable-lightbox

A zoomable image responsive lightbox component for vue based on pexea12

Preview for Desktop

vue-zoomable-lightbox-web

Preview for Mobile

vue-zoomable-lightbox-mobile

Development (NPM / Yarn)

npm run dev
yarn dev

Install

NPM / Yarn

Install the package:

npm install vue-zoomable-lightbox
yarn add vue-zoomable-lightbox

Globally in your project (main.js)

import Vue from 'vue'
import LightBox from 'vue-zoomable-lightbox'
require('vue-zoomable-lightbox/dist/vue-zoomable-lightbox.min.css')

Vue.component('light-box',LightBox)

Inside component locally

import LightBox from 'vue-zoomable-lightbox'
require('vue-zoomable-lightbox/dist/vue-zoomable-lightbox.min.css')

export default {
  components: {
    LightBox
  },
}

plugins/vue-zoomable-lightbox.js for Nuxt Js

import Vue from 'vue'
import LightBox from 'vue-zoomable-lightbox'
require('vue-zoomable-lightbox/dist/vue-zoomable-lightbox.min.css')

Vue.component('light-box',LightBox)

Inside nuxt.config.js add the plugin

{ src: '~/plugins/vue-zoomable-lightbox.js', mode: 'client'},

How to use:

<light-box ref="lightbox" :media="media"></light-box>

How to use for Nuxt Js:

<client-only>
  <light-box ref="lightbox" :media="media"></light-box>
</client-only>

How to open lightbox

this.$refs.lightbox.showImage(index) //index of media array

Show/Hide lightbox at beginning (ShowLightBox)

<light-box ref="lightbox" :media="media" :show-light-box="false"></light-box>

Complete example

<template>
  <div>
    <light-box
      :show-light-box="false"
      ref="lightbox"
      :zoomScale="2"
      :media="images"
    ></light-box>
    <img
      v-for="(image, index) in images"
      @click="$refs.lightbox.showImage(index)"
      width="150"
      :key="index"
      :src="image.thumb"
      alt=""
    />
  </div>
</template>

<script>
export default {
  data() {
    return {
      images: [
        {
          // For image
          thumb:
            "https://images.unsplash.com/photo-1593085512500-5d55148d6f0d?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8Y2FydG9vbiUyMGNoYXJhY3RlcnxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&w=1000&q=80",
          src: "https://images.unsplash.com/photo-1593085512500-5d55148d6f0d?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8Y2FydG9vbiUyMGNoYXJhY3RlcnxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&w=1000&q=80",
          caption: "caption to display. receive <html> <b>tag</b>", // Optional
        },
        {
          // For image
          thumb:
            "https://images.unsplash.com/photo-1616098063625-65f32186e609?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1170&q=80",
          src: "https://images.unsplash.com/photo-1616098063625-65f32186e609?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1170&q=80",
          caption: "caption to display. receive <html> <b>tag</b>", // Optional
        },
      ],
    };
  },
};
</script>

<style>
</style>

media has the structure:

[
  { // For image
    thumb: 'http://example.com/thumb-image1.jpg',
    src: 'http://example.com/image1.jpg',
    caption: 'caption to display. receive <html> <b>tag</b>', // Optional
    srcset: '...' // Optional for displaying responsive images
  },
  { // For image
    thumb: 'http://example.com/thumb-image2.jpg',
    src: 'http://example.com/image2.jpg',
    caption: 'caption to display. receive <html> <b>tag</b>', // Optional
    srcset: '...' // Optional for displaying responsive images
  },
]

Options

Properties

name type default description
language String optional en or ar
zoomScale Integar optional 1 to 10
media Array required Media array to display
showLightBox Boolean true Whether to show lightbox or not at the beginning
startAt Number 0 Index of the image that you want to start at
nThumbs Number 7 Number of thumbnail images
showThumbs Boolean true Whether to show thumbnails or not
siteLoading String default image when your image is error or loading
showCaption Boolean false Whether to show caption or not
disableScroll Boolean true set to `true` to avoid scrolling views behind lightbox
disableZoom Boolean true set to `true` to avoid zooming lightbox
lengthToLoadMore Number 0 Minimum length unto end to emit load more event
closable Boolean true Display the close button at the right top corner or not. ESC clicking-close will also be disabled if closable is set to false.
closeText String Close (Esc) Text for the close button
previousText String Previous Text for the previous image button
nextText String Next Text for the next image button
previousThumbText String Previous Text for the previous thumb image button
nextThumbText String Next Text for the next thumb image button
showFooterCount Boolean true Show footer count

Methods

name arguments description
nextImage () Move to next image
previousImage () Move to previous image
closeLightBox () Close lightbox
showImage (index) Show the image at index

Slots

close

The content of the close button.

footer

The content of the footer under the image.

slot-scopes
name type description
current integer Number of the current image displayed
total integer Numbers of the images

previous

The previous button on the main image.

next

The next button on the main image.

previousThumb

The previous button on the thumbs list.

nextThumb

The next button on the thumbs list.

customCaption

The caption of the current image.

videoIcon

The Icon used for videos

Events

  • onOpened: emit when the lightbox is opened.
  • onClosed: emit when the lightbox is closed.
  • onLastIndex: Emit when the current image is the last one of the list.
  • onFirstIndex: Emit when the current image is the first one of the list.
  • onStartIndex: Emit when the current image is at the startAt index (specified in the properties).
  • onLoad: Emit when there are lengthToLoadMore images left in the array (specified in the properties). For example, if lengthToLoadMore = 2 and there are 7 images in your array, when you reach index 4 (which means there are 2 images left which are not discovered yet), this event will be emitted. After that, if the image array are updated and there are totally 15 images, the event will be emitted at index 12.
  • onImageChanged: Emit when the image is changed.

CREDITS

Most of the code belongs to pexea12

Package Sidebar

Install

npm i vue-zoomable-lightbox

Weekly Downloads

14

Version

1.1.2

License

MIT

Unpacked Size

1.26 MB

Total Files

21

Last publish

Collaborators

  • shoaibkhandev