gpt4 book ai didi

javascript - 如何给 AngularJS Popup 上课

转载 作者:行者123 更新时间:2023-11-30 00:32:51 28 4
gpt4 key购买 nike

这是我的代码。当我单击它时,它会显示一个带有自动生成的 CSS 的弹出窗口。我想通过调用一些 id 和类来对 CSS 进行一些更改。我怎样才能给它 id 或类,以便我可以通过调用类或 id 在 CSS 中进行更改。

$scope.showPopup = function() {
$scope.data = {}

// An elaborate, custom popup
var myPopup = $ionicPopup.show({

title: 'Social Media Services',

scope: $scope,
buttons: [
{
type :'ion-social-facebook positive button-large',

onTap: function(e) {
//$cordovaSpinnerDialog.show("aaa", "aaaa");
window.open('https://www.facebook.com/BinDawood.Co', '_system', 'location=yes');
}
},
{ type :'ion-social-twitter calm',
onTap: function(e) {
// $cordovaSpinnerDialog.show("aaa", "aaaa");
window.open('https://twitter.com/BinDawoodco', '_system', 'location=yes');
}
},
{ type :'ion-social-pinterest assertive',
onTap: function(e) {
// $cordovaSpinnerDialog.show("aaa", "aaaa");
window.open('http://pinterest.com/bindawoodco', '_system', 'location=yes');
}
},

]
});
myPopup.then(function(res) {
console.log('Tapped!', res);
});

};

最佳答案

在作为 $ionicPopup.show 参数传递的对象中添加属性 cssClass

  cssClass: '', // String, The custom CSS class name

关于javascript - 如何给 AngularJS Popup 上课,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28538336/

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