gpt4 book ai didi

sencha-touch - 如何给 sencha touch 中的覆盖面板一个透明背景

转载 作者:行者123 更新时间:2023-12-02 22:10:04 24 4
gpt4 key购买 nike

下面的代码只改变面板周围边框的颜色,而不是面板本身。

var overlay = Ext.Viewport.add({                
xtype: 'panel',
centered: true,
style:'background-color: transparent;',
modal: {
style: 'opacity: 0'
},
hideOnMaskTap:true,
width:'20%',
height: '50%',
styleHtmlContent:true,
items:[{
xtype:'button',
test:'hey',
cls:'notrans',
style: 'opacity: 1'
}]
});

最佳答案

当面板居中时,您需要更改面板的 x-panel-inner cls。所以你想要做的是给你的面板一个 cls 例如:cls: my-panel

var overlay = Ext.Viewport.add({
xtype: 'panel',
centered: true,
style:'background-color: transparent;',
cls: 'my-panel',
....
});

现在在您的自定义样式表中:

.my-panel .x-panel-inner {
background-color: transparent !important;
}

现在居中面板的背景应该是透明的。

关于sencha-touch - 如何给 sencha touch 中的覆盖面板一个透明背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15456061/

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