SlideShare una empresa de Scribd logo
1 de 38
Descargar para leer sin conexión
Bootstrap
   & Joomla UI
        Andrea Tarr
  MetaScale /Sears Holdings
Joomla Day New England 2013
The Problem
Using Bootstrap
Bootstrap in Joomla




April 13, 2013   JDNE: Bootstrap & Joomla UI   2
The Problem



April 13, 2013   JDNE: Bootstrap & Joomla UI   3
Not everything is in core
Extensions make up UI
Templates must be coded
for specific extensions



Patchwork
April 13, 2013   JDNE: Bootstrap & Joomla UI   4
Bootstrap
Consistency

CSS layout styles
CSS UI elements
CSS responsive styles
Integrated JavaScript
Full set of icons
April 13, 2013   JDNE: Bootstrap & Joomla UI   5
Bootstrap
Fast & Flexible

Minified CSS
Minified JavaScript
CSS preprocessor, LESS


April 13, 2013   JDNE: Bootstrap & Joomla UI   6
Using
Bootstrap


April 13, 2013   JDNE: Bootstrap & Joomla UI   7
Download the CSS &
JavaScript files
Call the files plus jQuery
in your program




April 13, 2013   JDNE: Bootstrap & Joomla UI   8
<link href="css/
bootstrap.min.css"
rel="stylesheet">
<script src="js/
jquery.min.js"></script>
<script src="js/
bootstrap.min.js">
</script>
April 13, 2013   JDNE: Bootstrap & Joomla UI   9
Notice we used CSS &
JavaScipt files.
No LESS files.
LESS is used to help
create Bootstrap CSS
files but isn't need to use
Bootstrap.

April 13, 2013   JDNE: Bootstrap & Joomla UI   10
Documentation
Examples & Downloads

http://twitter.github.com/
bootstrap



April 13, 2013   JDNE: Bootstrap & Joomla UI   11
Full Source
(Includes .LESS files)


http://github.com/twitter/
bootstrap


April 13, 2013   JDNE: Bootstrap & Joomla UI   12
Grid System - Static




                                      .spanx
.row
                                      .offsetx
April 13, 2013   JDNE: Bootstrap & Joomla UI     13
Grid System - Static
<div class="row">
  <div class="span4">
     ...</div>
  <div class="offset2
     span6">...</div>
</div>

April 13, 2013   JDNE: Bootstrap & Joomla UI   14
Grid System - Fluid




                                     .spanx
.row-fluid
                                     .offsetx
April 13, 2013   JDNE: Bootstrap & Joomla UI    15
Grid System - Fluid
<div class="row-fluid">
  <div class="span4">
     ...</div>
  <div class="offset2
     span6">...</div>
</div>

April 13, 2013   JDNE: Bootstrap & Joomla UI   16
<div class="row-fluid">
 <div class="span4">
  <div class="row-fluid">
    <div class="span3">...</div>
    <div class="span9">...</div>
  </div>
 </div>
 <div class="offset2 span6">...
 </div>
</div>
April 13, 2013   JDNE: Bootstrap & Joomla UI   17
Responsive classes
.hidden-phone
.visible-phone
.hidden-tablet
.visible-tablet
.hidden-desktop
.visible-desktop

April 13, 2013   JDNE: Bootstrap & Joomla UI   18
Text classes
.muted
.text-warning
.text-error
.text-info
.text-success


April 13, 2013   JDNE: Bootstrap & Joomla UI   19
Useful classes
.pull-right
.pull-left
.clearfix
.element-invisible (JUI)



April 13, 2013   JDNE: Bootstrap & Joomla UI   20
<table> classes
.table
.table-striped
.table-condensed
.table-border
.table-hover


April 13, 2013   JDNE: Bootstrap & Joomla UI   21
<tr> classes




.success                                  .warning
.error                                    .info
April 13, 2013   JDNE: Bootstrap & Joomla UI         22
.btn
.btn-primary
.btn-info
.btn-success
.btn-warning
.btn-danger
.btn-inverse
.btn-link	

April 13, 2013   JDNE: Bootstrap & Joomla UI   23
Size is optional
.btn-large
.btn-small
.btn-mini

<div> size
.btn-block

April 13, 2013   JDNE: Bootstrap & Joomla UI   24
Downloads
twitter.github.com/bootstrap
github.com/twitter/bootstrap
Tutorial
webdesign.tutsplus.com/series/
twitter-bootstrap-101
Video Tutorial
youtube.com/watch?
v=DgwtRpf60xI
April 13, 2013   JDNE: Bootstrap & Joomla UI   25
Bootstrap
in Joomla


April 13, 2013   JDNE: Bootstrap & Joomla UI   26
Three Options
1.  Use Bootstrap files in
    Joomla
2.  Download customized
    Bootstrap files
3.  Create template.css
    file from Joomla
    Bootstrap LESS files
April 13, 2013   JDNE: Bootstrap & Joomla UI   27
1. Use Bootstrap files in
Joomla
media
 jui
   css
   fonts
   img
   js
   less
April 13, 2013   JDNE: Bootstrap & Joomla UI   28
media/jui/css
bootstrap.css
bootstrap.min.css
bootstrap-responsive.css
bootstrap-
responsive.min.css
bootstrap-extended.css
bootstrap-rtl.css
April 13, 2013   JDNE: Bootstrap & Joomla UI   29
media/jui/css
chosen-sprite.png
chosen.css
icomoon.css
sortablelist.css



April 13, 2013   JDNE: Bootstrap & Joomla UI   30
Load CSS automatically

<?php
JHtml::_('bootstrap.loadCss');
?>




April 13, 2013   JDNE: Bootstrap & Joomla UI   31
Load main CSS files
JHtml::_('bootstrap.loadCss');

Main CSS files plus RTL files
<?php
$doc=JFactory::getDocument();
$this->direction=$doc->direction;
JHtml::_('bootstrap.loadCss',
true, $this->direction); ?>

April 13, 2013   JDNE: Bootstrap & Joomla UI   32
Only RTL file
If you loaded Bootstrap CSS
separately or it's included in
your template.css file as in
options 2&3.
<?php
$doc=JFactory::getDocument();
$this->direction=$doc>direction;
JHtml::_('bootstrap.loadCss',
false, $this->direction); ?>

April 13, 2013   JDNE: Bootstrap & Joomla UI   33
Load JavaScript

<?php
JHtml::_('bootstrap.framework');
?>




April 13, 2013   JDNE: Bootstrap & Joomla UI   34
2. Download customized
Bootstrap files
http://twitter.github.com/
bootstrap
Customize



April 13, 2013   JDNE: Bootstrap & Joomla UI   35
Be safe: use the same
version
Extensions may need
components so include
them
Change variables to suit
Download and include as
normal CSS files
April 13, 2013   JDNE: Bootstrap & Joomla UI   36
3. Create template.css
file from Joomla
Bootstrap LESS files
Come to my LESS talk
this afternoon



April 13, 2013   JDNE: Bootstrap & Joomla UI   37
Questions?


April 13, 2013   JDNE: Bootstrap & Joomla UI   38

Más contenido relacionado

Similar a Bootstrap & Joomla UI

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
 
Web Directions South - Even Faster Web Sites
Web Directions South - Even Faster Web SitesWeb Directions South - Even Faster Web Sites
Web Directions South - Even Faster Web Sites
Steve Souders
 
Drupal Frontend Performance and Scalability
Drupal Frontend Performance and ScalabilityDrupal Frontend Performance and Scalability
Drupal Frontend Performance and Scalability
Ashok Modi
 
Souders WPO Web 2.0 Expo
Souders WPO Web 2.0 ExpoSouders WPO Web 2.0 Expo
Souders WPO Web 2.0 Expo
Steve Souders
 

Similar a Bootstrap & Joomla UI (20)

The next step is... Bootstrap by Omar Qunsul
The next step is... Bootstrap by Omar QunsulThe next step is... Bootstrap by Omar Qunsul
The next step is... Bootstrap by Omar Qunsul
 
JQuery Mobile UI
JQuery Mobile UIJQuery Mobile UI
JQuery Mobile UI
 
AngularJS interview questions
AngularJS interview questionsAngularJS interview questions
AngularJS interview questions
 
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.
 
WordPress Accessibility: WordCamp Chicago
WordPress Accessibility: WordCamp ChicagoWordPress Accessibility: WordCamp Chicago
WordPress Accessibility: WordCamp Chicago
 
