Heim > Artikel > WeChat-Applet > Implementierungscode mehrerer Schieberegler im Miniprogramm
Der Inhalt dieses Artikels befasst sich mit dem Implementierungscode mehrerer Schieberegler im Miniprogramm. Ich hoffe, dass er für Freunde hilfreich ist.
Kürzlich entwickle ich ein kleines Programm mit nativem Code, das die Verwendung eines Multi-Slider-Sliders erfordert, aber die offizielle API unterstützt nur einen einzelnen Slider, also habe ich hastig eines geschrieben, das auf dem Original basiert. Wenn Sie Mängel haben, geben Sie mir bitte Ihren Rat. Wenn Sie es in Komponenten verpacken möchten, können Sie es auch selbst verpacken. ;
Ohne weitere Umschweife, hier ist der Code:
html:
<view class='sliderHCon'> <view class='showMoney'> <text class='MoneyValue'>¥{{leftShowValue}}</text> <text class='MoneyValue'>¥{{rightShowValue}}</text> </view> <view class='twoSlider'> <slider class='slider-left' min='{{Min}}' max='{{Max}}' value='{{leftValue}}' activeColor='#ccc' backgroundColor='#ccc' block-size='{{blockSize}}' step='{{step}}' bindchanging="leftChange" rightChange='leftChange'> <em class='slider-bg' style='left:{{setSliderLeftX}};width:{{setSliderWidthX}}'></em> </slider> <slider class='slider-right' min='{{Min}}' max='{{Max}}' value='{{rightValue}}' activeColor='#ccc' backgroundColor='#ccc' block-size='{{blockSize}}' step='{{step}}' bindchanging="rightChange" bindchange='rightChange'/> </view> </view>
css
.sliderHCon { height: 250rpx; width: 100%; margin: auto; display: flex; justify-content: center; align-items: center; flex-direction: column; } .MoneyValue { font-size: 30rpx; text-align: center; color: #999; margin-top: 15rpx; } .showMoney text { margin-right: 30rpx; } .twoSlider { width: 100%; height:100px; display: flex; flex-direction: row; justify-content: center; align-items: center; position: relative; } .slider-left,.slider-right{position: absolute;left:0;right:0;} .slider-bg{position: absolute;top:50%;margin-top:-1px;left:0;width:100%;height:2px;background: blue;z-index: 9;}
js
data: { blockSize:20, step:10, Min: 0, //最小值 Max: 1000, //最大值 leftValue: 0, //左边滑块默认值 rightValue: 1000, //右边滑块默认值 leftShowValue: 0, //界面显示左边滑块默认值 rightShowValue: 1000, //界面显示右边滑块默认值 leftWidth: '50', //左边滑块可滑动长度:百分比 rightWidth: '50', //右边滑块可滑动长度:百分比 sliderWidth:0, // slider的宽度; setSliderLeftX: 0, // 设置的sliderp的left setSliderWidthX: 0// 设置的sliderp的width }, onLoad(options) { var query = wx.createSelectorQuery(); // 如果是封装的组件的话,这边请注意写法不同哦; query.select('.slider-left').boundingClientRect((rect) => { this.setData({ sliderWidth: rect.width, setSliderLeftX: (rect.width / this.data.Max * this.data.leftValue) + this.data.blockSize/2 + 'px', setSliderWidthX: rect.width / this.data.Max * (this.data.rightValue - this.data.leftValue) - this.data.blockSize + 'px', }) }).exec(); }, // 左边滑块滑动的值 leftChange(e){ var that = this; that.setData({ leftValue: e.detail.value //设置左边当前值 }) this.setSliderBgColor(e,'left'); }, // 右边滑块滑动的值 rightChange: function (e) { var that = this; that.setData({ rightValue: e.detail.value, }) this.setSliderBgColor(e, 'right'); }, setSliderBgColor(e, type){ if (type == 'left') { // 左边 if (this.data.leftValue < this.data.rightValue) { console.log('拖左不超右边'); this.setData({ leftShowValue: e.detail.value, }) this.setData({ rightShowValue: this.data.rightValue, }) } else { console.log('拖左超右边'); this.setData({ leftShowValue: this.data.rightValue, }) this.setData({ rightShowValue: e.detail.value, }) } } else { // 右边 if (this.data.leftValue < this.data.rightValue) { console.log('拖右不超右边'); this.setData({ rightShowValue: e.detail.value, }) this.setData({ leftShowValue: this.data.leftValue, }) } else { console.log('拖右超右边') this.setData({ leftShowValue: e.detail.value, }) this.setData({ rightShowValue: this.data.leftValue, }) } } const v = this.data.sliderWidth / this.data.Max if (v * (this.data.rightShowValue - this.data.leftShowValue) - this.data.blockSize >= 0) { this.setData({ setSliderLeftX: (v * this.data.leftShowValue) + this.data.blockSize / 2 + 'px', setSliderWidthX: v * (this.data.rightShowValue - this.data.leftShowValue) - this.data.blockSize + 'px', }) // console.log(1) } else { this.setData({ setSliderLeftX: (v * this.data.leftShowValue) + this.data.blockSize / 2 + 'px', setSliderWidthX: 0 + 'px', }) } }
Verwandte Empfehlungen:
Zwei Möglichkeiten, Python zum Generieren von QR-Codes in WeChat-Miniprogrammen zu verwenden
Das obige ist der detaillierte Inhalt vonImplementierungscode mehrerer Schieberegler im Miniprogramm. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!