# vuescroll-carousel **Repository Path**: isni_admin/vuescroll-carousel ## Basic Information - **Project Name**: vuescroll-carousel - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-06-10 - **Last Updated**: 2021-06-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vuescroll-carousel

Version License

## Introduction vuescroll-carousel is a carousel plugin based on **^vuescroll@4.9.0**. It seems like [`swiper`](https://github.com/nolimits4web/swiper). You can see the guide below. ## Demo - [Live Demo](https://codepen.io/wangyi7099/pen/OrQoXK) - See the **Demo** fold of this repo. ## Get Started 1. You should install `Vue@2.x` , `vuescroll@4.9.0+` and `vuescroll-carousel` , and registry the plugins. ```bash npm i vue vuescroll vuescroll-carousel -S ``` ```javascript import Vue from vue; import vuescroll from vuescroll; import vuescroll/dist/vuescroll.css; // import carousel plugin and its css file import vuescrollCarousel from vuescroll-carousel; import vuescroll-carousel/dist/index.css; // reigstry the plugin Vue.use(vuescroll); Vue.use(vuescrollCarousel); ``` 2. Wrap the element and that's all. ```html
{{i}}
``` ## Props and Api ### Props | PropName | Default | Description | | ------------ | :-----: | ----------------------------------------------------------------------------------------: | | type | h | `h` or `v`. `h` means scrolling on horizontal direction and `v` is on vertical direction. | | loop | true | Whether carousel is connected between the end and the end or not. | | autoPlay | true | whether play the carousel automatically or not. | | intervalTime | 1000 | Interval time of auto-play, only enable when autoPlay is enable. | | playSpeed | 300 | play speed. | | indicator | true | show indicator or not | | currentIndex | 1 | the index of current active item, strat from 1. | ## Api | Api Name | Description | Arguments | | -------- | :--------------------------------------------------------------: | ------------------------------------: | | refresh | refresh the compoennt's status. All states will be recalculated. | - | | goToPage | Go to the specified page. | (pageIndex: Number, animate: Boolean) | | prev | go to pre page. | | next | go to next page. | ## Author WangYi7099(Yves Wang) ## License **MIT**