`
hylxinlang
  • 浏览: 124670 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

Sencha touch学习笔记1

阅读更多

html页面配置

<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
    <meta charset="UTF-8">
    <title>Reader</title>
   	<link rel="stylesheet" href="resources/css/app.css" />
   	<script src="touch/sencha-touch-all-debug.js"></script>
   	<script src="app.js"></script>
</head>
<body>
    
</body>
</html>

 app.js启动页面

//<debug>
Ext.Loader.setPath({
    'Ext': 'touch/src',
    'Reader': 'app'
});
//</debug>

Ext.application({
	name:'Reader',
	icon:'images/icon.png',
	glossOnIcon:false,
	PhoneStartupScreen:'images/phone_startup.png',
	tabletStartuoScreen:'images/tablet_startup.png',
	launch:function(){
		var panel=Ext.create('Ext.Panel',{
			fullscreen:true,
			id:'myPanel',
			style:'color:red',
			html:'第一个页面'
		});
	}
});

 

0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics