1

有没有办法在触摸设备上收听著名的 angularfa-scroll-view滚动事件?

例如,就在著名的角度文档中:

<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

这可能吗?

谢谢。

4

1 回答 1

2

$ Famous.find('fa-scroll-view')[0].renderNode.sync.on('start', function(event) { console.log('start'); }); 还有“更新”和“结束”事件

于 2014-09-19T17:29:03.617 回答