2.1.3 • Published 11 months ago

fslightbox-vue v2.1.3

Weekly downloads
896
License
MIT
Repository
github
Last release
11 months ago

Vue Fullscreen Lightbox Basic

Description

A Vue.js component for displaying images, videos, or, through custom sources, anything you want in a clean overlying box. The project's website: https://fslightbox.com.

DependencyVersion
vue>= 2.5.0 or >= 3.2.0 (Vue.js 3)

Installation

Through a package manager

 npm install fslightbox-vue

Or, through an archive downloaded from the website

The .tgz archive, in its entirety, should be put somewhere in the end project, for example, "./src/lib". Then run the package manager's install command with the path to that archive. The command have to be run from the directory where your project's "package.json" file is.

$ npm install ./src/lib/[lightbox archive name] 

For example:

$ npm install ./src/lib/fslightbox-react-1.0.0.tgz

Basic usage

<template>
    <div>
        <button @click="toggler = !toggler">Open the lightbox.</button>
        <FsLightbox
            :toggler="toggler"
            :sources="[
                'https://i.imgur.com/fsyrScY.jpg',
                'https://www.youtube.com/watch?v=3nQNiWdeH2Q',
                'https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4'
            ]"
        />
    </div>
</template>

<script>
import FsLightbox from "fslightbox-vue/v3";
// import FsLightbox from "fslightbox-vue/v2"; for Vue 2

export default {
    components: { FsLightbox },
    data() {
        return {
            toggler: false
        }
    }
}
</script>

Demo

Available at: https://fslightbox.com/vue.

Documentation

Available at: https://fslightbox.com/vue/documentation.

Browser Compatibility

BrowserWorks?
ChromeYes
FirefoxYes
SafariYes
EdgeYes
IE 11Yes (Vue 3 doesn't support IE 11 so only FsLightbox for Vue 2)
2.1.3

11 months ago

2.1.2

1 year ago

2.1.1-2

1 year ago

2.1.1

1 year ago

2.1.0

1 year ago

2.0.2

1 year ago

2.0.1

2 years ago

2.0.0

2 years ago

1.2.0

3 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

5 years ago

1.0.0-alpha.0

5 years ago

1.0.0

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago