npm install vue-concise-slider --save
<template>
<!-- 制作一个框架包裹slider,设置宽度和高度 -->
<div style="width:100%;margin:20px auto;height:400px">
<!-- 配置slider组件 -->
<slider ref="slider" :options="options">
<!-- 使用slideritem组件 -->
<slideritem v-for="(item,index) in someList" :key="index" :style="item.style">{{item.html}}</slideritem>
<!-- 设置loading,可自定义 -->
<div slot="loading">loading...</div>
</slider>
</div>
</template>
<script>
// import slider components
import { slider, slideritem } from 'vue-concise-slider'
export default {
el: '#app',
data () {
return {
//data list [array]
someList:[
{
html: 'slide1',
style: {
'background': '#1bbc9b'
}
},
{
html: 'slide2',
style: {
'background': '#4bbfc3'
}
},
{
html: 'slide3',
style: {
'background': '#7baabe'
}
}
],
//Slider configuration [obj]
options: {
currentPage: 0
}
}
},
components: {
slider,
slideritem
}
}
</script>
Option | Type | Default | Description |
title | string | [size=10.5000pt]- | 当前设置为每页的标题,未来将直接输出html [size=10.5000pt] |
style[size=10.5000pt] | obj | [size=10.5000pt]- | 直接作用在每个item上的style样式,可以输出背景图,背景色,每项宽度可自定义,自动切换为不定宽滚动 [size=10.5000pt] |
Option | Type | Default | Description |
direction | string | 'horizontal' | 方向设置,默认为水平滚动('horizontal'),可设置为垂直滚动('vertical') |
currentPage | number | [size=10.5000pt]- | 当前为第几页 |
thresholdDistance | number | [size=10.5000pt] | 滑动距离阈值 |
thresholdTime | number | [size=10.5000pt] | 滑动时间阈值 |
autoplay | Number[ms] | [size=10.5000pt] | 自动播放:时间[ms] |
loop | boolean | [size=10.5000pt] | 循环滚动 |
infinite | number | [size=10.5000pt] | loop无缝滚动时,可以设置前后遍历数 |
slidesToScroll | number | [size=10.5000pt] | 每次滑动切换的页数 |
Method | Parameters | Description | Example |
slideTo | number | 滑动到(number)页 | childComponents.$emit('slideTo', num) |
slideNext | [size=10.5000pt] | 滑动到下一页 | childComponents.$emit('slideNext') |
slideTo | [size=10.5000pt] | 滑动到上一页 | childComponents.$emit('slidePre') |
Method | Parameters | Description | Example |
slide | number | 当前滑动到第(number)页 | childComponents.$on('slide', function(pagenum){console.log(pagenum)}) |
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |