Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@chantouchsek/vue-photoswipe
Advanced tools
An image previewer for vue, powered by PhotoSwipe.
An image previewer for vue, powered by PhotoSwipe.
yarn add photoswipe @chantouchsek/vue-photoswipe
npm install photoswipe @chantouchsek/vue-photoswipe
import createPreviewDirective from "@chantouchsek/vue-photoswipe";
export default {
directives: {
preview: createPreviewDirective()
}
};
import createPreviewDirective from "@chantouchsek/vue-photoswipe";
export default {
directives: {
preview: createPreviewDirective(photoswipeOptions)
}
};
<img v-preview src="path/to/image.jpg" alt="image" />
<img v-preview:scope-a src="path/to/images/01.jpg" alt="image 01" />
<img v-preview:scope-a src="path/to/images/02.jpg" alt="image 02" />
<img v-preview src="path/to/images/03.jpg" alt="image 03" />
Support vue-lazyload
<div v-lazy-container="{ selector: 'img' }">
<img v-preview:scope-a data-src="path/to/images/01.jpg" alt="image 01" />
<img v-preview:scope-a data-src="path/to/images/02.jpg" alt="image 02" />
<img v-preview data-src="path/to/images/03.jpg" alt="image 03" />
</div>
<img v-preview src="path/to/image.jpg" data-origin="path/to/origin-image.jpg" alt="image" />
index.html
<!-- Core CSS file -->
<link rel="stylesheet" href="https://unpkg.com/photoswipe/dist/photoswipe.css" />
<!-- Skin CSS file (styling of UI - buttons, caption, etc.)
In the folder of skin CSS file there are also:
- .png and .svg icons sprite,
- preloader.gif (for browsers that do not support CSS animations) -->
<link rel="stylesheet" href="https://unpkg.com/photoswipe/dist/default-skin/default-skin.css" />
<!-- Core JS file -->
<script src="https://unpkg.com/photoswipe/dist/photoswipe.min.js"></script>
<!-- UI JS file -->
<script src="https://unpkg.com/photoswipe/dist/photoswipe-ui-default.min.js"></script>
*.vue
<template>
<div id="app">
<img v-preview:scope-a src="path/to/images/01.jpg" alt="image 01" />
<img v-preview:scope-a src="path/to/images/02.jpg" alt="image 02" />
<img v-preview src="path/to/images/03.jpg" alt="image 03" />
</div>
</template>
<script>
import createPreviewDirective from "@chantouchsek/vue-photoswipe";
export default {
directives: {
preview: createPreviewDirective()
}
};
</script>
*.vue
<template>
<div id="app">
<img v-preview:scope-a src="path/to/images/01.jpg" alt="image 01" />
<img v-preview:scope-a src="path/to/images/02.jpg" alt="image 02" />
<img v-preview src="path/to/images/03.jpg" alt="image 03" />
</div>
</template>
<script>
import PhotoSwipe from 'photoswipe/dist/photoswipe'
import PhotoSwipeUI from 'photoswipe/dist/photoswipe-ui-default'
import 'photoswipe/dist/photoswipe.css'
import 'photoswipe/dist/default-skin/default-skin.css'
import createPreviewDirective from "@chantouchsek/vue-photoswipe";
export default {
directives: {
preview: createPreviewDirective(null, PhotoSwipe, PhotoSwipeUI)
}
};
</script>
<template>
<div id="app">
<img v-preview="{ name: 'a' }" src="path/to/images/01.jpg" alt="image 01" />
<img v-preview="{ name: 'a' }" src="path/to/images/02.jpg" alt="image 01" />
<img v-preview="{ name: 'b' }" src="path/to/images/03.jpg" alt="image 01" />
<img v-preview="{ name: 'b' }" src="path/to/images/04.jpg" alt="image 01" />
<img v-preview:scope-a src="path/to/images/02.jpg" alt="image 02" />
<img v-preview src="path/to/images/03.jpg" alt="image 03" />
</div>
</template>
name
must be defined.yarn dev
yarn build:lib
MIT © Chantouch
FAQs
An image previewer for vue, powered by PhotoSwipe.
The npm package @chantouchsek/vue-photoswipe receives a total of 0 weekly downloads. As such, @chantouchsek/vue-photoswipe popularity was classified as not popular.
We found that @chantouchsek/vue-photoswipe 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.