![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
vue-light-gallery
Advanced tools
VueJS lightweight image gallery for both mobile and desktop browsers.
VueJS lightweight image gallery for both mobile and desktop browsers.
MIT License
// Yarn
yarn add vue-light-gallery
// NPM
npm install vue-light-gallery
<template>
<div>
<LightGallery
:images="images"
:index="index"
:disable-scroll="true"
@close="index = null"
/>
<ul>
<li
v-for="(thumb, thumbIndex) in [
'path/to/thumb_1.jpeg',
'path/to/thumb_2.jpeg',
]"
:key="thumbIndex"
@click="index = thumbIndex"
>
<img :src="thumb">
</li>
</ul>
</div>
</template>
<script>
import Vue from 'vue';
import { LightGallery } from 'vue-light-gallery';
export default {
components: {
LightGallery,
},
data() {
return {
images: [
{ title:'img 1', url: 'path/to/image_1.jpg' },
{ title:'img 2', url: 'path/to/image_2.jpg' },
],
index: null,
};
},
};
</script>
// Your APP entry point.
// F.E: index.js
import Vue from 'vue';
import LightGallery from 'vue-light-gallery';
Vue.use(LightGallery);
new Vue(/* ... */);
<!-- Component.vue -->
<template>
...
<LightGallery ...props />
...
</template>
Or if you want to change the component id:
// Your APP entry point.
// F.E: index.js
import Vue from 'vue';
import LightGallery from 'vue-light-gallery';
Vue.use(VueLightGallery, { componentId: 'custom-gallery' });
new Vue(/* ... */);
<!-- Component.vue -->
<template>
...
<custom-gallery ...props />
...
</template>
Props | Type | Default | Description |
---|---|---|---|
images | Array | [] | List of Images |
index | Number | null | index of the displayed image |
disableScroll | Boolean | false | Disable the scroll |
background | String | rgba(0, 0, 0, 0.8) | Main container background |
interfaceColor | String | rgba(255, 255, 255, 0.8) | Icons color |
Without title: Array<string>
const images = [
'http://url.com/img1.jpg',
'http://url.com/img2.jpg',
];
With title: Array<Object>
const images = [
{ title: 'image 1', url: 'http://url.com/img1.jpg' },
{ title: 'image 2', url: 'http://url.com/img2.jpg' },
];
The title will only appear if Object.title
property is defined.
Name | Params | Description |
---|---|---|
close | Triggered when the lightbox is closed | |
slide | { index: Number } | Triggered when the image change (next or prev) |
Create the plugin lightGallery.client.js
:
import Vue from 'vue';
import VueLightGallery from 'vue-light-gallery';
Vue.use(VueLightGallery);
Add the plugin to nuxt.config.js
:
plugins: [
'~/plugins/lightGallery.client.js',
],
Wrap the component in Nuxt's no-ssr
component.
<no-ssr>
<LightGallery ... />
</no-ssr>
FAQs
VueJS lightweight image gallery for both mobile and desktop browsers.
The npm package vue-light-gallery receives a total of 0 weekly downloads. As such, vue-light-gallery popularity was classified as not popular.
We found that vue-light-gallery demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.