PaddleCV-SIG / GeoView

GeoView是一款开源、轻量、功能丰富的交互式遥感影像智能解译工具,致力于实现遥感领域深度学习模型在Web平台的快速部署。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sliderMouseLeave 方法

Dreadom opened this issue · comments

sliderMouseLeave() {
if (this.isSliderLocked) this.isSliderLocked = true;
},

这一句是不是没什么用?

感谢你的反馈,这部分代码是有问题,应该在鼠标移出图片区域后,去除滑动框禁用的限制,这样下次进入图片区域滑动框就能继续跟随鼠标了,代码修改如下

sliderMouseLeave() {
      if (this.isSliderLocked) this.isSliderLocked = false;
    }

#61 已合入develop分支,您可以拉取develop修复此问题