sencha吧 关注:47贴子:72
  • 1回复贴,共1
//加载图片
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);
}
});


IP属地:广东1楼2016-03-29 15:56回复


    IP属地:广东2楼2016-03-29 15:57
    回复