SlideShare a Scribd company logo
1 of 47
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

More Related Content

What's hot

淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践jay li
 
一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18twMVC
 
Koubei banquet 34
Koubei banquet 34Koubei banquet 34
Koubei banquet 34Koubei UED
 
Angular.js & ASP.NET in Study4
Angular.js & ASP.NET in Study4Angular.js & ASP.NET in Study4
Angular.js & ASP.NET in Study4Kyle 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.1modou li
 
前端杂谈
前端杂谈前端杂谈
前端杂谈salinet
 
Koubei banquet 27
Koubei banquet 27Koubei banquet 27
Koubei banquet 27Koubei UED
 
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3twMVC
 
【第一期】开发的前端之痛 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#14twMVC
 
AtticTV and NodeJS
AtticTV and NodeJSAtticTV and NodeJS
AtticTV and NodeJSGrey Ang
 
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13twMVC
 
AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9twMVC
 
Study4 love.2016.2.20.ionic
Study4 love.2016.2.20.ionicStudy4 love.2016.2.20.ionic
Study4 love.2016.2.20.ionicKyle Shen
 

What's hot (19)

淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践
 
一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18一小時可以打造什麼服務Plus twMVC#18
一小時可以打造什麼服務Plus twMVC#18
 
Koubei banquet 34
Koubei banquet 34Koubei banquet 34
Koubei banquet 34
 
Angular.js & ASP.NET in Study4
Angular.js & ASP.NET in Study4Angular.js & ASP.NET in Study4
Angular.js & ASP.NET in Study4
 
基于Greasemonkey的Firefox浏览器扩展
基于Greasemonkey的Firefox浏览器扩展基于Greasemonkey的Firefox浏览器扩展
基于Greasemonkey的Firefox浏览器扩展
 
Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1
 
2021laravelconftwslides8
2021laravelconftwslides82021laravelconftwslides8
2021laravelconftwslides8
 
前端杂谈
前端杂谈前端杂谈
前端杂谈
 
2021laravelconftwslides12
2021laravelconftwslides122021laravelconftwslides12
2021laravelconftwslides12
 
行動技術開發概論
行動技術開發概論行動技術開發概論
行動技術開發概論
 
Koubei banquet 27
Koubei banquet 27Koubei banquet 27
Koubei banquet 27
 
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
ASP.NET MVC 新增、查詢、修改、刪除 基本功實戰 -twMVC#3
 
【第一期】开发的前端之痛 by 银环
【第一期】开发的前端之痛 by 银环【第一期】开发的前端之痛 by 银环
【第一期】开发的前端之痛 by 银环
 
輕鬆上手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
 
AtticTV and NodeJS
AtticTV and NodeJSAtticTV and NodeJS
AtticTV and NodeJS
 
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13MVC實戰分享 分頁與排序相關技巧-tw mvc#13
MVC實戰分享 分頁與排序相關技巧-tw mvc#13
 
Banquet 39
Banquet 39Banquet 39
Banquet 39
 
AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9AngularJS 開發 ASP.NET MVC -twMVC#9
AngularJS 開發 ASP.NET MVC -twMVC#9
 
Study4 love.2016.2.20.ionic
Study4 love.2016.2.20.ionicStudy4 love.2016.2.20.ionic
Study4 love.2016.2.20.ionic
 

Viewers also liked

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 shoppingMatkailufoorumi
 
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 developerNicolas Deverge
 
開源之道:Open Source Enlightenment
開源之道:Open Source Enlightenment開源之道:Open Source Enlightenment
開源之道:Open Source EnlightenmentAudrey Tang
 
20160921線上讀書會git教學
20160921線上讀書會git教學20160921線上讀書會git教學
20160921線上讀書會git教學彥銘 黄
 
Make web as webapp
Make web as webappMake web as webapp
Make web as webappFred 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 3John Bertucci
 
淺談 Startup 公司的軟體開發流程 v2
淺談 Startup 公司的軟體開發流程 v2淺談 Startup 公司的軟體開發流程 v2
淺談 Startup 公司的軟體開發流程 v2Wen-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 bootstrapZunair Sagitarioux
 
