//加载图片
Ext.require('Ext.Img');
Ext.application({
name:'MyApp',
launch:function(){
var img=Ext.create('Ext.Img',{
src:'images/1.jpg',
width:300,
height:400,
listeners:{
tap:function(){
Ext.Msg.alert('点我');
}
}
});
var panel=Ext.create('Ext.Panel',{
style:'background-color:red',
fullscreen:true,
items:[img],
html:'猫'
});
Ext.Viewport.add(panel);
}
});
Ext.require('Ext.Img');
Ext.application({
name:'MyApp',
launch:function(){
var img=Ext.create('Ext.Img',{
src:'images/1.jpg',
width:300,
height:400,
listeners:{
tap:function(){
Ext.Msg.alert('点我');
}
}
});
var panel=Ext.create('Ext.Panel',{
style:'background-color:red',
fullscreen:true,
items:[img],
html:'猫'
});
Ext.Viewport.add(panel);
}
});









