gpt4 book ai didi

javascript - 如何将图像设置在其他图像下?

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

如何将图像设置在其他图像下。有两张图片,用户照片和半透明图片需要设置在用户照片上。如何使用 ExtJs 做到这一点

最佳答案

试试这个方法。

Ext.create('Ext.Img', {
src: 'http://www.sencha.com/img/20110215-feat-html5.png',
width: 184,
height: 90,
autoEl: {
tag: 'div'
},
id: 'image1',
renderTo: Ext.getBody()
});

Ext.create('Ext.Img', {
src: 'http://orig01.deviantart.net/2890/f/2012/168/0/a/labyrinth_free_background_transparent_png_by_jacobmainland-d53tglc.png',
width: 184,
height: 90,
style: 'position:absolute;left:0px;top:0px;',
renderTo: Ext.get('image1')
});

Sencha Fiddle

编辑:

tbar: [{
xtype: 'image',
src: 'http://www.sencha.com/img/20110215-feat-html5.png',
width: 184,
height: 90,
autoEl: {
tag: 'div'
},
id: 'abc',
listeners: {
render: function() {
Ext.create('Ext.Img', {
src: 'http://orig01.deviantart.net/2890/f/2012/168/0/a/labyrinth_free_background_transparent_png_by_jacobmainland-d53tglc.png',
width: 184,
height: 90,
style: 'position:absolute;left:0px;top:0px;',
renderTo: Ext.get('abc')
});
}
}
}],

关于javascript - 如何将图像设置在其他图像下?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33275421/

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