SlideShare a Scribd company logo
Developer 也可以做出漂
亮網站
Twitter Bootstrap/jQuery Mobile 簡介
Developer 為什麼要用
UI Framework?
老   :
今天要的東西,昨天就要
os:
嘴砲完!=做好了
嘴砲之外
技術規格
流程
UI
實現新功能
測試
Developer較擅長的
技術規格
流程
UI
實現新功能
測試
讓專業的來? (Designer)
技術規格
流程
UI
實現新功能
測試
不擅長UI?

自己做不好看
不會畫圖(img)
不會做圖示(icon)
UI Framework
讓Developer/Designer用同一套設計語言溝通
WEB開發(前端)


html + js +
css + img + icon
WEB開發-Developer向


html + js +
css + img + icon
WEB開發-Designer向


html + js +
css + img + icon
WEB開發-UI Framework


html + js +
css + img + icon
使用UI Framework

少做多得
專注流程與新功能(有價值的)
護肝早下班
少做多得

一樣用html+js
跨平台、 跨裝置
跨瀏覽器
想介紹的UI Framework
JQuery Mobile / Twitter Bootstrap
適用情境
jQuery Mobile:
列表型態的行動網頁/行動應用


Twitter Bootstrap:
 面、平板、行動網頁
JQUERY MOBILE
網站



     http://jquerymobile.com/
GALLERY
網站




     HTTP://WWW.JQMGALLERY.COM/
CODIQA
網站




     HTTP://WWW.CODIQA.COM/
文件
網站




     HTTP://JQUERYMOBILE.COM/DEMOS/1.1.0/
Define

<head>
 <title>jQuery Mobile</title>
 <link rel="stylesheet" href="jquery.mobile-1.1.0.min.css" />
 <script src="jquery-1.7.1.min.js"></script>
 <script src="jquery.mobile-1.1.0.min.js"></script>
</head>
Body
<div data-role="page">

 <div data-role="header">
 <h1>Title</h1>
 </div><!-- /header -->

 <div data-role="content">
 <p>The content</p>
 </div><!-- /content -->

 <div data-role="footer">
 <h4>The Footer</h4>
 </div><!-- /footer -->
</div><!-- /page -->
Body with theme
<div data-role="page" data-theme="c">

 <div data-role="header" data-theme="b">
 <h1>Title</h1>
 </div><!-- /header -->

 <div data-role="content">
 <p>The content</p>
 </div><!-- /content -->

 <div data-role="footer" data-theme="b">
 <h4>The Footer</h4>
 </div><!-- /footer -->
</div><!-- /page -->
THEMEROLLER
網站




     HTTP://JQUERYMOBILE.COM/THEMEROLLER/
Order List
<div data-role="content">
 <ul data-role="listview" data-inset="true" data-theme="c">
   <li data-role="list-divider">Web Sites</li>
   <li><a href="http://www.gasolin.idv.tw">gasolin</a></li>
   <li><a href="http://letshow.me">LetShow</a></li>
 </ul>
</div><!-- /content -->
Navigation Bar
<div data-role="footer" data-theme="b">
 <div data-role="navbar">
  <ul>
   <li>
   <a href="#" data-icon="info" data-iconpos="top">Info</a>
   </li><li>
   <a href="#" data-icon="star" data-iconpos="top">Mark</a>
   </li><li>
   <a href="#" data-icon="gear" data-iconpos="top">Pref</a>
   </li>
  </ul>
 </div>
</div><!-- /footer -->
ICONS
網站



     HTTP://JQUERYMOBILE.COM/TEST/DOCS/BUTTONS/BUTTONS-ICONS.HTML
Tada!




REFERENCE HTTP://GOO.GL/NFVBZ
MOBISCROLL
網站




     HTTP://MOBISCROLL.COM/
TWITTER BOOTSTRAP
網站




     HTTP://TWITTER.GITHUB.COM/BOOTSTRAP/
BUILT WITH BOOTSTRAP
網站




     HTTP://BUILTWITHBOOTSTRAP.COM/
BOOTSWATCH
網站




     HTTP://BOOTSWATCH.COM/
自行訂製
網站




     HTTP://TWITTER.GITHUB.COM/BOOTSTRAP/
文件
網站



     HTTP://TWITTER.GITHUB.COM/BOOTSTRAP/SCAFFOLDING.HTML
