gpt4 book ai didi

javascript - ExtJS:修复两个工具栏元素上的图像

转载 作者:行者123 更新时间:2023-12-03 12:47:46 24 4
gpt4 key购买 nike

我正在尝试做的事情看起来像这样: enter image description here

到目前为止,我已经成功地创建了两个工具栏,其中一个工具栏中包含图像:

Ext.define('bla.bla.bla.Main', {
extend: 'Ext.panel.Panel',
xtype: 'app-main',
header: false,
id:'main',
layout: 'border',
dockedItems: [
{
xtype: 'toolbar',
dock: 'top',
items: [{
xtype:'label',
html: '<img src="/resources/img/myImage.png" width="60" height="60">',
},{......}
]
},
{
xtype: 'toolbar',
dock: 'top',
style: {backgroundColor: 'green'},
items: [{
text: 'Home'),
},{....}
]
}
],
items: [{ // Panel central
xtype: 'centerPanel',
id: 'center-panel',
region: 'center',
layout: 'fit'
},{ // Pie
xtype: 'footer',
id: 'footer',
region: 'south'
}]

});

看起来像这样: enter image description here

但每次我尝试下推图像,例如更改 CSS 的 topmargin-top 属性时,它都会呈现在第二个工具栏下。我也尝试过使用 z-index,但没有结果。

¿有什么办法可以做到这一点吗?

最佳答案

解决方案是在这个 Sencha Forum thread 中给我的

您可以创建一个图像 dom 元素并将其放置在您想要的位置。

    //render image\
var style = "position: absolute;top: 10px;left: 10px;z-index: 99999;",
href = "https://www.sencha.com/forum/sencha-assets/css/images/logo.svg";

Ext.getBody().appendChild(Ext.DomHelper.createDom('<img id="image" style="' + style + '" src="' + href + '" height="60px" />'));

当然,您应该将它放在主面板上的afterrender 监听器中。

参见 fiddle .

关于javascript - ExtJS:修复两个工具栏元素上的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32758970/

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