gpt4 book ai didi

cordova - Ionic 弹出窗口中的自定义关闭按钮

转载 作者:行者123 更新时间:2023-12-05 01:34:20 26 4
gpt4 key购买 nike

我为照片上传创建了一个自定义 ionic 弹出窗口。我的问题是我无法使用角落关闭按钮关闭该弹出窗口。请帮助我。


看起来像

enter image description here

这是我的代码

    $scope.uploadPhoto = function () {
var confirmPopup = $ionicPopup.show({

title: 'Upload Photo' + '<i class="ion-ios-close-outline popuoclose " ng-click="closePopup()"></i>',

scope: $scope,
buttons: [
{
text: '<i class="ion-ios-camera-outline thirty-text" ></i>',
type: 'button-positive',
onTap: function () {
$scope.takePicture();
}
},
{
text: 'Gallery',
type: 'button-positive',
onTap: function () {
$scope.galleryPicture();
}
},
]
});
$scope.closePopup = function () {
confirmPopup.close();
};
};

最佳答案

下面的代码适合我:

javascript 函数代码:

$scope.showPopUp= function(msg) {
var confirmPopup = $ionicPopup.confirm({
title: 'Upload Photo',
template: '<center>Select Image from?</center>',
buttons: [{
text: 'Gallery',
type: 'button-positive',
onTap: function (e) {
console.log('Gallery ' + picNumber);
$scope.addImage(picNumber, 'G');
}
}, {
text: 'Camera',
type: 'button-positive',
onTap: function (e) {
console.log('Camera ' + picNumber);
$scope.addImage(picNumber, 'C');
}
}, {
text: '<i class="icon ion-close-circled"></i>',
type: 'popupStyle',
onTap: function (e) {

}
}
]
})

};

CSS 代码:

.popupStyle{text-align: right;position: absolute;top: 3px;right: 10px;z-index:1000;color: #029dff !important;padding: 0px !important;background-color: transparent !important; }

在任何您想显示对话框的地方调用此函数。

关于cordova - Ionic 弹出窗口中的自定义关闭按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37048157/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com