我想在打开或关闭模式时删除动画。我可以这样做吗?
$ionicModal.fromTemplateUrl('templates/login.html', {
scope: $scope,
hardwareBackButtonClose: false,
animation: null
})
我尝试使用null值,但它对我不起作用。
答案 0 :(得分:3)
'无'是内置的禁用动画的方法:
$ionicModal.fromTemplateUrl('templates/modal.html', {
animation: 'none'
})
这应该写在某个地方。
答案 1 :(得分:0)
使用animation: 'no-animation'
禁用转场,但淡出效果仍然有效。
编辑#1:
也许找不到班级no-animation
。不是个好主意。
编辑#2:
使用
#login-modal{
transform:none !important;
}
禁用它。