2016-11-09 60 views
0

我有ion-scroll內容,可以拖動的元素。這個問題實際上並不是關於在拖動時禁用滾動。問題在於,由於內容元素實際上填充了整個內容區域,所以每當我想滾動時,實際上都會發生拖動事件。離子:只用兩個手指滾動內容

是否可以使用雙指定義滾動手勢?所以每當我用兩根手指時,它都會滾動,但是當我用一根手指時,它會拖動。

<ion-scroll id="queue-scroll" delegate-handle="queue-scroll" ng-drop="true"> 

    <div items="queue.items"> 
     <app-item 
     ng-drag-start="stopIonicScroll()" 
     on-release="startIonicScroll()" 
     ng-drag-data="item" 
     ng-drop-success="onDropComplete($data,$event,$index)" 
     ng-repeat="item in queue.items track by $index" /> 

    </div> 
    </ion-scroll> 

回答