SlideShare a Scribd company logo
Responsive design with Twitter
Bootstrap
Dennis De Cock
Who am I
• Dennis De Cock
Independent consultant :: Business Owner
• Programming PHP sinds 2003
• PHP / Zend Framework / Drupal / Magento
Thank you
What to expect?
• Introduction
• Installation
• The basics
• Components
• Custom jQuery plugins
• Integration
Introduction
Introduction
I’m a coder, not a designer.. So
help is appreciated…
Introduction
• Sleek, intuitive, and powerful front-end framework
for faster and easier web development.
• Quickly to set up
• IE7 support out of the box 
Introduction
• Sleek, intuitive, and powerful front-end framework
for faster and easier web development design.
• Quickly to set up
• IE7 support out of the box 
Introduction
• Open source
• Compiled via Node.js
• Responsive out of the box
(includes tablet and smartphones)
• Customizable in download
• Customizable with a theme roller
• Button generator
Installation
• Download from https://github.com/twitter/bootstrap
or use the compiled version directly from
http://twitter.github.io/bootstrap/assets/bootstrap.zip
or update composer.json with and run composer update
twitter/bootstrap
{
"require": {
"twitter/bootstrap": "2.3.*”
}
}
• Unzip the compressed folder into your project
• Link CSS and JS into your template / html page
Installation
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<h1>Hello, world!</h1>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
Example layouts
• 8 starting layouts available on
http://twitter.github.io/bootstrap/getting-
started.html#examples
The basics
• Grid system
• Responsive features
• Utility classes
• Icons
• Buttons
• Tables
• Forms
• Images
The basics :: grid system
• 12 column grid
• 940px fixed or fluid
• Fully responsive
• Usage columns
The basics :: grid system
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<!--Sidebar content-->
</div>
<div class="span10">
<!--Body content-->
</div>
</div>
</div>
The basics :: grid system
• Offsetting columns
<div class="row">
<div class="span4">...</div>
<div class="span3 offset2">...</div>
</div>
The basics :: grid system
• Nesting columns
<div class="row">
<div class="span12">
Level 1 column
<div class="row">
<div class="span10">Level 2</div>
<div class="span2">Level 2</div>
</div>
</div>
</div>
The basics :: responsive features
• Enable with:
<meta name="viewport" content="width=device-width, initial-scale=1.0”>
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
The basics :: utility classes
• Quickly hide and show media query layout
items
The basics :: icons
• Free sample library of glyphicons
full version is very good, available from glyphicons.com/
• Simple usage: add icon name to an <i> tag
• Can be used in combination with buttons, navbars …
The basics :: buttons
Add classes to the following
elements to quickly create buttons:
– <a>
– <button>
– <input>
The basics :: tables
• A set of different classes to style your tables:
– .table
– .table-striped
– .table-bordered
– .table-hover
– .table-condensed
The basics :: tables
• Extend your styling with optional row classes:
The basics :: forms
• Quickly change sizes with relative sizing:
<input class="input-medium" type="text" placeholder=".input-medium">
The basics :: forms
• Or with grid sizing:
<input class="span2" type="text" placeholder=".span2">
The basics :: images
• Quicly style your images by adding the following classes to
an <img> element:
– img-rounded
– img-circle
– img-polaroid
Components
BUTTON GROUP – DROPDOWNS –
NAVIGATIONAL TABS – PILLS – LISTS –
NAVBAR – LABELS – BADGES – HEADERS –
HERO UNIT – THUMBNAILS – ALERTS –
PROGRESS BARS – MODALS – DROPDOWNS –
TOOLTIPS – POPOVERS – ACCORDION –
CAROUSEL - TYPEAHEAD
Components :: button group
<div class="btn-group">
<button class="btn">Left</button>
<button class="btn">Middle</button>
<button class="btn">Right</button>
</div>
<div class="btn-group btn-group-vertical">
...
</div>
Components :: navbar
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#">Title</a>
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
</div>
Components :: navbar
• Fixed to the top: .navbar-fixed-top
• Fixed to the bottom: .navbar-fixed-bottom
• Place items on the right side: .pull-right
Components :: navbar
• Responsive navbar
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<!-- Everything you want hidden at 940px or less, place within here -->
<div class="nav-collapse collapse">
<!-- .nav, .navbar-search, .navbar-form, etc -->
</div>
Components :: navbar
• Inverted version
<div class="navbar navbar-inverse">
...
</div>
Custom jQuery plugins
• Plugins can be included individually or all at
once
• Both bootstrap.js and bootstrap.min.js
contain all plugins in a single file
Example plugin :: Tooltip
<a href="#" data-toggle="tooltip" title="first tooltip">hover over
me</a>
<script>
$(document).ready(function()
{
$(‘a*rel=tooltip+’).tooltip()
});
</script>
Example plugin :: typeahead
• With javascript:
$('.typeahead').typeahead()
• Works like jQuery autocomplete
• Autocomplete = off
Integration
• Use module for ZF2
• Tweme for Drupal
• Magento: DIY
• Symfony: http://bootstrap.braincrafted.com/
Theme’s
• Free theme’s available at bootswatch.com
• Paid themes available from wrapbootstrap.com
Useful links
• Full glyphicons in css
https://github.com/ericzhang-cn/full-glyphicons
• Zend Framework integration module
https://github.com/neilime/zf2-twb-bundle
• Integration with rails (slideshare)
http://www.slideshare.net/darbyfrey/twitter-bootstrap-
12087796
Questions?
Thank you!
Dennis De Cock
dennis@decockict.be
Twitter: dennis_dc

