gpt4 book ai didi

css - 如何从 ionic 4 中的 ion-items 中删除白色背景?

转载 作者:太空宇宙 更新时间:2023-11-03 22:18:25 25 4
gpt4 key购买 nike

我在设计 ionic 4 移动应用程序布局时遇到了很多问题。我花了一段时间才弄清楚如何为应用程序设置背景图像,但现在我在放置 ion-item 标签的任何地方都会得到一个白色矩形。我试过设置 ion-item {背景:透明重要!}(在页面 scss 中)但它不起作用。我完全是 ionic 的初学者!

注册.page.scss

:host { ion-content {
--background:none;
background: url('../../assets/imgs/hoghi/bg.jpg') no-repeat 100% 100%;
background-size: cover;
background-position: center center;

ion-item {
background-color: transparent !important;
background: transparent !important;
opacity:1;
}//end of item}//end of content}//end of :host

注册.page.html

<ion-content>
<ion-item>
<ion-label position="floating">Name</ion-label>
<ion-input></ion-input>
</ion-item>
</ion-content>

This is the output im getting.. the input works fine.

最佳答案

您应该尝试使用 Shadow DOM 变量来实现这一点。

可以使用这些变量自定义 Ionic 组件的样式。

Get more info for ion-item here

按照您的代码将是:

ion-item {
--background: none;
opacity:1;
}

More information on Shadow DOM

您总是可以在每个组件文档的页面末尾找到这些变量

关于css - 如何从 ionic 4 中的 ion-items 中删除白色背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55201231/

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