Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
vue-gallery-slideshow
Advanced tools
Lightweight and responsive image gallery for Vue.js.
https://jsfiddle.net/headione/szk73x45/show/
<script src="https://unpkg.com/vue-gallery-slideshow"></script>
npm install vue-gallery-slideshow
yarn add vue-gallery-slideshow
<div id="app">
<img class="image" v-for="(image, i) in images" :src="image" :key="i" @click="index = i">
<vue-gallery-slideshow :images="images" :index="index" @close="index = null"></vue-gallery-slideshow>
</div>
import VueGallerySlideshow from 'vue-gallery-slideshow';
const app = new Vue({
el: '#app',
components: {
VueGallerySlideshow
},
data: {
images: [
'https://placekitten.com/801/800',
'https://placekitten.com/802/800',
'https://placekitten.com/803/800',
'https://placekitten.com/804/800',
'https://placekitten.com/805/800',
'https://placekitten.com/806/800',
'https://placekitten.com/807/800',
'https://placekitten.com/808/800',
'https://placekitten.com/809/800',
'https://placekitten.com/810/800'
],
index: null
}
});
If you want to add alt tags to the images, you can do by wrapping it in an object and adding an alt
property:
images: [
{ url: 'https://placem.at/places?w=800&h=600&random=1', alt:'My alt text' },
...
]
When used with server-side rendering frameworks like Nuxt.js, please wrap the component in a <client-only>
element like shown below:
...
<img class="image" v-for="(image, i) in images" :src="image" :key="i" @click="index = i">
<client-only placeholder="Loading...">
<vgs :images="images" :index="index" @close="index = null" />
</client-only>
...
Please refer to each project's style guidelines and guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.
NOTE: Be sure to merge the latest from "upstream" before making a pull request!
Norman Sander
vue-gallery-slideshow is available under the MIT license. See the LICENSE file for more info.
[1.5.2] -2020-08-25
imgIndex
https://github.com/KitchenStories/vue-gallery-slideshow/issues/17FAQs
Lightweight and responsive image gallery for Vue.js.
We found that vue-gallery-slideshow 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.