Slider 滑块
示例
尺寸
可供选用的尺寸 ui
属性值:s
/ m
。
<template>
<article>
<veui-slider v-model="value"/>
<veui-slider
v-model="value"
ui="s"
/>
</article>
</template>
<script>
import { Slider } from 'veui'
export default {
components: {
'veui-slider': Slider
},
data () {
return {
value: 0.5
}
}
}
</script>
只读/禁用
设置 readonly
属性来使设置滑块只读,设置 disabled
属性来使设置滑块禁用。
<template>
<article>
<veui-slider v-model="value"/>
<veui-slider
v-model="value"
readonly
/>
<veui-slider
v-model="value"
disabled
/>
</article>
</template>
<script>
import { Slider } from 'veui'
export default {
components: {
'veui-slider': Slider
},
data () {
return {
value: 0.5
}
}
}
</script>
步进
使用 step
属性来指定步进值,使点击调节按钮或按下 ←、→ 键时根据指定步进值来调整输入值。
<template>
<article>
<veui-slider
v-model="value"
:min="min"
:max="max"
:step="step"
mark
/>
<veui-slider
v-model="value"
:min="min"
:max="max"
:step="step"
/>
</article>
</template>
<script>
import { Slider } from 'veui'
export default {
components: {
'veui-slider': Slider
},
data () {
return {
value: 55,
min: 0,
max: 100,
step: 8
}
}
}
</script>
范围
<template>
<article>
<veui-slider
v-model="value"
:min="0"
:max="100"
/>
</article>
</template>
<script>
import { Slider } from 'veui'
export default {
components: {
'veui-slider': Slider
},
data () {
return {
value: [22, 66]
}
}
}
</script>
次级条
使用 secondary-progress
属性来指定一个次级进度条。
<template>
<article>
<veui-slider
v-model="videoPlayProgress"
:secondary-progress="videoBufferProgress"
/>
</article>
</template>
<script>
import { Slider } from 'veui'
export default {
components: {
'veui-slider': Slider
},
data () {
return {
videoPlayProgress: 0.11,
videoBufferProgress: 0.57
}
}
}
</script>
纵向
使用 vertical
属性来指定是否使用纵向样式。
<template>
<article>
<veui-slider
v-model="value"
:min="0"
:max="100"
vertical
style="height: 180px"
/>
</article>
</template>
<script>
import { Slider } from 'veui'
export default {
components: {
'veui-slider': Slider
},
data () {
return {
value: 42
}
}
}
</script>
定制内容
使用 thumb
/ tip
插槽来自定义滑块按钮、悬浮提示等内容。
<template>
<article>
<veui-slider
v-model="value"
:min="0"
:max="360"
:step="1"
:parse="parseColorHue"
:format="formatColorHue"
>
<template #track>
<div
style="width: 100%; height: 20px;"
:style="{background: colorGradient}"
/>
</template>
<template #thumb="{ index }">
<div
:key="`thumb_${index}`"
style="margin-top: 2px"
>
<div style="width: 16px; height: 12px">
<svg
width="16"
height="12"
viewBox="0 0 16 12"
><polygon points="8,0 16,12 0,12"/></svg>
</div>
</div>
</template>
<template #tip="{ open, activeIndex }">
<div
v-show="open"
class="custom-tip"
:style="{
left: `${(activeIndex >= 0 ? parseColorHue(value[activeIndex]) : 0) / 360 * 100}%`,
backgroundColor: value[activeIndex]
}"
/>
</template>
</veui-slider>
<section>
<span
v-for="(val, index) in value"
:key="`color-value-${index}`"
>
"<span :style="{ color: val }">{{ val }}</span>"<span v-if="index < value.length - 1">,</span>
</span>
</section>
</article>
</template>
<script>
import { Slider } from 'veui'
export default {
components: {
'veui-slider': Slider
},
data () {
let value = [1, 1, 1, 1, 1].map((_, i) => `hsl(${(i + 1) * 60}, 50%, 50%)`)
return { value }
},
computed: {
colorGradient () {
let colors = [1, 1, 1, 1, 1, 1, 1].map(function (_, index) {
return `hsl(${60 * index}, 50%, 50%) ${(100 / 6) * index}%`
})
return `linear-gradient(to right, ${colors.join(',')})`
}
},
methods: {
parseColorHue (val) {
return parseInt(val.substring(val.indexOf('(') + 1, val.indexOf(',')), 10)
},
formatColorHue (val) {
return `hsl(${val}, 50%, 50%)`
}
}
}
</script>
<style lang="less" scoped>
.custom-tip {
position: absolute;
top: -24px;
width: 24px;
height: 24px;
margin-left: -12px;
text-align: center;
border: 1px solid #fff;
font-size: 12px;
}
section {
margin-top: 1em;
background-color: #fafafa;
padding: 0.5em 1em;
border-radius: 4px;
font-size: 12px;
}
</style>
API
属性
名称 | 类型 | 默认值 | 描述 | ||||||
---|---|---|---|---|---|---|---|---|---|
ui | string | - | 预设样式。
| ||||||
value | *|Array<*> | - | 值。 默认值类型为 | ||||||
secondary-progress | number | Array<number> | 0 | 次要条。 | ||||||
min | number | 0 | value 经过 parse 函数处理后允许的最小值。 | ||||||
max | number | 1 | value 经过 parse 函数处理后允许的最大值。 | ||||||
step | number | 0 | value 经过 parse 函数处理后的步进值。 | ||||||
mark | boolean | false | 是否显示步进标记。 | ||||||
vertical | boolean | false | 是否使用纵向样式。 | ||||||
parse | function | val => val | 传入值处理函数。 | ||||||
format | function | val => val | 输出值处理函数。 |
插槽
名称 | 描述 | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
track | 滑轨。默认内容:横线。 | |||||||||||||||
tip-label | 浮动提示文本。默认内容:当前 value 值。 | |||||||||||||||
thumb | 滑块。 默认内容:圆形按钮。
| |||||||||||||||
tip | 浮动提示。 默认内容:内容为
|
事件
名称 | 描述 |
---|---|
input |
修改后触发,回调参数为 |