是否可以禁用特定屏幕尺寸/设备的离子滚动?

时间:2015-09-02 01:11:46

标签: ionic-framework ionic

如果可以禁用某些设备(例如iPhone 6)的离子滚动。

1 个答案:

答案 0 :(得分:0)

你可以用$ ionicScrollDelegate http://ionicframework.com/docs/api/service/ $ ionicScrollDelegate /做到这一点 您需要的条件下的freezeAllScrolls方法:

    //Using screen size
    var screenSize = window.matchMedia("(max-width: 375px)").matches;
    $ionicScrollDelegate.freezeAllScrolls(screenSize);

    //Using ionic classes
    var ios7 = document.body.classList.contains('platform-ios7');
    $ionicScrollDelegate.freezeAllScrolls(ios7);