iT邦幫忙

3

JavaScript 教學 46:APP實戰(二)

  • 分享至 

  • xImage
  •  

<span style="color: blue;"><span style="font-size: 16px;">
接下來我們要用JS在Appcelerator/Titanium上寫出商業級的Androd/iOS APP。

【先決條件】您須安裝Android或iOS任一SDK。
</span></span>
讓我們在iPhone與Android上各開個視窗來瞧瞧唄。

var win1 = Ti.UI.createWindow({
	backgroundColor : '#f00'	
});

var view1 = Ti.UI.createView({
	backgroundColor : '#0f0',
	width : 200,
	height: 200,
	borderRadius : 10,
	borderColor : '#000',
	borderWidth : 10
});

var label1 = Ti.UI.createLabel({
	text : 'Hello Label1!'
});

view1.add(label1);
win1.add(view1);
win1.open();

建議使用高畫質觀看。
Yes

JS教學系列總整理


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

我要留言

立即登入留言