More Related Content

What's hot

Your Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckYour Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckAnthony Montalbano
 
WordPress Theme Design and Development Workshop - Day 3
WordPress Theme Design and Development Workshop - Day 3WordPress Theme Design and Development Workshop - Day 3
WordPress Theme Design and Development Workshop - Day 3
Mizanur Rahaman Mizan
 
Introduction to jQuery Mobile
Introduction to jQuery MobileIntroduction to jQuery Mobile
Introduction to jQuery Mobile
ejlp12
 
FamilySearch Reference Client
FamilySearch Reference ClientFamilySearch Reference Client
FamilySearch Reference Client
Dallan Quass
 
Mobile themes, QR codes, and shortURLs
Mobile themes, QR codes, and shortURLsMobile themes, QR codes, and shortURLs
Mobile themes, QR codes, and shortURLs
Harvard Web Working Group
 
jQuery Essentials
jQuery EssentialsjQuery Essentials
jQuery Essentials
Bedis ElAchèche
 
18.register login
18.register login18.register login
18.register login
Razvan Raducanu, PhD
 
18. images in symfony 4
18. images in symfony 418. images in symfony 4
18. images in symfony 4
Razvan Raducanu, PhD
 
Ionic tabs template explained
Ionic tabs template explainedIonic tabs template explained
Ionic tabs template explained
Ramesh BN
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
Marc Grabanski
 
[ WrocLoveRb 2012] user perspective testing using ruby
[ WrocLoveRb 2012] user perspective testing using ruby[ WrocLoveRb 2012] user perspective testing using ruby
[ WrocLoveRb 2012] user perspective testing using ruby
Mikstura.IT Foundation | Web & Mobile Community
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic templatevathur
 
Polymer
PolymerPolymer
Polymer
Cyril Balit
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobilemowd8574
 
FuncUnit
FuncUnitFuncUnit
FuncUnit
Brian Moschel
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
jQuery Mobile with HTML5
jQuery Mobile with HTML5jQuery Mobile with HTML5
jQuery Mobile with HTML5
madhurpgarg
 
Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.Daniel Downs
 
Security in laravel
Security in laravelSecurity in laravel
Security in laravel
Sayed Ahmed
 

What's hot (20)

Your Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckYour Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages Suck
 
WordPress Theme Design and Development Workshop - Day 3
WordPress Theme Design and Development Workshop - Day 3WordPress Theme Design and Development Workshop - Day 3
WordPress Theme Design and Development Workshop - Day 3
 
An Introduction to Drupal
An Introduction to DrupalAn Introduction to Drupal
An Introduction to Drupal
 
