如何检测列表是否滚动?
有没有办法检测列表是否滚动,例如list.isScrolling
Is there any way to detect whether a list is scrolling or not,likelist.isScrolling
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法检测列表是否滚动,例如list.isScrolling
Is there any way to detect whether a list is scrolling or not,likelist.isScrolling
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
因此,@Khaled 展示了一种使用 MX 组件来实现此目的的方法。如果您使用 Spark 组件,则该事件不起作用。相反,您可以监听
myList.scroller.viewport.verticalScrollPosition
或horizontalScrollPosition
上的更改。在这两种情况下,您都不会知道列表何时停止滚动(我不确定您是否想要)。您可能必须设置一个计时器,并且每当计时器关闭而没有任何滚动事件时,您就不再滚动了吗?
不幸的是,您没有解释您要实现的目标,我们无法充分回答您的问题。
So, @Khaled showed a way to do it with the MX component. If you are using the Spark component, that event doesn't work. Instead, you can listen to changes on
myList.scroller.viewport.verticalScrollPosition
orhorizontalScrollPosition
.In neither of these cases do you get to know when the list stops getting scrolled (I'm not sure if you want it or not). You might have to set a timer and any time the timer goes off without any scrolling events, you are no longer scrolling?
Unfortunately, you haven't explained what you are trying to accomplish, wo we can't adequately answer your question.
或者您可以在列表 itemrenderer 中执行类似这样的操作:
Or you can do somme thing like this in a list itemrenderer :
您可以使用 ScrollEvent.SCROLL :
you can use the ScrollEvent.SCROLL :
或者你可以对 Spark 组件这样做!
http://blog.flexexamples.com/2009/05/31/detecting-when-the-vertical-scroll-bar-is-scrolled-on-a-spark-list-control-in-flex-4/ -- >
Or you can do it like this for spark component!
http://blog.flexexamples.com/2009/05/31/detecting-when-the-vertical-scroll-bar-is-scrolled-on-a-spark-list-control-in-flex-4/ -->