Web Directions South - Even Faster Web Sites
Web Directions South - Even Faster Web SitesWeb Directions South - Even Faster Web Sites
Web Directions South - Even Faster Web Sites
 
Drupal Frontend Performance and Scalability
Drupal Frontend Performance and ScalabilityDrupal Frontend Performance and Scalability
Drupal Frontend Performance and Scalability
 
React django
React djangoReact django
React django
 
Android Data Binding in action using MVVM pattern - droidconUK
Android Data Binding in action using MVVM pattern - droidconUKAndroid Data Binding in action using MVVM pattern - droidconUK
Android Data Binding in action using MVVM pattern - droidconUK
 
iWebkit
iWebkitiWebkit
iWebkit
 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
 
JavaScript Dependencies, Modules & Browserify
JavaScript Dependencies, Modules & BrowserifyJavaScript Dependencies, Modules & Browserify
JavaScript Dependencies, Modules & Browserify
 
SQLite Database Tutorial In Android
SQLite Database Tutorial In AndroidSQLite Database Tutorial In Android
SQLite Database Tutorial In Android
 
Taking your Web App for a walk
Taking your Web App for a walkTaking your Web App for a walk
Taking your Web App for a walk
 
Now you see me... Adaptive Web Design and Development
Now you see me... Adaptive Web Design and DevelopmentNow you see me... Adaptive Web Design and Development
Now you see me... Adaptive Web Design and Development
 
Desenvolvimento Mobile Híbrido
Desenvolvimento Mobile HíbridoDesenvolvimento Mobile Híbrido
Desenvolvimento Mobile Híbrido
 
AspNetWhitePaper
AspNetWhitePaperAspNetWhitePaper
AspNetWhitePaper
 
AspNetWhitePaper
AspNetWhitePaperAspNetWhitePaper
AspNetWhitePaper
 
Bootstrap cheat-sheet-websitesetup.org
Bootstrap cheat-sheet-websitesetup.org Bootstrap cheat-sheet-websitesetup.org
Bootstrap cheat-sheet-websitesetup.org
 
Souders WPO Web 2.0 Expo
Souders WPO Web 2.0 ExpoSouders WPO Web 2.0 Expo
Souders WPO Web 2.0 Expo
 

Más de Andrea Tarr

The State of Joomla - J and Beyond 2013
The State of Joomla - J and Beyond 2013The State of Joomla - J and Beyond 2013
The State of Joomla - J and Beyond 2013
Andrea Tarr
 

Más de Andrea Tarr (7)

Using LESS, the CSS Preprocessor: J and Beyond 2013
Using LESS, the CSS Preprocessor: J and Beyond 2013Using LESS, the CSS Preprocessor: J and Beyond 2013
Using LESS, the CSS Preprocessor: J and Beyond 2013
 
The State of Joomla - J and Beyond 2013
The State of Joomla - J and Beyond 2013The State of Joomla - J and Beyond 2013
The State of Joomla - J and Beyond 2013
 
Bootstrap for Extension Developers JWC 2012
Bootstrap for Extension Developers  JWC 2012Bootstrap for Extension Developers  JWC 2012
Bootstrap for Extension Developers JWC 2012
 
Bootstrap Introduction
Bootstrap IntroductionBootstrap Introduction
Bootstrap Introduction
 
PHP for HTML Gurus - J and Beyond 2012
PHP for HTML Gurus - J and Beyond 2012PHP for HTML Gurus - J and Beyond 2012
PHP for HTML Gurus - J and Beyond 2012
 
Where is Joomla going and how do we get there? J and Beyond 2012
Where is Joomla going and how do we get there? J and Beyond 2012Where is Joomla going and how do we get there? J and Beyond 2012
Where is Joomla going and how do we get there? J and Beyond 2012
 
Choosing Great Joomla Extensions
Choosing Great Joomla ExtensionsChoosing Great Joomla Extensions
Choosing Great Joomla Extensions
 

Último

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Último (20)

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
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
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
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
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
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
 
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
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
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
 

Bootstrap & Joomla UI

Notas del editor

  1. Why you want to be here
  2. 789px and below, 978 to 789, default
  3. These all have both the .btn plus the special class.
  4. These all have both the .btn plus the special class.
  5. 789px and below, 978 to 789, default
  6. 789px and below, 978 to 789, default