如何知道指针在离子角范围分量中是向左还是向右

时间:2018-08-12 05:38:38

标签: angular ionic-framework ionic3 angular-components

我想知道是否有办法在离子范围分量上找到指针方向。我的意思是指针将向左还是向右?

感谢您的帮助

1 个答案:

答案 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
  }

根据您的用例,当值等于等时,您可能需要考虑不同的情况