Introduction to jQuery Mobile
Introduction to jQuery MobileIntroduction to jQuery Mobile
Introduction to jQuery Mobile
 
FamilySearch Reference Client
FamilySearch Reference ClientFamilySearch Reference Client
FamilySearch Reference Client
 
Mobile themes, QR codes, and shortURLs
Mobile themes, QR codes, and shortURLsMobile themes, QR codes, and shortURLs
Mobile themes, QR codes, and shortURLs
 
jQuery Essentials
jQuery EssentialsjQuery Essentials
jQuery Essentials
 
18.register login
18.register login18.register login
18.register login
 
18. images in symfony 4
18. images in symfony 418. images in symfony 4
18. images in symfony 4
 
Ionic tabs template explained
Ionic tabs template explainedIonic tabs template explained
Ionic tabs template explained
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
 
[ WrocLoveRb 2012] user perspective testing using ruby
[ WrocLoveRb 2012] user perspective testing using ruby[ WrocLoveRb 2012] user perspective testing using ruby
[ WrocLoveRb 2012] user perspective testing using ruby
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic template
 
Polymer
PolymerPolymer
Polymer
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
FuncUnit
FuncUnitFuncUnit
FuncUnit
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009
 
jQuery Mobile with HTML5
jQuery Mobile with HTML5jQuery Mobile with HTML5
jQuery Mobile with HTML5
 
Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.
 
Security in laravel
Security in laravelSecurity in laravel
Security in laravel
 

Viewers also liked

Liste rapper
Liste rapperListe rapper
Liste rapper
abilitybambambambina
 
Regulamento interno do_centro_de_documentacao_e_informacao
Regulamento interno do_centro_de_documentacao_e_informacaoRegulamento interno do_centro_de_documentacao_e_informacao
Regulamento interno do_centro_de_documentacao_e_informacaoJoão Manuel Juvandes
 
Jornal Página Certa
Jornal Página CertaJornal Página Certa
Jornal Página Certa
Leandro Lisbôa
 
E Business
E BusinessE Business
E BusinessUJAP
 
We4IT LCTY 2013 - Captain Mobility - INV102 Mobile Strategy
We4IT LCTY 2013 - Captain Mobility - INV102 Mobile StrategyWe4IT LCTY 2013 - Captain Mobility - INV102 Mobile Strategy
We4IT LCTY 2013 - Captain Mobility - INV102 Mobile StrategyWe4IT Group
 
Impacto de las tics en la educacion
Impacto de las tics en la educacionImpacto de las tics en la educacion
Impacto de las tics en la educacionmariysabel
 
La bacteria del LIDERAZGO - Motivacional
La bacteria del LIDERAZGO - MotivacionalLa bacteria del LIDERAZGO - Motivacional
La bacteria del LIDERAZGO - Motivacional
Hugo Guerra
 
“Universidad de clase mundial y su dimensión en la educación a distancia: al...
 “Universidad de clase mundial y su dimensión en la educación a distancia: al... “Universidad de clase mundial y su dimensión en la educación a distancia: al...
“Universidad de clase mundial y su dimensión en la educación a distancia: al...
Dirección de Educación Virtual
 
Inactividad y discapacidad.
Inactividad y discapacidad.Inactividad y discapacidad.
Inactividad y discapacidad.
José María
 
Presentacio fotogrames '07 b n +
Presentacio fotogrames '07 b n +Presentacio fotogrames '07 b n +
Presentacio fotogrames '07 b n +
dmgoti
 
La motivacion
La motivacionLa motivacion
La motivacion
DianaCajamune
 
Tu también puedes apoyo
Tu también puedes apoyoTu también puedes apoyo
Tu también puedes apoyo
cristiancoachm
 
SOLUCIONES GPS, PARA RECOGIDA DE PAPEL RECICLADO
SOLUCIONES GPS, PARA RECOGIDA DE PAPEL RECICLADOSOLUCIONES GPS, PARA RECOGIDA DE PAPEL RECICLADO
SOLUCIONES GPS, PARA RECOGIDA DE PAPEL RECICLADO
Iñaki Cejudo
 
