ionic-修改对话框样式,点击屏幕其他位置关闭

1、
$scope.myPopup = $ionicPopup.show({ templateUrl: 'templates/timeList.html', cssClass:'my-popup', title: '修改'+str+'', scope: $scope });
'my-popup'是一个自定义class属性,通过这个属性修改对话框样式;
.my-popup .popup {
}
.my-popup .popup-title {
}
.my-popup .popup-head{
}
.my-popup .popup-buttons .button{
}
2、监听
var $htmlEl= angular.element(document.querySelector('html'));
$ionicGesture.on("touch", function(event) {
if (event.target.nodeName === "HTML") {
$scope.myPopup.close();//关闭对话框
}
},$htmlEl);

你可能感兴趣的:(ionic-修改对话框样式,点击屏幕其他位置关闭)