gpt4 book ai didi

ionic-framework - ionic 5 弹出位置

转载 作者:行者123 更新时间:2023-12-03 18:28:31 25 4
gpt4 key购买 nike

我正在使用 ion-popover .
在文档中的示例中,当您单击右上角的三个点时,弹出框显示在单击的按钮旁边。
重现这种情况的好方法是什么?有没有内置的方法?
由于我没有找到方法,我试图手动设置弹出框的样式,但这也不起作用。
我的 page.ts

const popover = await this.popoverController.create({
component: OptionsComponent,
cssClass: 'my-custom-class',
event: ev
});
return await popover.present();
我的 global.scss
.my-custom-class .popover-content {
position: absolute;
right: 0;
top: 0;
}
难道我做错了什么?有没有更好的方法来解决这个问题?

最佳答案

已说明 in the docs (强调我的):

To present a popover, call the present method on a popover instance. In order to position the popover relative to the element clicked, a click event needs to be passed into the options of the the present method.


HTML
<div (click)="showPopover($event)">
<div>AAA</div>
</div>
在您的类(class)中,将事件作为参数传递给您的方法:
showPopover(event) {
const popover = await this.popoverController.create({
event,
component: OptionsComponent,
cssClass: 'my-custom-class', // optional
});
return await popover.present();
}
不需要额外的 CSS,除非您想设置模态内容的样式。

关于ionic-framework - ionic 5 弹出位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62485377/

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