NWACC EMPACTS Students Help Canine Rescue
NWACC EMPACTS Students Help Canine RescueNWACC EMPACTS Students Help Canine Rescue
NWACC EMPACTS Students Help Canine Rescue
Barbara Rademacher
 
Vinculacion adm prodimdf-2015
Vinculacion adm prodimdf-2015Vinculacion adm prodimdf-2015
Vinculacion adm prodimdf-2015
lesdygd
 
Ricardo vargas ahp_project_selection_esp
Ricardo vargas ahp_project_selection_espRicardo vargas ahp_project_selection_esp
Ricardo vargas ahp_project_selection_esp
Ricardo Viana Vargas
 
Bases bodigestor
Bases bodigestorBases bodigestor
Bases bodigestor
Felipe Pauccara Caceres
 
Market Research (Cruise Market Overview)
Market Research (Cruise Market Overview)Market Research (Cruise Market Overview)
Market Research (Cruise Market Overview)Flatio
 
Post encuentro 2 conservando la sanidad
Post encuentro  2 conservando la sanidadPost encuentro  2 conservando la sanidad
Post encuentro 2 conservando la sanidad
Salatiel Pimentel
 
GT Smart Rail Solutions
GT Smart Rail SolutionsGT Smart Rail Solutions
GT Smart Rail Solutions
Don Miller
 

Viewers also liked (20)

Liste rapper
Liste rapperListe rapper
Liste rapper
 
Regulamento interno do_centro_de_documentacao_e_informacao
Regulamento interno do_centro_de_documentacao_e_informacaoRegulamento interno do_centro_de_documentacao_e_informacao
Regulamento interno do_centro_de_documentacao_e_informacao
 
Jornal Página Certa
Jornal Página CertaJornal Página Certa
Jornal Página Certa
 
E Business
E BusinessE Business
E Business
 
We4IT LCTY 2013 - Captain Mobility - INV102 Mobile Strategy
We4IT LCTY 2013 - Captain Mobility - INV102 Mobile StrategyWe4IT LCTY 2013 - Captain Mobility - INV102 Mobile Strategy
We4IT LCTY 2013 - Captain Mobility - INV102 Mobile Strategy
 
Impacto de las tics en la educacion
Impacto de las tics en la educacionImpacto de las tics en la educacion
Impacto de las tics en la educacion
 
La bacteria del LIDERAZGO - Motivacional
La bacteria del LIDERAZGO - MotivacionalLa bacteria del LIDERAZGO - Motivacional
La bacteria del LIDERAZGO - Motivacional
 
“Universidad de clase mundial y su dimensión en la educación a distancia: al...
 “Universidad de clase mundial y su dimensión en la educación a distancia: al... “Universidad de clase mundial y su dimensión en la educación a distancia: al...
“Universidad de clase mundial y su dimensión en la educación a distancia: al...
 
Inactividad y discapacidad.
Inactividad y discapacidad.Inactividad y discapacidad.
Inactividad y discapacidad.
 
Presentacio fotogrames '07 b n +
Presentacio fotogrames '07 b n +Presentacio fotogrames '07 b n +
Presentacio fotogrames '07 b n +
 
La motivacion
La motivacionLa motivacion
La motivacion
 
Tu también puedes apoyo
Tu también puedes apoyoTu también puedes apoyo
Tu también puedes apoyo
 
SOLUCIONES GPS, PARA RECOGIDA DE PAPEL RECICLADO
SOLUCIONES GPS, PARA RECOGIDA DE PAPEL RECICLADOSOLUCIONES GPS, PARA RECOGIDA DE PAPEL RECICLADO
SOLUCIONES GPS, PARA RECOGIDA DE PAPEL RECICLADO
 
NWACC EMPACTS Students Help Canine Rescue
NWACC EMPACTS Students Help Canine RescueNWACC EMPACTS Students Help Canine Rescue
NWACC EMPACTS Students Help Canine Rescue
 
Vinculacion adm prodimdf-2015
Vinculacion adm prodimdf-2015Vinculacion adm prodimdf-2015
Vinculacion adm prodimdf-2015
 
