Tsanak Vue Carousel Save

Infinite image carousel built with Vue.js

Project README

Vue carousel

built with Vue.js and Bulma

Preview

Simple

vue carousel

With auto sliding and progressbar

vue carousel auto slide

Props

  1. images (required): Accepts array of objects.
  2. starting-image (optional) [DEFAULT: 0]: Accepts the index of the image that the carousel starts from
  3. auto-slide-interval (optional): time in milliseconds to auto slide to the next image e.g. 1000, which is 1 second
  4. show-progress-bar (optional) [DEFAULT: false]: boolean to show or hide the progressbar on top of the images. Needs to be used with auto-slide-interval prop.
    //Example of images
    let images = [
        { 
            id: '1',
            big: 'path to full image',
            thumb: 'path to thumbnail'
        },
        { 
            id: '2',
            big: 'path to full image',
            thumb: 'path to thumbnail'
        }
    ]

Example usage

Method 1

You can see an example in both index.html and component.html

Steps

  1. include vue.js
  2. include the carousel.js
  3. create the images array
  4. reference the carousel in your html

Method 2

Using the component with vue cli as a single file component

This method does not use Bulma

Note

To reference the Carousel with another name

  • change the name of the file (Carousel.vue) to whatever you want e.g. MyCarousel.vue
  • change the name attribute inside the file to the previously given name e.g. MyCarousel

Steps

  1. Download Carousel.vue
  2. Copy the file to your project
  3. create the images array
  4.  // import the Carousel.vue 
     import Carousel from 'path/to/Carousel.vue'
     <script>
         export default {
             name: 'OtherComponent',
             // Include the Carousel here
             components: {
                 Carousel
             }
             ...
         }
     </script>
    
  5. reference it in your template as shown in the examples below
<!-- Example -->
<carousel
    :starting-image="2"
    :images="images"
></carousel>
<!-- Example with auto slide-->
<carousel
    :starting-image="2"
    :images="images"
    :auto-slide-interval="1500"
></carousel>
<!-- Example with auto slide and progressbar on top of the images-->
<carousel
    :starting-image="2"
    :images="images"
    :auto-slide-interval="1500"
    :show-progress-bar="true"
></carousel>

You can also find a post I've written explaining the process on dev.to

:memo: Features

If you want a new feature to be implemented you can create an issue with the label Feature.

Contributing

Pull requests are more than welcome! :smiley:

Open Source Agenda is not affiliated with "Tsanak Vue Carousel" Project. README Source: tsanak/vue-carousel
Stars
43
Open Issues
0
Last Commit
5 years ago
Repository

Open Source Agenda Badge

Open Source Agenda Rating