SlideShare a Scribd company logo
1 of 40
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 3Mizanur Rahaman Mizan
 
Introduction to jQuery Mobile
Introduction to jQuery MobileIntroduction to jQuery Mobile
Introduction to jQuery Mobileejlp12
 
FamilySearch Reference Client
FamilySearch Reference ClientFamilySearch Reference Client
FamilySearch Reference ClientDallan Quass
 
Ionic tabs template explained
Ionic tabs template explainedIonic tabs template explained
Ionic tabs template explainedRamesh BN
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic templatevathur
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobilemowd8574
 
jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009jQuery Loves Developers - Oredev 2009
jQuery Loves Developers - Oredev 2009Remy Sharp
 
jQuery Mobile with HTML5
jQuery Mobile with HTML5jQuery Mobile with HTML5
jQuery Mobile with HTML5madhurpgarg
 
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 laravelSayed 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

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
 
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 - MotivacionalHugo 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
 
Tu también puedes apoyo
Tu también puedes apoyoTu también puedes apoyo
Tu también puedes apoyocristiancoachm
 
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 RECICLADOIñaki Cejudo
 
NWACC EMPACTS Students Help Canine Rescue
NWACC EMPACTS Students Help Canine RescueNWACC EMPACTS Students Help Canine Rescue
NWACC EMPACTS Students Help Canine RescueBarbara Rademacher
 
Vinculacion adm prodimdf-2015
Vinculacion adm prodimdf-2015Vinculacion adm prodimdf-2015
Vinculacion adm prodimdf-2015lesdygd
 
Ricardo vargas ahp_project_selection_esp
Ricardo vargas ahp_project_selection_espRicardo vargas ahp_project_selection_esp
Ricardo vargas ahp_project_selection_espRicardo Viana Vargas
 
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 sanidadSalatiel Pimentel
 
GT Smart Rail Solutions
GT Smart Rail SolutionsGT Smart Rail Solutions
GT Smart Rail SolutionsDon 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 MukeshMukesh Kumar
 
Design Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressDesign Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressJesse 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 Bootstrapfreshlybakedpixels
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4imdurgesh
 
Bootstrap - Web Development Framework
Bootstrap - Web Development FrameworkBootstrap - Web Development Framework
Bootstrap - Web Development FrameworkCindy 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 3Nur 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 DevelopmentLaurence 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 3Wahyu 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 ServicesMujeeb 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
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is nowGonzalo Cordero
 
Faster front end performance
Faster front end performanceFaster front end performance
Faster front end performanceMatthew Farina
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015Rob 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

Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessUXDXConf
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxFIDO Alliance
 
Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Hiroshi SHIBATA
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?Mark Billinghurst
 
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfThe Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfFIDO Alliance
 
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...FIDO Alliance
 
Your enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jYour enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jNeo4j
 
Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Patrick Viafore
 
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdfWhere to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdfFIDO Alliance
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceSamy Fodil
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxFIDO Alliance
 
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...FIDO Alliance
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...panagenda
 
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfLinux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfFIDO Alliance
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsLeah Henrickson
 
Microsoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireMicrosoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireExakis Nelite
 
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...FIDO Alliance
 
How we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdfHow we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdfSrushith Repakula
 
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...FIDO Alliance
 

Recently uploaded (20)

Overview of Hyperledger Foundation
Overview of Hyperledger FoundationOverview of Hyperledger Foundation
Overview of Hyperledger Foundation
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
 
Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfThe Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
 
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
 
Your enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jYour enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4j
 
Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024
 
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdfWhere to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM Performance
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptx
 
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
 
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfLinux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
Microsoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireMicrosoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - Questionnaire
 
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
 
How we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdfHow we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdf
 
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
 

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