Ricardo vargas ahp_project_selection_esp
Ricardo vargas ahp_project_selection_espRicardo vargas ahp_project_selection_esp
Ricardo vargas ahp_project_selection_esp
 
Bases bodigestor
Bases bodigestorBases bodigestor
Bases bodigestor
 
Market Research (Cruise Market Overview)
Market Research (Cruise Market Overview)Market Research (Cruise Market Overview)
Market Research (Cruise Market Overview)
 
Post encuentro 2 conservando la sanidad
Post encuentro  2 conservando la sanidadPost encuentro  2 conservando la sanidad
Post encuentro 2 conservando la sanidad
 
GT Smart Rail Solutions
GT Smart Rail SolutionsGT Smart Rail Solutions
GT Smart Rail Solutions
 

Similar to Twitter bootstrap

Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
Mukesh Kumar
 
Intro to Bootstrap
Intro to BootstrapIntro to Bootstrap
Intro to Bootstrap
kjkleindorfer
 
Design Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressDesign Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPress
Jesse James Arnold
 
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using BootstrapStop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
freshlybakedpixels
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
imdurgesh
 
Bootstrap - Web Development Framework
Bootstrap - Web Development FrameworkBootstrap - Web Development Framework
Bootstrap - Web Development Framework
Cindy Royal
 
Building beautiful websites with bootstrap a case study (DevelopMentor webcast)
Building beautiful websites with bootstrap  a case study (DevelopMentor webcast)Building beautiful websites with bootstrap  a case study (DevelopMentor webcast)
Building beautiful websites with bootstrap a case study (DevelopMentor webcast)
Michael Kennedy
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2James Pearce
 
Pemrograman Web 4 - Bootstrap 3
Pemrograman Web 4 - Bootstrap 3Pemrograman Web 4 - Bootstrap 3
Pemrograman Web 4 - Bootstrap 3
Nur Fadli Utomo
 
Getting to Know Bootstrap for Rapid Web Development
Getting to Know Bootstrap for Rapid Web DevelopmentGetting to Know Bootstrap for Rapid Web Development
Getting to Know Bootstrap for Rapid Web Development
Laurence Svekis ✔
 
Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3
Wahyu Putra
 
JSP Web Technology Application on Road Transport Services
JSP Web Technology Application on Road Transport ServicesJSP Web Technology Application on Road Transport Services
JSP Web Technology Application on Road Transport Services
Mujeeb Rehman
 
The Responsive Grid & You: Extending Your WordPress Site Across Multiple Dev...
The Responsive Grid & You:  Extending Your WordPress Site Across Multiple Dev...The Responsive Grid & You:  Extending Your WordPress Site Across Multiple Dev...
The Responsive Grid & You: Extending Your WordPress Site Across Multiple Dev...
Jeremy Fuksa
 
CSS Flexbox and Grid: The future of website layouts - DN Scrum Breakfast - Au...
CSS Flexbox and Grid: The future of website layouts - DN Scrum Breakfast - Au...CSS Flexbox and Grid: The future of website layouts - DN Scrum Breakfast - Au...
CSS Flexbox and Grid: The future of website layouts - DN Scrum Breakfast - Au...
Scrum Breakfast Vietnam
 
Bootstrap
Bootstrap Bootstrap
Bootstrap
PumoTechnovation
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
Gonzalo Cordero
 
Faster front end performance
Faster front end performanceFaster front end performance
Faster front end performance
Matthew Farina
 
hellowired_instructions
hellowired_instructionshellowired_instructions
hellowired_instructions
AlexAnderson360
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015
Rob Davarnia
 

Similar to Twitter bootstrap (20)

Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
 
Intro to Bootstrap
Intro to BootstrapIntro to Bootstrap
Intro to Bootstrap
 
Design Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressDesign Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPress
 
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using BootstrapStop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
 
Bootstrap - Web Development Framework
Bootstrap - Web Development FrameworkBootstrap - Web Development Framework
Bootstrap - Web Development Framework
 
