vue3-product-spinner

1.0.8 • Public • Published

The product spinner that Vue.js was missing.

Build Status VueProductSpinner weekly downloads MIT License

Sponsors

Live Demo




Try it on CodeSandbox!

Edit Vue Product Spinner Demo

Installation

npm

npm i vue3-product-spinner

Usage

VueProductSpinner will allow you to add any component in order to handle the image prefetch time.
You can use it as follows:

<template>
  <VueProductSpinner 
    :imgs="imgs" 
    :slider="true"
  >
    <PreloadSpinnerComponent />
  </VueProductSpinner>
</template>

<script>
  import VueProductSpinner from 'vue-product-spinner'
  import PreloadSpinnerComponent from 'some-library'

  export default {
    components: {
      VueProductSpinner
    },
    data() {
      return {
        images: [
          'img1.jpg',
          'img2.jpg',
          'img3.jpg'
        ]
      }
    }
  }
</script>

props

Prop Name Type Is Required Default Value Description
images string[] required [] An array of images to be displayed
infinite Boolean optional true Infinite loop
speed Number optional 3 Rotation speed
touchDrag Boolean optional true Handle touch events
mouseWheel Boolean optional true Handle mouse wheel events
mouseDrag Boolean optional true Handle mouse drag events
slider Boolean optional false Show slider input
sliderClass String optional Custom slider CSS class

Roadmap

  • [x] Add image preloader
  • [ ] Add auto spin
  • [ ] Add hooks
  • [ ] Solve basic bugs
  • [x] Add "mouse move" support
  • [x] Add "mouse scroll" support
  • [x] Add slider support
  • [x] Add touchscreen support

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

/vue3-product-spinner/

    Package Sidebar

    Install

    npm i vue3-product-spinner

    Weekly Downloads

    10

    Version

    1.0.8

    License

    none

    Unpacked Size

    1.35 MB

    Total Files

    17

    Last publish

    Collaborators

    • prefonty