Building a Moodle theme with bootstrap
Building a Moodle theme with bootstrapBuilding a Moodle theme with bootstrap
Building a Moodle theme with bootstrapBas Brands
 

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 ...
 
Experience hub smart shopping
Experience hub smart shoppingExperience hub smart shopping
Experience hub smart shopping
 
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
 
開源之道:Open Source Enlightenment
開源之道:Open Source Enlightenment開源之道:Open Source Enlightenment
開源之道:Open Source Enlightenment
 
20160921線上讀書會git教學
20160921線上讀書會git教學20160921線上讀書會git教學
20160921線上讀書會git教學
 
Make web as webapp
Make web as webappMake web as webapp
Make web as webapp
 
如何開發破百萬下載的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 | 市長官邸藝文沙龍
 
Colorgy - 校園 Open API 平台
Colorgy - 校園 Open API 平台Colorgy - 校園 Open API 平台
Colorgy - 校園 Open API 平台
 
6.twitter bootstrap 元件介紹
6.twitter bootstrap 元件介紹6.twitter bootstrap 元件介紹
6.twitter bootstrap 元件介紹
 
Bootstrap ppt
Bootstrap pptBootstrap ppt
Bootstrap ppt
 
Git 版本控制系統 -- 從微觀到宏觀
Git 版本控制系統 -- 從微觀到宏觀Git 版本控制系統 -- 從微觀到宏觀
Git 版本控制系統 -- 從微觀到宏觀
 
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
 
淺談 Startup 公司的軟體開發流程 v2
淺談 Startup 公司的軟體開發流程 v2淺談 Startup 公司的軟體開發流程 v2
淺談 Startup 公司的軟體開發流程 v2
 
Git 實務圖解
Git 實務圖解Git 實務圖解
Git 實務圖解
 
Responsive web-design through bootstrap
Responsive web-design through bootstrapResponsive web-design through bootstrap
Responsive web-design through bootstrap
 
Building a Moodle theme with bootstrap
Building a Moodle theme with bootstrapBuilding a Moodle theme with bootstrap
Building a Moodle theme with bootstrap
 

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

移动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 appsAdam 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 Developerjay li
 
Exam 98-375 HTML5 Application Development Fundamentals
Exam 98-375 HTML5 Application Development FundamentalsExam 98-375 HTML5 Application Development Fundamentals
Exam 98-375 HTML5 Application Development FundamentalsChieh Lin
 
Let's talk about Web Design
Let's talk about Web DesignLet's talk about Web Design
Let's talk about Web DesignAbby Chiu
 
Android 4-app
Android 4-appAndroid 4-app
Android 4-applydiafly
 
Responsive Web UI Design
Responsive Web UI DesignResponsive Web UI Design
Responsive Web UI Designjay 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
 

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

jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
移动Web开发框架jqm探讨
移动Web开发框架jqm探讨移动Web开发框架jqm探讨
移动Web开发框架jqm探讨
 
HTML5概览
HTML5概览HTML5概览
HTML5概览
 
淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践淘宝移动端Web开发最佳实践
淘宝移动端Web开发最佳实践
 
深入剖析浏览器
深入剖析浏览器深入剖析浏览器
深入剖析浏览器
 
模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京
 
一步一步开发Html5 mobile apps
一步一步开发Html5 mobile apps一步一步开发Html5 mobile apps
一步一步开发Html5 mobile apps
 
淘宝移动端Web开发实践
淘宝移动端Web开发实践淘宝移动端Web开发实践
淘宝移动端Web开发实践
 
JQuery Mobile 框架介紹與使用
JQuery Mobile 框架介紹與使用JQuery Mobile 框架介紹與使用
JQuery Mobile 框架介紹與使用
 
Mobile UI design and Developer
Mobile UI design and DeveloperMobile UI design and Developer
Mobile UI design and Developer
 
Exam 98-375 HTML5 Application Development Fundamentals
Exam 98-375 HTML5 Application Development FundamentalsExam 98-375 HTML5 Application Development Fundamentals
Exam 98-375 HTML5 Application Development Fundamentals
 
Let's talk about Web Design
Let's talk about Web DesignLet's talk about Web Design
Let's talk about Web Design
 
Android 4-app
Android 4-appAndroid 4-app
Android 4-app
 
