我想知道是否有办法在离子范围分量上找到指针方向。我的意思是指针将向左还是向右?
感谢您的帮助
答案 0 :(得分:0)
好的,这是您的操作方法:
https://stackblitz.com/edit/ionic-qnxrnv
基本上,您有自己的范围(我使用的默认范围是0到100个值):
然后绑定方法来检测运动:
sliderValueChanged(event) {
// if current slider value exist we can do comparision:
if (this.currentSliderValue && (this.currentSliderValue > event.value)) {
console.log("moving left");
} else {
console.log("moving right")
}
// now we capture result
this.currentSliderValue = event.value
}
根据您的用例,当值等于等时,您可能需要考虑不同的情况