![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.
fslightbox-vue
Advanced tools
A capable Vue.js component for displaying images, videos, or, through custom sources, anything you want in a full-window overlying box.
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.
Dependency | Version |
---|---|
vue | >= 2.5.0 or >= 3.2.0 (Vue.js 3) |
npm install fslightbox-vue
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
<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>
Available at: https://fslightbox.com/vue.
Available at: https://fslightbox.com/vue/documentation.
Browser | Works? |
---|---|
Chrome | Yes |
Firefox | Yes |
Safari | Yes |
Edge | Yes |
IE 11 | Yes (Vue 3 doesn't support IE 11 so only FsLightbox for Vue 2) |
FAQs
A capable Vue.js component for displaying images, videos, or, through custom sources, anything you want in a full-window overlying box.
The npm package fslightbox-vue receives a total of 1,524 weekly downloads. As such, fslightbox-vue popularity was classified as popular.
We found that fslightbox-vue 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.