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
一手下拉,且下拉区域不超过 threshold 阈值,另一只点击屏幕。下拉值会卡住,没有回弹。 现在的解决办法是添加 touchend 监听判断结束下拉。
touchend
<div class="pulldown-wrap" @touchend="onTouchEnd" > <div class="pulldown-bswrapper" ref="bsWrap"> <div class="bs-scroller"> <div class="pulldown-wrapper"> <Lottie></Lottie> </div> <div class="bs-contenter" v-resize="contentReSize"> <slot></slot> </div> </div> </div> </div>
this.bsContext = new BScrol(...) this.bsContext.on('pullingDown', () => { refreshing = true }) onTouchEnd() { if (this.y > 0 && !this.refreshing) { refreshing = false this.bsContext.finishPullDown() } }
The text was updated successfully, but these errors were encountered:
我也发现了这个问题,没啥好的解决方法
Sorry, something went wrong.
No branches or pull requests
一手下拉,且下拉区域不超过 threshold 阈值,另一只点击屏幕。下拉值会卡住,没有回弹。
现在的解决办法是添加
touchend
监听判断结束下拉。The text was updated successfully, but these errors were encountered: