【发布时间】:2014-09-20 01:29:03
【问题描述】:
有没有办法在触摸设备上监听famous-angular 的fa-scroll-view 滚动事件?
例如,就在著名的 angular 文档中:
<fa-app ng-controller="ScrollCtrl">
<!-- fa-scroll-view receives all events from $scope.myEventHandler, and decides how to handle them -->
<fa-scroll-view fa-pipe-from="myEventHandler">
<fa-view ng-repeat="view in views">
<fa-modifier fa-size="[undefined, 160]">
<!-- All events on fa-surfaces (click, mousewheel) are piped to $scope.myEventHandler -->
<fa-surface fa-background-color="view.color"
fa-pipe-to="myEventHandler">
</fa-surface>
</fa-modifier>
</fa-view>
</fa-scroll-view>
</fa-app>
我可以通过
收听myEventHandler上的点击
$scope.myEventHandler.on('click', ...)
但不是滚动:
$scope.myEventHandler.on('scroll', ...) // doesn't fire
这可能吗?
谢谢。
【问题讨论】: