antd-mobile的Slider控件使用总结

本文总结了antd-mobile的Slider组件的使用经验,包括如何自定义滑块样式,利用backgroundImage属性设置图片,以及如何实现背景颜色的分段显示,如三等分背景色,通过设置透明度来实现不同区域的颜色变化。详细讲解了linear-gradient的用法,以实现视觉上的等分效果。
摘要由CSDN通过智能技术生成

1.滑块样式

滑块样式为handleStyle,官网给的示例为圆点,若要替换为特定的图片,可使用backgroundImage属性。

其中图片要先使用require加载,然后使用ES6的新特性-模板对象,即可。

sliderBlockImg = require('../../assets/img/xxx.png');
   
<Slider
	style={
  { marginTop:'28px'}}
	value={this.windSlide?this.state.windValue:this.reportWindValue}
	step={1}
	min={0}
	max={arr.length-1}
	onChange ={e => this.onchange(e)}
	onAfterChange={(e) => this.sliderchange(e)}
	trackStyle={
  {
	  backgroundColor: 'rgba(34, 131, 226, 0)',
	  height: '12px',
	  borderRadius: '6px',
	}}
	railStyle={
  {
	  backgroundImage: windImgBg,
	  height: '12px',
	  borderRadius: '6px',
	}}
	handleStyle={
  {
	  height: '43px',
	  width: '27px',
	  backgroundImage: `url(${this.sliderBlockImg})`,
	  backgroundSize:'
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值