Socket
Socket
Sign inDemoInstall

vue-awesome-image-gallery

Package Overview
Dependencies
61
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-awesome-image-gallery

Vue.js 3 component that implements (what I think is) an awesome image gallery. When hovering over the active image, it is zoomed in.


Version published
Weekly downloads
13
increased by333.33%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Vue.js 3 component that implements (what I think is) an awesome image gallery. When hovering over the active image, it is zoomed in.

Demo

Usage

Install package:

npm i vue-awesome-image-gallery

Use the component:

<template>
  <awesome-image-gallery
      :images="[
          {
            url: 'https://ajility.dev/github/vue-awesome-image-gallery/1.webp',
          },
          {
            url: 'https://ajility.dev/github/vue-awesome-image-gallery/2.webp',
          },
          {
            url: 'https://ajility.dev/github/vue-awesome-image-gallery/3.webp',
          }
      ]"
      :scale="0.9"
  />
</template>

<script setup>
import AwesomeImageGallery from './AwesomeImageGallery.vue'
</script>
  

Props

* Indicates a property is required

PropertyDefault ValueDescription
altAn image.Alt tag applied to any entry in images that does not have one specified.
disable-zoomfalseDisables the ability to zoom in on the active image on hover.
hide-active-image-on-zoomfalseOnly show the zoomed image while hovering.
images*undefinedAn array of AwesomeImage objects. See interface definition.
scale1.5A constant representing how much to scale the active image on hover.

Events

EventDescription
changedEmitted when a thumbnail is selected.
loadedEmitted when the selected image has loaded.
resizedEmitted when the image is resized.

Special Note

This package is based on the unmaintained packages of GitHub users @174n and @Intera.It was ported to Vue 3 and given some TLC to make it more useful.

Keywords

FAQs

Last updated on 06 Mar 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc