0.9.10 • Published 6 years ago

danielszenasi-vue-carousel v0.9.10

Weekly downloads
7
License
MIT
Repository
github
Last release
6 years ago

Vue Carousel

Build Status Coverage Status Latest Stable Version

WARNING: vue-carousel is at pre-alpha stage of development and may undergo significant changes.

Feel free to submit issues and feature requests here.

Full documentation and examples

Table of Contents

Installation

npm install vue-carousel

or if you prefer yarn

yarn add vue-carousel

Usage

Global

You may install Vue Carousel globally:

import Vue from 'vue';
import VueCarousel from 'vue-carousel';

Vue.use(VueCarousel);

This will make <carousel> and <slide> available to all components within your Vue app.

Local

Include the carousel directly into your component using import:

import { Carousel, Slide } from 'vue-carousel';

export default {
  ...
  components: {
    Carousel,
    Slide
  }
  ...
};

Configuration

PropertyTypeDefaultDescription
easingStringeaseSlide transition easing. Any valid CSS transition easing accepted.
minSwipeDistanceNumber8Minimum distance for the swipe to trigger a slide advance.
navigationClickTargetSizeNumber8Amount of padding to apply around the label in pixels.
mouseDragBooleantrueFlag to toggle mouse dragging.
navigationEnabledBooleanfalseFlag to render the navigation component (next/prev buttons).
navigationNextLabelStringText content of the navigation next button.
navigationPrevLabelStringText content of the navigation prev button.
paginationActiveColorString#000000The fill color of the active pagination dot. Any valid CSS color is accepted.
paginationColorString#efefefThe fill color of pagination dots. Any valid CSS color is accepted.
paginationEnabledBooleantrueFlag to render pagination component.
paginationPaddingNumber10The padding inside each pagination dot. Pixel values are accepted.
paginationSizeNumber10The size of each pagination dot. Pixel values are accepted.
perPageNumber2Maximum number of slides displayed on each page.
perPageCustomArrayConfigure the number of visible slides with a particular browser width. This will be an array of arrays, ex. [320, 2, 1199, 4]. Formatted as x, y where x=browser width, and y=number of slides displayed. Ex. 1199, 4 means if (window <= 1199) then show 4 slides per page.
resistanceCoefNumber20Resistance coefficient to dragging on the edge of the carousel. This dictates the effect of the pull as you move towards the boundaries.
scrollPerPageBooleantrueScroll per page, not per item.
speedNumberSlide transition speed. Number of milliseconds accepted.
loopBooleanfalseFlag to make the carousel loop around when it reaches the end.
navigateToNumber0Listen for an external navigation request using this prop.
spacePaddingNumber0Stage padding option adds left and right padding style (in pixels) onto VueCarousel-inner.

Events

EventTypeEmitterDescription
slideClickObjectSlide"slideClick" event throws the dataset object of the selected element

HTML Structure

Once the Carousel and Slide components are installed globally or imported, they can be used in templates in the following manner:

  <carousel :per-page="1" :navigate-to="someLocalProperty" mouse-drag="false">
    <slide>
      Slide 1 Content
    </slide>
    <slide>
      Slide 2 Content
    </slide>
  </carousel>

To listen for the 'slideClick' event you can do the following:

  <carousel>
    <slide
        data-index="0"
        data-name="MySlideName"
        @slideClick="handleSlideClick">
      Slide 1 Content
    </slide>
    ...
  </carousel>
  handleSlideClick (dataset) => {
    console.log(dataset.index, dataset.name)
  }

Development

A sandboxed dev environment is provided by vue-play. Changes made to the component files will appear in real time in the sandbox.

To begin development, run:

npm install 
npm run dev

or, if you prefer yarn

yarn install 
yarn dev

then navigate to http://localhost:5000

To modify and add sandbox scenarios, edit play/index.js

License

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

0.9.10

6 years ago

0.9.9

6 years ago

0.9.8

6 years ago

0.9.7

6 years ago

0.9.6

6 years ago

0.9.5

6 years ago

0.9.4

6 years ago

0.9.3

6 years ago

0.9.2

6 years ago

0.9.1

6 years ago