SlideShare una empresa de Scribd logo
1 de 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

Más contenido relacionado

La actualidad más candente

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
 

La actualidad más candente (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
 

Destacado

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
 

Destacado (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 a 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 a 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
 

Último

How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 

Último (20)

How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 

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