我想完全从离子弹出中
删除标题区域.我
删除了
标题标签并尝试了.但仍然可以看到
标题空间可见.这是我的
代码.
var registerPopup = $ionicPopup.show({
templateUrl: 'templates/register_popup.html',scope: $scope
});
即使我完全删除了标题标签,标题区仍然可见,并带有空白区域,如下图所示.我想从ionicPopup中删除整个标题空间.我怎么才能得到它?代码中会有哪些变化?
这是因为
标题包含在.popup-head中,占用了空间.
首先在Popup对象中向cssClass属性添加custom-class的值.
var registerPopup = $ionicPopup.show({
templateUrl: 'templates/register_popup.html',cssClass: 'custom-class',// Add
scope: $scope
});
您可以使用自定义CSS隐藏它.
.custom-class .popup-head {
display: none;
}