如何在其他图像下设置图像?
How to set image under other image?
如何在其他图片下设置图片。有两种图片用户照片和半透明图片需要设置在用户照片上。如何使用 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')
});
编辑:
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')
});
}
}
}],
如何在其他图片下设置图片。有两种图片用户照片和半透明图片需要设置在用户照片上。如何使用 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')
});
编辑:
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')
});
}
}
}],