组件
sencha吧
全部回复
仅看楼主
level 2
//加载图片
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);
}
});
2016年03月29日 07点03分 1
level 2
[滑稽]
2016年03月29日 07点03分 2
1