如果可以禁用某些设备(例如iPhone 6)的离子滚动。
答案 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);