slider
滑动选择器。 属性说明 Tips
- 插件市场示例
<template> <view> <view class="uni-padding-wrap uni-common-mt"> <view class="uni-title">设置step</view> <view> <slider value="60" @change="sliderChange" step="5" /> </view> <view class="uni-title">显示当前value</view> <view> <slider value="50" @change="sliderChange" show-value /> </view> <view class="uni-title">设置最小/最大值</view> <view> <slider value="100" @change="sliderChange" min="50" max="200" show-value /> </view> <view class="uni-title">不同颜色和大小的滑块</view> <view> <slider value="50" @change="sliderChange" activeColor="#FFCC33" backgroundColor="#000000" block-color="#8A6DE9" block-size="20" /> </view> </view> </view></template>
示例代码说明:以上示例代码从hello uni-app示例中复制,涉及的css样式在hello uni-app的app.vue和uni.css中 https://uniapp.dcloud.io/h5/pages/component/slider/sliderexport default { data() { return {} }, methods: { sliderChange(e) { console.log('value 发生变化:' + e.detail.value) } }}
在 GitHub 上编辑此页面!