螢模式
網站
平板模式
網站
手機模式
網站
Define
<head>
  <title>Twitter Bootstrap</title>
  <meta name="viewport" content="width=device-width, initial-
scale=1.0">
  <link rel="stylesheet" media="screen"
        href="css/bootstrap.min.css"/>
  <link rel="stylesheet" media="screen"
        href="css/bootstrap-responsive.min.css"/>
  <script src="js/bootstrap.min.js" type="text/javascript"></
script>
</head>
Responsive Design
<head>
  <title>Twitter Bootstrap</title>
  <meta name="viewport" content="width=device-width, initial-
scale=1.0">
  <link rel="stylesheet" media="screen"
        href="bootstrap.min.css"/>
  <link rel="stylesheet" media="screen"
        href="bootstrap-responsive.min.css"/>
  <script src="bootstrap.min.js" type="text/javascript"></script>
</head>
Body (Grid)                    面
<body data-offset="50">
 <div id="row">
  <div class="span3">
                               平板
   <h3>Left</h3>
  </div>
  <div class="span9">
   <h1>Main</h1>               手機
  </div>
 </div>
</body>

                          配置
Navigation Bar
<body data-offset="50">
<div class="navbar navbar-fixed-top">
  <div class="navbar-inner">
    <div class="container">
       <a class="brand" href="/">GTUG Taipei</a>
       <ul class="nav">
         <li><a href="/">gasolin</a></li>
         <li class="active">
           <a href="http://letshow.me">LetShow</a></li>
       </ul>
    </div>
  </div>
</div>
...
with icon
<body data-offset="50">
<div class="navbar navbar-fixed-top">
  <div class="navbar-inner">
    <div class="container">
       <a class="brand" href="/">GTUG Taipei</a>
       <ul class="nav">
         <li><a href="/">gasolin</a></li>
         <li class="active">
           <a href="http://letshow.me">
           <i class="icon-headphones icon-white"></i> LetShow
           </a></li>
       </ul>
    </div>
  </div>
</div>
ICONS
網站



     HTTP://TWITTER.GITHUB.COM/BOOTSTRAP/BASE-CSS.HTML#ICONS
FONT AWESOME
網站




     HTTP://FORTAWESOME.GITHUB.COM/FONT-
Live Demo

Hero Unit
Badge
Alerts
Plugins
THANKS!
JQuery Mobile / Twitter Bootstrap
Ad

More Related Content

What's hot (19)

淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践
jay li
 
一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18
twMVC
 
Koubei banquet 34
Koubei banquet 34Koubei banquet 34
Koubei banquet 34
Koubei UED
 
Angular.js & ASP.NET in Study4
Angular.js & ASP.NET in Study4Angular.js & ASP.NET in Study4
Angular.js & ASP.NET in Study4
Kyle Shen
 
基于Greasemonkey的Firefox浏览器扩展
基于Greasemonkey的Firefox浏览器扩展基于Greasemonkey的Firefox浏览器扩展
基于Greasemonkey的Firefox浏览器扩展
agen
 
Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1
modou li
 
2021laravelconftwslides8
2021laravelconftwslides82021laravelconftwslides8
2021laravelconftwslides8
LiviaLiaoFontech
 
前端杂谈
前端杂谈前端杂谈
前端杂谈
salinet
 
2021laravelconftwslides12
2021laravelconftwslides122021laravelconftwslides12
2021laravelconftwslides12
LiviaLiaoFontech
 
Koubei banquet 27
Koubei banquet 27Koubei banquet 27
Koubei banquet 27
Koubei UED
 
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
twMVC
 
【第一期】开发的前端之痛 by 银环
【第一期】开发的前端之痛 by 银环【第一期】开发的前端之痛 by 银环
【第一期】开发的前端之痛 by 银环
tbosstraining
 
輕鬆上手Asp.net web api 2.1-twMVC#14
輕鬆上手Asp.net web api 2.1-twMVC#14輕鬆上手Asp.net web api 2.1-twMVC#14
輕鬆上手Asp.net web api 2.1-twMVC#14
twMVC
 
AtticTV and NodeJS
AtticTV and NodeJSAtticTV and NodeJS
AtticTV and NodeJS
Grey Ang
 
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
twMVC
 
AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9
twMVC
 
Study4 love.2016.2.20.ionic
Study4 love.2016.2.20.ionicStudy4 love.2016.2.20.ionic
Study4 love.2016.2.20.ionic
Kyle Shen
 
淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践
jay li
 
一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18
twMVC
 
Koubei banquet 34
Koubei banquet 34Koubei banquet 34
Koubei banquet 34
Koubei UED
 
Angular.js & ASP.NET in Study4
Angular.js & ASP.NET in Study4Angular.js & ASP.NET in Study4
Angular.js & ASP.NET in Study4
Kyle Shen
 
基于Greasemonkey的Firefox浏览器扩展
基于Greasemonkey的Firefox浏览器扩展基于Greasemonkey的Firefox浏览器扩展
基于Greasemonkey的Firefox浏览器扩展
agen
 
Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1
modou li
 
前端杂谈
前端杂谈前端杂谈
前端杂谈
salinet
 
Koubei banquet 27
Koubei banquet 27Koubei banquet 27
Koubei banquet 27
Koubei UED
 
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
twMVC
 
【第一期】开发的前端之痛 by 银环
【第一期】开发的前端之痛 by 银环【第一期】开发的前端之痛 by 银环
【第一期】开发的前端之痛 by 银环
tbosstraining
 
輕鬆上手Asp.net web api 2.1-twMVC#14
輕鬆上手Asp.net web api 2.1-twMVC#14輕鬆上手Asp.net web api 2.1-twMVC#14
輕鬆上手Asp.net web api 2.1-twMVC#14
twMVC
 
AtticTV and NodeJS
AtticTV and NodeJSAtticTV and NodeJS
AtticTV and NodeJS
Grey Ang
 
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
twMVC
 
AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9
twMVC
 
Study4 love.2016.2.20.ionic
Study4 love.2016.2.20.ionicStudy4 love.2016.2.20.ionic
Study4 love.2016.2.20.ionic
Kyle Shen
 

Viewers also liked (20)

Ioh健康黑客松
Ioh健康黑客松Ioh健康黑客松
Ioh健康黑客松
彥銘 黄
 
Cobook
CobookCobook
Cobook
彥銘 黄
 