Building beautiful websites with bootstrap a case study (DevelopMentor webcast)
Building beautiful websites with bootstrap  a case study (DevelopMentor webcast)Building beautiful websites with bootstrap  a case study (DevelopMentor webcast)
Building beautiful websites with bootstrap a case study (DevelopMentor webcast)
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2
 
iWebkit
iWebkitiWebkit
iWebkit
 
Pemrograman Web 4 - Bootstrap 3
Pemrograman Web 4 - Bootstrap 3Pemrograman Web 4 - Bootstrap 3
Pemrograman Web 4 - Bootstrap 3
 
Getting to Know Bootstrap for Rapid Web Development
Getting to Know Bootstrap for Rapid Web DevelopmentGetting to Know Bootstrap for Rapid Web Development
Getting to Know Bootstrap for Rapid Web Development
 
Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3
 
JSP Web Technology Application on Road Transport Services
JSP Web Technology Application on Road Transport ServicesJSP Web Technology Application on Road Transport Services
JSP Web Technology Application on Road Transport Services
 
The Responsive Grid & You: Extending Your WordPress Site Across Multiple Dev...
The Responsive Grid & You:  Extending Your WordPress Site Across Multiple Dev...The Responsive Grid & You:  Extending Your WordPress Site Across Multiple Dev...
The Responsive Grid & You: Extending Your WordPress Site Across Multiple Dev...
 
CSS Flexbox and Grid: The future of website layouts - DN Scrum Breakfast - Au...
CSS Flexbox and Grid: The future of website layouts - DN Scrum Breakfast - Au...CSS Flexbox and Grid: The future of website layouts - DN Scrum Breakfast - Au...
CSS Flexbox and Grid: The future of website layouts - DN Scrum Breakfast - Au...
 
Bootstrap
Bootstrap Bootstrap
Bootstrap
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
 
Faster front end performance
Faster front end performanceFaster front end performance
Faster front end performance
 
hellowired_instructions
hellowired_instructionshellowired_instructions
hellowired_instructions
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015
 

Recently uploaded

De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 

Recently uploaded (20)

De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 