Responsive Web UI Design
Responsive Web UI DesignResponsive Web UI Design
Responsive Web UI Design
 
2014南部創新應用工具研討會 快速開發行動 app
2014南部創新應用工具研討會 快速開發行動 app2014南部創新應用工具研討會 快速開發行動 app
2014南部創新應用工具研討會 快速開發行動 app
 
富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用
 
輕鬆學會網頁前端
輕鬆學會網頁前端輕鬆學會網頁前端
輕鬆學會網頁前端
 
Windows Mobile Widget 開發
Windows Mobile Widget 開發Windows Mobile Widget 開發
Windows Mobile Widget 開發
 
Html5和css3入门
Html5和css3入门Html5和css3入门
Html5和css3入门
 
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
Web设计 5 “动感新势力”(css3 html5 以及 web_gl)
 

More from 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 PosterFred 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 worksFred 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 WebappFred Lin
 
Developing FirefoxOS
Developing FirefoxOSDeveloping FirefoxOS
Developing FirefoxOSFred 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 overviewFred Lin
 
人人能編程是可能的嗎?
人人能編程是可能的嗎?人人能編程是可能的嗎?
人人能編程是可能的嗎?Fred Lin
 
Android + jenkins
Android + jenkinsAndroid + jenkins
Android + jenkinsFred Lin
 
Play Framework on Google App Engine
Play Framework on Google App EnginePlay Framework on Google App Engine
Play Framework on Google App EngineFred Lin
 
Taipei gtug opening
Taipei gtug openingTaipei gtug opening
Taipei gtug openingFred Lin
 
Google IO 2011 recap
Google IO 2011 recapGoogle IO 2011 recap
Google IO 2011 recapFred Lin
 
Introduction of Google Code and Mercurial
Introduction of Google Code and MercurialIntroduction of Google Code and Mercurial
Introduction of Google Code and MercurialFred Lin
 
Introduction Of Android Scripting Environment
Introduction Of Android Scripting EnvironmentIntroduction Of Android Scripting Environment
Introduction Of Android Scripting EnvironmentFred Lin
 

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?
 
Blocklyduino Poster
Blocklyduino PosterBlocklyduino Poster
Blocklyduino Poster
 
Javascript征服世界是可能的嗎?
Javascript征服世界是可能的嗎?Javascript征服世界是可能的嗎?
Javascript征服世界是可能的嗎?
 
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
 
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
 
Developing FirefoxOS
Developing FirefoxOSDeveloping FirefoxOS
Developing FirefoxOS
 
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)
 
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)
 
第一次程式設計就上手 - 使用Python 與周蟒(zhpy)
第一次程式設計就上手  - 使用Python 與周蟒(zhpy)第一次程式設計就上手  - 使用Python 與周蟒(zhpy)
第一次程式設計就上手 - 使用Python 與周蟒(zhpy)
 
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 程式專案)
 
Firefox OS overview
Firefox OS overviewFirefox OS overview
Firefox OS overview
 
人人能編程是可能的嗎?
人人能編程是可能的嗎?人人能編程是可能的嗎?
人人能編程是可能的嗎?
 
Android + jenkins
Android + jenkinsAndroid + jenkins
Android + jenkins
 
Play Framework on Google App Engine
Play Framework on Google App EnginePlay Framework on Google App Engine
Play Framework on Google App Engine
 
Taipei gtug opening
Taipei gtug openingTaipei gtug opening
Taipei gtug opening
 
Google IO 2011 recap
Google IO 2011 recapGoogle IO 2011 recap
Google IO 2011 recap
 
Introduction of Google Code and Mercurial
Introduction of Google Code and MercurialIntroduction of Google Code and Mercurial
Introduction of Google Code and Mercurial
 
Introduction Of Android Scripting Environment
Introduction Of Android Scripting EnvironmentIntroduction Of Android Scripting Environment
Introduction Of Android Scripting Environment
 

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

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. &amp;#x7528;&amp;#x76F8;&amp;#x540C;UI Framework, &amp;#x7528;&amp;#x540C;&amp;#x6A23;&amp;#x65B9;&amp;#x5F0F;&amp;#x6E9D;&amp;#x901A;\n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. syntax highlight\nhttp://tohtml.com/xml/\n