Intensive Wireless Communications Engineering: Current Practices (Instructor ...
Intensive Wireless Communications Engineering: Current Practices (Instructor ...Intensive Wireless Communications Engineering: Current Practices (Instructor ...
Intensive Wireless Communications Engineering: Current Practices (Instructor ...
Pokai Chang
 
Experience hub smart shopping
Experience hub smart shoppingExperience hub smart shopping
Experience hub smart shopping
Matkailufoorumi
 
2016世界杯創業競賽
2016世界杯創業競賽2016世界杯創業競賽
2016世界杯創業競賽
彥銘 黄
 
伊取平台 淡江育成創新創業比賽 現場簡報
伊取平台 淡江育成創新創業比賽 現場簡報 伊取平台 淡江育成創新創業比賽 現場簡報
伊取平台 淡江育成創新創業比賽 現場簡報
彥銘 黄
 
How to bootstrap your idea when you are a developer
How to bootstrap your idea when you are a developerHow to bootstrap your idea when you are a developer
How to bootstrap your idea when you are a developer
Nicolas Deverge
 
開源之道:Open Source Enlightenment
開源之道:Open Source Enlightenment開源之道:Open Source Enlightenment
開源之道:Open Source Enlightenment
Audrey Tang
 
20160921線上讀書會git教學
20160921線上讀書會git教學20160921線上讀書會git教學
20160921線上讀書會git教學
彥銘 黄
 
Make web as webapp
Make web as webappMake web as webapp
Make web as webapp
Fred Lin
 
如何開發破百萬下載的app - 沒人知道的金礦山open data│陳坤助 | WorkFace 2015-09-17 | 市長官邸藝文沙龍
如何開發破百萬下載的app - 沒人知道的金礦山open data│陳坤助 | WorkFace 2015-09-17 | 市長官邸藝文沙龍如何開發破百萬下載的app - 沒人知道的金礦山open data│陳坤助 | WorkFace 2015-09-17 | 市長官邸藝文沙龍
如何開發破百萬下載的app - 沒人知道的金礦山open data│陳坤助 | WorkFace 2015-09-17 | 市長官邸藝文沙龍
KNY. KUN CHU. 坤助 陳. CHEN
 
Colorgy - 校園 Open API 平台
Colorgy - 校園 Open API 平台Colorgy - 校園 Open API 平台
Colorgy - 校園 Open API 平台
Pokai Chang
 
6.twitter bootstrap 元件介紹
6.twitter bootstrap 元件介紹6.twitter bootstrap 元件介紹
6.twitter bootstrap 元件介紹
Nelson Chen
 
Bootstrap ppt
Bootstrap pptBootstrap ppt
Bootstrap ppt
Nidhi mishra
 
Git 版本控制系統 -- 從微觀到宏觀
Git 版本控制系統 -- 從微觀到宏觀Git 版本控制系統 -- 從微觀到宏觀
Git 版本控制系統 -- 從微觀到宏觀
Wen-Tien Chang
 
Design for Developers: Introduction to Bootstrap 3
Design for Developers: Introduction to Bootstrap 3Design for Developers: Introduction to Bootstrap 3
Design for Developers: Introduction to Bootstrap 3
John Bertucci
 
淺談 Startup 公司的軟體開發流程 v2
淺談 Startup 公司的軟體開發流程 v2淺談 Startup 公司的軟體開發流程 v2
淺談 Startup 公司的軟體開發流程 v2
Wen-Tien Chang
 
Git 實務圖解
Git 實務圖解Git 實務圖解
Git 實務圖解
Pokai Chang
 
Responsive web-design through bootstrap
Responsive web-design through bootstrapResponsive web-design through bootstrap
Responsive web-design through bootstrap
Zunair Sagitarioux
 
Building a Moodle theme with bootstrap
Building a Moodle theme with bootstrapBuilding a Moodle theme with bootstrap
Building a Moodle theme with bootstrap
Bas Brands
 
Ioh健康黑客松
Ioh健康黑客松Ioh健康黑客松
Ioh健康黑客松
彥銘 黄
 
Intensive Wireless Communications Engineering: Current Practices (Instructor ...
Intensive Wireless Communications Engineering: Current Practices (Instructor ...Intensive Wireless Communications Engineering: Current Practices (Instructor ...
Intensive Wireless Communications Engineering: Current Practices (Instructor ...
Pokai Chang
 
Experience hub smart shopping
Experience hub smart shoppingExperience hub smart shopping
Experience hub smart shopping
Matkailufoorumi
 
2016世界杯創業競賽
2016世界杯創業競賽2016世界杯創業競賽
2016世界杯創業競賽
彥銘 黄
 
伊取平台 淡江育成創新創業比賽 現場簡報
伊取平台 淡江育成創新創業比賽 現場簡報 伊取平台 淡江育成創新創業比賽 現場簡報
伊取平台 淡江育成創新創業比賽 現場簡報
彥銘 黄
 
How to bootstrap your idea when you are a developer
How to bootstrap your idea when you are a developerHow to bootstrap your idea when you are a developer
How to bootstrap your idea when you are a developer
Nicolas Deverge
 
開源之道:Open Source Enlightenment
開源之道:Open Source Enlightenment開源之道:Open Source Enlightenment
開源之道:Open Source Enlightenment
Audrey Tang
 
20160921線上讀書會git教學
20160921線上讀書會git教學20160921線上讀書會git教學
20160921線上讀書會git教學
彥銘 黄
 
Make web as webapp
Make web as webappMake web as webapp
Make web as webapp
Fred Lin
 
如何開發破百萬下載的app - 沒人知道的金礦山open data│陳坤助 | WorkFace 2015-09-17 | 市長官邸藝文沙龍
如何開發破百萬下載的app - 沒人知道的金礦山open data│陳坤助 | WorkFace 2015-09-17 | 市長官邸藝文沙龍如何開發破百萬下載的app - 沒人知道的金礦山open data│陳坤助 | WorkFace 2015-09-17 | 市長官邸藝文沙龍
如何開發破百萬下載的app - 沒人知道的金礦山open data│陳坤助 | WorkFace 2015-09-17 | 市長官邸藝文沙龍
KNY. KUN CHU. 坤助 陳. CHEN
 
Colorgy - 校園 Open API 平台
Colorgy - 校園 Open API 平台Colorgy - 校園 Open API 平台
Colorgy - 校園 Open API 平台
Pokai Chang
 
6.twitter bootstrap 元件介紹
6.twitter bootstrap 元件介紹6.twitter bootstrap 元件介紹
6.twitter bootstrap 元件介紹
Nelson Chen
 
Git 版本控制系統 -- 從微觀到宏觀
Git 版本控制系統 -- 從微觀到宏觀Git 版本控制系統 -- 從微觀到宏觀
Git 版本控制系統 -- 從微觀到宏觀
Wen-Tien Chang
 
Design for Developers: Introduction to Bootstrap 3
Design for Developers: Introduction to Bootstrap 3Design for Developers: Introduction to Bootstrap 3
Design for Developers: Introduction to Bootstrap 3
John Bertucci
 
淺談 Startup 公司的軟體開發流程 v2
淺談 Startup 公司的軟體開發流程 v2淺談 Startup 公司的軟體開發流程 v2
淺談 Startup 公司的軟體開發流程 v2
Wen-Tien Chang
 
Git 實務圖解
Git 實務圖解Git 實務圖解
Git 實務圖解
Pokai Chang
 
Responsive web-design through bootstrap
Responsive web-design through bootstrapResponsive web-design through bootstrap
Responsive web-design through bootstrap
Zunair Sagitarioux
 
Building a Moodle theme with bootstrap
Building a Moodle theme with bootstrapBuilding a Moodle theme with bootstrap
Building a Moodle theme with bootstrap
Bas Brands
 
Ad

Similar to Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介 (20)

jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
彭其捷 Jack
 
移动Web开发框架jqm探讨
移动Web开发框架jqm探讨移动Web开发框架jqm探讨
移动Web开发框架jqm探讨
newker
 
HTML5概览
HTML5概览HTML5概览
HTML5概览
Adam Lu
 
淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践
Du Yamin
 
深入剖析浏览器
深入剖析浏览器深入剖析浏览器
深入剖析浏览器
jay li
 
模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京
Joseph Chiang
 
一步一步开发Html5 mobile apps
一步一步开发Html5 mobile apps一步一步开发Html5 mobile apps
一步一步开发Html5 mobile apps
Adam Lu
 
淘宝移动端Web开发实践
淘宝移动端Web开发实践淘宝移动端Web开发实践
淘宝移动端Web开发实践
完颜 小卓
 
JQuery Mobile 框架介紹與使用
JQuery Mobile 框架介紹與使用JQuery Mobile 框架介紹與使用
JQuery Mobile 框架介紹與使用
EZoApp
 
Mobile UI design and Developer
Mobile UI design and DeveloperMobile UI design and Developer
Mobile UI design and Developer
jay li
 
Let's talk about Web Design
Let's talk about Web DesignLet's talk about Web Design
Let's talk about Web Design
Abby Chiu
 
Android 4-app
Android 4-appAndroid 4-app
Android 4-app
lydiafly
 
Responsive Web UI Design
Responsive Web UI DesignResponsive Web UI Design
Responsive Web UI Design
jay li
 
2014南部創新應用工具研討會 快速開發行動 app
2014南部創新應用工具研討會 快速開發行動 app2014南部創新應用工具研討會 快速開發行動 app
2014南部創新應用工具研討會 快速開發行動 app
益祥 許
 
富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用
luolonghao
 
輕鬆學會網頁前端
輕鬆學會網頁前端輕鬆學會網頁前端
輕鬆學會網頁前端
Xi-Zhe Lin
 
Windows Mobile Widget 開發
Windows Mobile Widget 開發Windows Mobile Widget 開發
Windows Mobile Widget 開發
Chui-Wen Chiu
 
Html5和css3入门
Html5和css3入门Html5和css3入门
Html5和css3入门
Xiujun Ma
 
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
ziggear
 
咩星征服計劃 用 Js 征服地球 Part II
咩星征服計劃 用 Js 征服地球 Part II咩星征服計劃 用 Js 征服地球 Part II
咩星征服計劃 用 Js 征服地球 Part II
羊 小咩 (lamb-mei)
 
移动Web开发框架jqm探讨
移动Web开发框架jqm探讨移动Web开发框架jqm探讨
移动Web开发框架jqm探讨
newker
 
HTML5概览
HTML5概览HTML5概览
HTML5概览
Adam Lu
 
淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践
Du Yamin
 
深入剖析浏览器
深入剖析浏览器深入剖析浏览器
深入剖析浏览器
jay li
 
模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京
Joseph Chiang
 
一步一步开发Html5 mobile apps
一步一步开发Html5 mobile apps一步一步开发Html5 mobile apps
一步一步开发Html5 mobile apps
Adam Lu
 
淘宝移动端Web开发实践
淘宝移动端Web开发实践淘宝移动端Web开发实践
淘宝移动端Web开发实践
完颜 小卓
 
JQuery Mobile 框架介紹與使用
JQuery Mobile 框架介紹與使用JQuery Mobile 框架介紹與使用
JQuery Mobile 框架介紹與使用
EZoApp
 
Mobile UI design and Developer
Mobile UI design and DeveloperMobile UI design and Developer
Mobile UI design and Developer
jay li
 
Let's talk about Web Design
Let's talk about Web DesignLet's talk about Web Design
Let's talk about Web Design
Abby Chiu
 
Android 4-app
Android 4-appAndroid 4-app
Android 4-app
lydiafly
 
Responsive Web UI Design
Responsive Web UI DesignResponsive Web UI Design
Responsive Web UI Design
jay li
 
2014南部創新應用工具研討會 快速開發行動 app
2014南部創新應用工具研討會 快速開發行動 app2014南部創新應用工具研討會 快速開發行動 app
2014南部創新應用工具研討會 快速開發行動 app
益祥 許
 
富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用
luolonghao
 
輕鬆學會網頁前端
輕鬆學會網頁前端輕鬆學會網頁前端
輕鬆學會網頁前端
Xi-Zhe Lin
 
Windows Mobile Widget 開發
Windows Mobile Widget 開發Windows Mobile Widget 開發
Windows Mobile Widget 開發
Chui-Wen Chiu
 
Html5和css3入门
Html5和css3入门Html5和css3入门
Html5和css3入门
Xiujun Ma
 
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
ziggear
 
咩星征服計劃 用 Js 征服地球 Part II
咩星征服計劃 用 Js 征服地球 Part II咩星征服計劃 用 Js 征服地球 Part II
咩星征服計劃 用 Js 征服地球 Part II
羊 小咩 (lamb-mei)
 
Ad

More from Fred Lin (18)

How to create 360 Image/panorama & share with WebVR?
How to create  360 Image/panorama & share with WebVR?How to create  360 Image/panorama & share with WebVR?
How to create 360 Image/panorama & share with WebVR?
Fred Lin
 
Blocklyduino Poster
Blocklyduino PosterBlocklyduino Poster
Blocklyduino Poster
Fred Lin
 
Javascript征服世界是可能的嗎?
Javascript征服世界是可能的嗎?Javascript征服世界是可能的嗎?
Javascript征服世界是可能的嗎?
Fred Lin
 
Firefox os how large open source project works
Firefox os   how large open source project worksFirefox os   how large open source project works
Firefox os how large open source project works
Fred Lin
 
Capable Web: Chrome Apps and Firefox Webapp
Capable Web: Chrome Apps and Firefox WebappCapable Web: Chrome Apps and Firefox Webapp
Capable Web: Chrome Apps and Firefox Webapp
Fred Lin
 
Developing FirefoxOS
Developing FirefoxOSDeveloping FirefoxOS
Developing FirefoxOS
Fred Lin
 
Steps to contribute to firefox os (gaia)
Steps to contribute to firefox os (gaia)Steps to contribute to firefox os (gaia)
Steps to contribute to firefox os (gaia)
Fred Lin
 
Introduction of Distributed version control system (mainly Mercurial)
Introduction of Distributed version control system (mainly Mercurial)Introduction of Distributed version control system (mainly Mercurial)
Introduction of Distributed version control system (mainly Mercurial)
Fred Lin
 
第一次程式設計就上手 - 使用Python 與周蟒(zhpy)
第一次程式設計就上手  - 使用Python 與周蟒(zhpy)第一次程式設計就上手  - 使用Python 與周蟒(zhpy)
第一次程式設計就上手 - 使用Python 與周蟒(zhpy)
Fred Lin
 
Maintain and share your python project (維護和分享 Python 程式專案)
Maintain and share your python project (維護和分享 Python 程式專案)Maintain and share your python project (維護和分享 Python 程式專案)
Maintain and share your python project (維護和分享 Python 程式專案)
Fred Lin
 
Firefox OS overview
Firefox OS overviewFirefox OS overview
Firefox OS overview
Fred Lin
 
人人能編程是可能的嗎?
人人能編程是可能的嗎?人人能編程是可能的嗎?
人人能編程是可能的嗎?
Fred Lin
 
Android + jenkins
Android + jenkinsAndroid + jenkins
Android + jenkins
Fred Lin
 
Play Framework on Google App Engine
Play Framework on Google App EnginePlay Framework on Google App Engine
Play Framework on Google App Engine
Fred Lin
 
Taipei gtug opening
Taipei gtug openingTaipei gtug opening
Taipei gtug opening
Fred Lin
 
Google IO 2011 recap
Google IO 2011 recapGoogle IO 2011 recap
Google IO 2011 recap
Fred Lin
 
Introduction of Google Code and Mercurial
Introduction of Google Code and MercurialIntroduction of Google Code and Mercurial
Introduction of Google Code and Mercurial
Fred Lin
 
Introduction Of Android Scripting Environment
Introduction Of Android Scripting EnvironmentIntroduction Of Android Scripting Environment
Introduction Of Android Scripting Environment
Fred Lin
 
How to create 360 Image/panorama & share with WebVR?
How to create  360 Image/panorama & share with WebVR?How to create  360 Image/panorama & share with WebVR?
How to create 360 Image/panorama & share with WebVR?
Fred Lin
 
Blocklyduino Poster
Blocklyduino PosterBlocklyduino Poster
Blocklyduino Poster
Fred Lin
 
Javascript征服世界是可能的嗎?
Javascript征服世界是可能的嗎?Javascript征服世界是可能的嗎?
Javascript征服世界是可能的嗎?
Fred Lin
 
Firefox os how large open source project works
Firefox os   how large open source project worksFirefox os   how large open source project works
Firefox os how large open source project works
Fred Lin
 
Capable Web: Chrome Apps and Firefox Webapp
Capable Web: Chrome Apps and Firefox WebappCapable Web: Chrome Apps and Firefox Webapp
Capable Web: Chrome Apps and Firefox Webapp
Fred Lin
 
Developing FirefoxOS
Developing FirefoxOSDeveloping FirefoxOS
Developing FirefoxOS
Fred Lin
 
Steps to contribute to firefox os (gaia)
Steps to contribute to firefox os (gaia)Steps to contribute to firefox os (gaia)
Steps to contribute to firefox os (gaia)
Fred Lin
 
Introduction of Distributed version control system (mainly Mercurial)
Introduction of Distributed version control system (mainly Mercurial)Introduction of Distributed version control system (mainly Mercurial)
Introduction of Distributed version control system (mainly Mercurial)
Fred Lin
 
第一次程式設計就上手 - 使用Python 與周蟒(zhpy)
第一次程式設計就上手  - 使用Python 與周蟒(zhpy)第一次程式設計就上手  - 使用Python 與周蟒(zhpy)
第一次程式設計就上手 - 使用Python 與周蟒(zhpy)
Fred Lin
 
Maintain and share your python project (維護和分享 Python 程式專案)
Maintain and share your python project (維護和分享 Python 程式專案)Maintain and share your python project (維護和分享 Python 程式專案)
Maintain and share your python project (維護和分享 Python 程式專案)
Fred Lin
 
Firefox OS overview
Firefox OS overviewFirefox OS overview
Firefox OS overview
Fred Lin
 
人人能編程是可能的嗎?
人人能編程是可能的嗎?人人能編程是可能的嗎?
人人能編程是可能的嗎?
Fred Lin
 
Android + jenkins
Android + jenkinsAndroid + jenkins
Android + jenkins
Fred Lin
 
Play Framework on Google App Engine
Play Framework on Google App EnginePlay Framework on Google App Engine
Play Framework on Google App Engine
Fred Lin
 
Taipei gtug opening
Taipei gtug openingTaipei gtug opening
Taipei gtug opening
Fred Lin
 
Google IO 2011 recap
Google IO 2011 recapGoogle IO 2011 recap
Google IO 2011 recap
Fred Lin
 
Introduction of Google Code and Mercurial
Introduction of Google Code and MercurialIntroduction of Google Code and Mercurial
Introduction of Google Code and Mercurial
Fred Lin
 
Introduction Of Android Scripting Environment
Introduction Of Android Scripting EnvironmentIntroduction Of Android Scripting Environment
Introduction Of Android Scripting Environment
Fred Lin
 

Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介

Editor's Notes