Twitter bootstrap

  • 1. Responsive design with Twitter Bootstrap Dennis De Cock
  • 2. Who am I • Dennis De Cock Independent consultant :: Business Owner • Programming PHP sinds 2003 • PHP / Zend Framework / Drupal / Magento
  • 4. What to expect? • Introduction • Installation • The basics • Components • Custom jQuery plugins • Integration
  • 6. Introduction I’m a coder, not a designer.. So help is appreciated…
  • 7. Introduction • Sleek, intuitive, and powerful front-end framework for faster and easier web development. • Quickly to set up • IE7 support out of the box 
  • 8. Introduction • Sleek, intuitive, and powerful front-end framework for faster and easier web development design. • Quickly to set up • IE7 support out of the box 
  • 9. Introduction • Open source • Compiled via Node.js • Responsive out of the box (includes tablet and smartphones) • Customizable in download • Customizable with a theme roller • Button generator
  • 10. Installation • Download from https://github.com/twitter/bootstrap or use the compiled version directly from http://twitter.github.io/bootstrap/assets/bootstrap.zip or update composer.json with and run composer update twitter/bootstrap { "require": { "twitter/bootstrap": "2.3.*” } } • Unzip the compressed folder into your project • Link CSS and JS into your template / html page
  • 11. Installation <!DOCTYPE html> <html> <head> <title>Bootstrap 101 Template</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet" media="screen"> </head> <body> <h1>Hello, world!</h1> <script src="http://code.jquery.com/jquery.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html>
  • 12. Example layouts • 8 starting layouts available on http://twitter.github.io/bootstrap/getting- started.html#examples
  • 13. The basics • Grid system • Responsive features • Utility classes • Icons • Buttons • Tables • Forms • Images
  • 14. The basics :: grid system • 12 column grid • 940px fixed or fluid • Fully responsive
  • 15. • Usage columns The basics :: grid system <div class="container-fluid"> <div class="row-fluid"> <div class="span2"> <!--Sidebar content--> </div> <div class="span10"> <!--Body content--> </div> </div> </div>
  • 16. The basics :: grid system • Offsetting columns <div class="row"> <div class="span4">...</div> <div class="span3 offset2">...</div> </div>
  • 17. The basics :: grid system • Nesting columns <div class="row"> <div class="span12"> Level 1 column <div class="row"> <div class="span10">Level 2</div> <div class="span2">Level 2</div> </div> </div> </div>
  • 18. The basics :: responsive features • Enable with: <meta name="viewport" content="width=device-width, initial-scale=1.0”> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
  • 19. The basics :: utility classes • Quickly hide and show media query layout items
  • 20. The basics :: icons • Free sample library of glyphicons full version is very good, available from glyphicons.com/ • Simple usage: add icon name to an <i> tag • Can be used in combination with buttons, navbars …
  • 21. The basics :: buttons Add classes to the following elements to quickly create buttons: – <a> – <button> – <input>
  • 22. The basics :: tables • A set of different classes to style your tables: – .table – .table-striped – .table-bordered – .table-hover – .table-condensed
  • 23. The basics :: tables • Extend your styling with optional row classes:
  • 24. The basics :: forms • Quickly change sizes with relative sizing: <input class="input-medium" type="text" placeholder=".input-medium">
  • 25. The basics :: forms • Or with grid sizing: <input class="span2" type="text" placeholder=".span2">
  • 26. The basics :: images • Quicly style your images by adding the following classes to an <img> element: – img-rounded – img-circle – img-polaroid
  • 27. Components BUTTON GROUP – DROPDOWNS – NAVIGATIONAL TABS – PILLS – LISTS – NAVBAR – LABELS – BADGES – HEADERS – HERO UNIT – THUMBNAILS – ALERTS – PROGRESS BARS – MODALS – DROPDOWNS – TOOLTIPS – POPOVERS – ACCORDION – CAROUSEL - TYPEAHEAD
  • 28. Components :: button group <div class="btn-group"> <button class="btn">Left</button> <button class="btn">Middle</button> <button class="btn">Right</button> </div> <div class="btn-group btn-group-vertical"> ... </div>
  • 29. Components :: navbar <div class="navbar"> <div class="navbar-inner"> <a class="brand" href="#">Title</a> <ul class="nav"> <li class="active"><a href="#">Home</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> </ul> </div> </div>
  • 30. Components :: navbar • Fixed to the top: .navbar-fixed-top • Fixed to the bottom: .navbar-fixed-bottom • Place items on the right side: .pull-right
  • 31. Components :: navbar • Responsive navbar <!-- .btn-navbar is used as the toggle for collapsed navbar content --> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <!-- Everything you want hidden at 940px or less, place within here --> <div class="nav-collapse collapse"> <!-- .nav, .navbar-search, .navbar-form, etc --> </div>
  • 32. Components :: navbar • Inverted version <div class="navbar navbar-inverse"> ... </div>
  • 33. Custom jQuery plugins • Plugins can be included individually or all at once • Both bootstrap.js and bootstrap.min.js contain all plugins in a single file
  • 34. Example plugin :: Tooltip <a href="#" data-toggle="tooltip" title="first tooltip">hover over me</a> <script> $(document).ready(function() { $(‘a*rel=tooltip+’).tooltip() }); </script>
  • 35. Example plugin :: typeahead • With javascript: $('.typeahead').typeahead() • Works like jQuery autocomplete • Autocomplete = off
  • 36. Integration • Use module for ZF2 • Tweme for Drupal • Magento: DIY • Symfony: http://bootstrap.braincrafted.com/
  • 37. Theme’s • Free theme’s available at bootswatch.com • Paid themes available from wrapbootstrap.com
  • 38. Useful links • Full glyphicons in css https://github.com/ericzhang-cn/full-glyphicons • Zend Framework integration module https://github.com/neilime/zf2-twb-bundle • Integration with rails (slideshare) http://www.slideshare.net/darbyfrey/twitter-bootstrap- 12087796
  • 40. Thank you! Dennis De Cock dennis@decockict.be Twitter: dennis_dc