We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sliderMouseLeave() { if (this.isSliderLocked) this.isSliderLocked = true; },
这一句是不是没什么用?
The text was updated successfully, but these errors were encountered:
感谢你的反馈,这部分代码是有问题,应该在鼠标移出图片区域后,去除滑动框禁用的限制,这样下次进入图片区域滑动框就能继续跟随鼠标了,代码修改如下
sliderMouseLeave() { if (this.isSliderLocked) this.isSliderLocked = false; }
Sorry, something went wrong.
#61 已合入develop分支,您可以拉取develop修复此问题
yibaikuai
No branches or pull requests
sliderMouseLeave() {
if (this.isSliderLocked) this.isSliderLocked = true;
},
这一句是不是没什么用?
The text was updated successfully, but these errors were encountered: