MOBILE OVERVIEW
• 既有網站系統如何轉型到行動商務
• 解法1: 開發支援行動瀏覽器的WEB系統
• 解法2: 開發online 行動版WEB
• 解法3: 開發行動裝置Native Code 系統
• 解法4: 開發行動裝置 Html 5 Based 系統
9
10.
MOBILE FRAMEWORK
• 以WebBrowser為主的開發框架
• 現行WEB的行動開發框架
• jQuery Mobile
• JQTouch plugin for Jquery
• Sencha Touch
• http://www.sencha.com/products/touch/
• App Inventor
• http://www.appinventorbeta.com
• NimbleKit
• http://www.nimblekit.com
10
11.
MOBILE FRAMEWORK
JQUERY MOBILE
• jQuery Mobile
• http://jquerymobile.com/
• MIT or the GPL2 license
• HTML5-based
• Native WebKit Animations
• 基於Jquery framework
• jQuery Mobile 1.0 Final
• 注意 Requires jQuery core 1.6.4
• 切勿使用最新的jQuery 1.7
11
MOBILE FRAMEWORK
NIMBLEKIT
• NKButton
• init(x, y, width, height, callback)
function playRadio()
{
var radio = new NKInternetPlayer();
radio.playFromURL("http://myradio.com:8000");
}
var playButton = new NKButton();
playButton.init(15, 390, 60, 20, "playRadio");
playButton.setImage("play.png");
playButton.show();
18