SlideShare uma empresa 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

Mais conteúdo relacionado

Mais procurados

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
 

Mais procurados (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
 

Destaque

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
 

Destaque (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
 

Semelhante 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
 

Semelhante 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

AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
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
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 

Último (20)

AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
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
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 

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