chenxuan0000 / vue-seamless-scroll

:beginner:A simple, seamless scrolling for Vue.js vue无缝滚动component
https://chenxuan0000.github.io/vue-seamless-scroll/
MIT License
1.83k stars 332 forks source link

可否提供一个暂停滚动的方法 #134

Closed firstblood93 closed 4 years ago

firstblood93 commented 4 years ago

现在只能依靠鼠标移入去触发,想用外部按钮去暂停/开启 滚动 看了源码 用了 this.$refs.xx.enter() 模拟这个动作 但是无效

jiuru commented 4 years ago

源码中enter()方法的执行,是有条件的,hoverStop必须是true; 暂停可使用_cancle() 再次启动可使用_startMove()

firstblood93 commented 4 years ago

好的 我试试