SlideShare una empresa de Scribd logo
1 de 42
Descargar para leer sin conexión
Hello                                                     Responsive Web Design




This is a presentation on Responsive
Web Design




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




I am Dan Gavin.
I like design, beer, food, bikes and WordPress.




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




“ We can design for an optimal viewing
     experience, but embed standards-based
     technologies into our designs to make them
     not only more flexible, but more adaptive to
     the media that renders them.
     - Ethan Marcotte




     alistapart.com/articles/responsive-web-design             Buy



@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                              Responsive Web Design




Be responsive.




         Desktop                                          Mobile




Twenty Eleven Theme
twentyelevendemo.wordpress.com


@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                              Responsive Web Design




Be responsive.




         Desktop                                          Mobile




Jason Santa Maria
jasonsantamaria.com


@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                              Responsive Web Design




Be responsive.




         Desktop                                          Mobile




Jason Santa Maria
jasonsantamaria.com


@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                              Responsive Web Design




Be responsive.




         Desktop                                          Mobile




Russ Maschmeyer / Strange Native
strangenative.com


@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




What it takes to be responsive.




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




What it takes to be responsive.




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




What it takes to be responsive.




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




What it takes to be responsive.




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




What it really takes to be responsive.
•   Adaptive Grid System
•   Scalable Images / Video
•   Media Queries
•   Organization
•   Crying




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                      Responsive Web Design




Adaptive Grid Systems




             960.gs                                       1140 CSS Grid




             Golden Grid System                           12 Column Grid



@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                                      Responsive Web Design




Flexible Grids




             1140 CSS Grid                                      Less Framework




                                                                                 Content




             Fluid Grids - alistapart.com/articles/fluidgrids



@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




                                                 %
@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                        Responsive Web Design



                                                           940 px




                                                  700 px            220 px




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                        Responsive Web Design



                                                           940 px


                                                           100%




                                                  700 px            220 px




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                        Responsive Web Design



                                                           940 px


                                                           100%




                                            74.46808511%


                                               700 / 940




                                                  700 px            220 px




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                             Responsive Web Design



                                                           940 px


                                                           100%




                                            74.46808511%            23.40425535%

                                               700 / 940              220 / 940




                                                  700 px               220 px




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




What it really takes to be responsive.
•   Adaptive Grid System - ✓
•   Scalable Images / Video
•   Media Queries
•   Organization
•   Crying




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




Flexible Images




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




Flexible Images




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




“ The toughest challenge in implementing
     the responsive bits was fluid media. A lot of
     trial and error went into finding the right
     CSS solution, but what’s cool is we’ve been
     able to apply it to many more themes that
     we maintain on wordpress.com
     - Lance Willett




     simpledream.net/about



@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello




     /* Images */
     .entry-content img,
     .comment-content img,
     .widget img{
            max-width: 97.5%; /* Fluid images for posts, comments, and widgets */
     }
     img[class*=”align”],
     img[class*=”wp-image-”]{
            height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
     }
     img.size-full{
            max-width: 97.5%;
            width: auto; /* Prevent stretching of full-size images with height and width attributes in IE8 */
     }




@iamdangavin | iamdangavin@gmail.com
Hello                                                     Responsive Web Design




Flexible Media (Video)




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




Flexible Media (Video)




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello




     /* Media / Videos */
     object,
     embed,
     iframe{
           max-width: 100%; /* Make sure embeds fit their containers */
     }




@iamdangavin | iamdangavin@gmail.com
Hello




                                                  FitVid.js
                                                  A lightweight, easy-to-use jQuery plugin for fluid width video embeds.

                                                  Supports: YouTube, Vimeo, Blip.tv, Viddler, Kickstarter
                                                  * Add your own video vendors

Fitvid.js




     <script src=”path/to/jquery.min.js”></script>
     <script src=”path/to/jquery.fitvids.js”></script>

     <script>
           jQuery(document).ready(function(){
                 // Target your .container, .wrapper, .post, etc.
     
     
     jQuery(“#thing-with-videos”).fitVids();
           });
     </script>




@iamdangavin | iamdangavin@gmail.com
Hello                                                     Responsive Web Design




What it really takes to be responsive.
•   Adaptive Grid System - ✓
•   Scalable Images / Video - ✓
•   Media Queries
•   Organization
•   Crying




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                      Responsive Web Design




Media Queries
Think of it like conditional comments... But within CSS!




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello




@media
     /* Media = Smallerscreens */
     @media only screen and (max-width: 1023px){
         .your-style-here{ }
     }
     /* Media = iPad / Orientation: Landscape */
     @media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape){
         .your-style-here{ }
     }
     /* Media = iPad / Orientation: Portrait */
     @media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait){
         .your-style-here{ }
     }
     /* Media = Mobile / iPhone Orientation: Landscape */
     @media handheld, only screen and (max-width: 480px) and (orientation: landscape){
         .your-style-here{ }
     }
     /* Media = Mobile / Orientation: Portrait */
     @media handheld, only screen and (max-width: 480px) and (orientation: portrait){
         .your-style-here{ }
     }
     /* Media = Mobile / All others */
     @media handheld, only screen and (max-width: 767px){
         .your-style-here{ }
     }




@iamdangavin | iamdangavin@gmail.com
Hello                                                                          Responsive Web Design




CSS3 Media Queries
css3-mediaqueries.js is a JavaScript library to make IE 5+, Firefox 1+ and Safari 2
transparently parse, test and apply CSS3 Media Queries. Firefox 3.5+, Opera 7+,

Safari 3+ and Chrome already offer native support.




code.google.com/p/css3-mediaqueries-js/



@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                                      Responsive Web Design




Resources on Media Queries
•   w3.org/TR/css3-mediaqueries
•   coding.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-
    version-of-your-website/
•   css-tricks.com/css-media-queries/




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                              Responsive Web Design




Resources on Media Queries
•   abookapart.com/products/responsive-web-design
•   alistapart.com/articles/responsive-web-design/
•   alistapart.com/articles/fluidgrids/
•   coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




What it really takes to be responsive.
•   Adaptive Grid System - ✓
•   Scalable Images / Video - ✓
•   Media Queries - ✓
•   Organization
•   Crying




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello




Organization
     /* Media = iPhone*/
     <link rel="stylesheet" type="text/css" media="screen and (max-device-width: 480px)" href="mobile.css" />

     /* Media = iPad*/
     <link rel="stylesheet" type="text/css" media="screen and (max-device-width: 1024px)" href="tablet.css" />

     /* Media = Core*/
     <link rel="stylesheet" type="text/css" media="screen" href="style.css" />




@iamdangavin | iamdangavin@gmail.com
Hello                                                     Responsive Web Design




What it really takes to be responsive.
•   Adaptive Grid System - ✓
•   Scalable Images / Video - ✓
•   Media Queries - ✓
•   Organization - ✓
•   Crying




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




Crying




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




Crying




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




What it really takes to be responsive.
•   Adaptive Grid System - ✓
•   Scalable Images / Video - ✓
•   Media Queries - ✓
•   Organization - ✓
•   Crying - ✓




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                                Responsive Web Design




Responsive WordPress Themes




             Reveal                                       Infinity




             Suco



@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
Hello                                                     Responsive Web Design




Thank you.
Goodbye




@iamdangavin | iamdangavin@gmail.com | www.iamdangav.in

Más contenido relacionado

Destacado

WCCHS: Responsive Design with WordPress
WCCHS: Responsive Design with WordPressWCCHS: Responsive Design with WordPress
WCCHS: Responsive Design with WordPressJoe Casabona
 
Acessibilidade Web agora é obrigatória. Estamos preparados?
Acessibilidade Web agora é obrigatória. Estamos preparados?Acessibilidade Web agora é obrigatória. Estamos preparados?
Acessibilidade Web agora é obrigatória. Estamos preparados?Hans Mösl
 
Less js-&-wp
Less js-&-wpLess js-&-wp
Less js-&-wprfair404
 
BuddyPress @ WordCamp
BuddyPress @ WordCampBuddyPress @ WordCamp
BuddyPress @ WordCampapeatling
 
THE WORDPRESS DASHBOARD DEMYSTIFIED
THE WORDPRESS DASHBOARD DEMYSTIFIEDTHE WORDPRESS DASHBOARD DEMYSTIFIED
THE WORDPRESS DASHBOARD DEMYSTIFIEDBobWP.com
 
A Plugin For That presentation
A Plugin For That presentationA Plugin For That presentation
A Plugin For That presentationmarnafriedman
 
WordCamp Rio de Janeiro 2016 - Vinícius Lourenço | Lojas Virtuais Descomplica...
WordCamp Rio de Janeiro 2016 - Vinícius Lourenço | Lojas Virtuais Descomplica...WordCamp Rio de Janeiro 2016 - Vinícius Lourenço | Lojas Virtuais Descomplica...
WordCamp Rio de Janeiro 2016 - Vinícius Lourenço | Lojas Virtuais Descomplica...Vinícius Lourenço
 
WorryProof WordPress - Backup Strategies for Your Web Site
WorryProof WordPress - Backup Strategies for Your Web SiteWorryProof WordPress - Backup Strategies for Your Web Site
WorryProof WordPress - Backup Strategies for Your Web SiteNathan Ingram
 
Ecomm wp2014
Ecomm wp2014Ecomm wp2014
Ecomm wp2014Tom Nora
 
Ten Things You Should Know About WordPress
Ten Things You Should Know About WordPressTen Things You Should Know About WordPress
Ten Things You Should Know About WordPresssereedmedia
 
Website Performance, Engagement, and Leads
Website Performance, Engagement, and LeadsWebsite Performance, Engagement, and Leads
Website Performance, Engagement, and LeadsTrust EMedia
 
WordPress Security & Backups 101
WordPress Security & Backups 101WordPress Security & Backups 101
WordPress Security & Backups 101Maeve Lander
 
Adventures in Non-Profit Web Design
Adventures in Non-Profit Web DesignAdventures in Non-Profit Web Design
Adventures in Non-Profit Web DesignMelodie Laylor
 
Zazzy WordPress Navigation WordCamp Milwaukee
Zazzy WordPress Navigation WordCamp MilwaukeeZazzy WordPress Navigation WordCamp Milwaukee
Zazzy WordPress Navigation WordCamp MilwaukeeRachel Baker
 

Destacado (16)

WCCHS: Responsive Design with WordPress
WCCHS: Responsive Design with WordPressWCCHS: Responsive Design with WordPress
WCCHS: Responsive Design with WordPress
 
Caching 101 - WordCamp OC
Caching 101 - WordCamp OCCaching 101 - WordCamp OC
Caching 101 - WordCamp OC
 
Acessibilidade Web agora é obrigatória. Estamos preparados?
Acessibilidade Web agora é obrigatória. Estamos preparados?Acessibilidade Web agora é obrigatória. Estamos preparados?
Acessibilidade Web agora é obrigatória. Estamos preparados?
 
Less js-&-wp
Less js-&-wpLess js-&-wp
Less js-&-wp
 
BuddyPress @ WordCamp
BuddyPress @ WordCampBuddyPress @ WordCamp
BuddyPress @ WordCamp
 
THE WORDPRESS DASHBOARD DEMYSTIFIED
THE WORDPRESS DASHBOARD DEMYSTIFIEDTHE WORDPRESS DASHBOARD DEMYSTIFIED
THE WORDPRESS DASHBOARD DEMYSTIFIED
 
A Plugin For That presentation
A Plugin For That presentationA Plugin For That presentation
A Plugin For That presentation
 
WordCamp Rio de Janeiro 2016 - Vinícius Lourenço | Lojas Virtuais Descomplica...
WordCamp Rio de Janeiro 2016 - Vinícius Lourenço | Lojas Virtuais Descomplica...WordCamp Rio de Janeiro 2016 - Vinícius Lourenço | Lojas Virtuais Descomplica...
WordCamp Rio de Janeiro 2016 - Vinícius Lourenço | Lojas Virtuais Descomplica...
 
WorryProof WordPress - Backup Strategies for Your Web Site
WorryProof WordPress - Backup Strategies for Your Web SiteWorryProof WordPress - Backup Strategies for Your Web Site
WorryProof WordPress - Backup Strategies for Your Web Site
 
Ecomm wp2014
Ecomm wp2014Ecomm wp2014
Ecomm wp2014
 
Ten Things You Should Know About WordPress
Ten Things You Should Know About WordPressTen Things You Should Know About WordPress
Ten Things You Should Know About WordPress
 
Website Performance, Engagement, and Leads
Website Performance, Engagement, and LeadsWebsite Performance, Engagement, and Leads
Website Performance, Engagement, and Leads
 
WordPress Security & Backups 101
WordPress Security & Backups 101WordPress Security & Backups 101
WordPress Security & Backups 101
 
Adventures in Non-Profit Web Design
Adventures in Non-Profit Web DesignAdventures in Non-Profit Web Design
Adventures in Non-Profit Web Design
 
Zazzy WordPress Navigation WordCamp Milwaukee
Zazzy WordPress Navigation WordCamp MilwaukeeZazzy WordPress Navigation WordCamp Milwaukee
Zazzy WordPress Navigation WordCamp Milwaukee
 
Wcoc preso
Wcoc presoWcoc preso
Wcoc preso
 

Último

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
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...Drew Madelung
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
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
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
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
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
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
 
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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
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
 
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
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
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
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 

Último (20)

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
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...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
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...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
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
 
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...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
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
 
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
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
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
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 

Responsive Web Design & WordPress

  • 1. Hello Responsive Web Design This is a presentation on Responsive Web Design @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 2. Hello Responsive Web Design I am Dan Gavin. I like design, beer, food, bikes and WordPress. @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 3. Hello Responsive Web Design “ We can design for an optimal viewing experience, but embed standards-based technologies into our designs to make them not only more flexible, but more adaptive to the media that renders them. - Ethan Marcotte alistapart.com/articles/responsive-web-design Buy @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 4. Hello Responsive Web Design Be responsive. Desktop Mobile Twenty Eleven Theme twentyelevendemo.wordpress.com @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 5. Hello Responsive Web Design Be responsive. Desktop Mobile Jason Santa Maria jasonsantamaria.com @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 6. Hello Responsive Web Design Be responsive. Desktop Mobile Jason Santa Maria jasonsantamaria.com @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 7. Hello Responsive Web Design Be responsive. Desktop Mobile Russ Maschmeyer / Strange Native strangenative.com @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 8. Hello Responsive Web Design What it takes to be responsive. @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 9. Hello Responsive Web Design What it takes to be responsive. @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 10. Hello Responsive Web Design What it takes to be responsive. @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 11. Hello Responsive Web Design What it takes to be responsive. @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 12. Hello Responsive Web Design What it really takes to be responsive. • Adaptive Grid System • Scalable Images / Video • Media Queries • Organization • Crying @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 13. Hello Responsive Web Design Adaptive Grid Systems 960.gs 1140 CSS Grid Golden Grid System 12 Column Grid @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 14. Hello Responsive Web Design Flexible Grids 1140 CSS Grid Less Framework Content Fluid Grids - alistapart.com/articles/fluidgrids @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 15. Hello Responsive Web Design % @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 16. Hello Responsive Web Design 940 px 700 px 220 px @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 17. Hello Responsive Web Design 940 px 100% 700 px 220 px @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 18. Hello Responsive Web Design 940 px 100% 74.46808511% 700 / 940 700 px 220 px @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 19. Hello Responsive Web Design 940 px 100% 74.46808511% 23.40425535% 700 / 940 220 / 940 700 px 220 px @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 20. Hello Responsive Web Design What it really takes to be responsive. • Adaptive Grid System - ✓ • Scalable Images / Video • Media Queries • Organization • Crying @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 21. Hello Responsive Web Design Flexible Images @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 22. Hello Responsive Web Design Flexible Images @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 23. Hello Responsive Web Design “ The toughest challenge in implementing the responsive bits was fluid media. A lot of trial and error went into finding the right CSS solution, but what’s cool is we’ve been able to apply it to many more themes that we maintain on wordpress.com - Lance Willett simpledream.net/about @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 24. Hello /* Images */ .entry-content img, .comment-content img, .widget img{ max-width: 97.5%; /* Fluid images for posts, comments, and widgets */ } img[class*=”align”], img[class*=”wp-image-”]{ height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */ } img.size-full{ max-width: 97.5%; width: auto; /* Prevent stretching of full-size images with height and width attributes in IE8 */ } @iamdangavin | iamdangavin@gmail.com
  • 25. Hello Responsive Web Design Flexible Media (Video) @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 26. Hello Responsive Web Design Flexible Media (Video) @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 27. Hello /* Media / Videos */ object, embed, iframe{ max-width: 100%; /* Make sure embeds fit their containers */ } @iamdangavin | iamdangavin@gmail.com
  • 28. Hello FitVid.js A lightweight, easy-to-use jQuery plugin for fluid width video embeds. Supports: YouTube, Vimeo, Blip.tv, Viddler, Kickstarter * Add your own video vendors Fitvid.js <script src=”path/to/jquery.min.js”></script> <script src=”path/to/jquery.fitvids.js”></script> <script> jQuery(document).ready(function(){ // Target your .container, .wrapper, .post, etc. jQuery(“#thing-with-videos”).fitVids(); }); </script> @iamdangavin | iamdangavin@gmail.com
  • 29. Hello Responsive Web Design What it really takes to be responsive. • Adaptive Grid System - ✓ • Scalable Images / Video - ✓ • Media Queries • Organization • Crying @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 30. Hello Responsive Web Design Media Queries Think of it like conditional comments... But within CSS! @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 31. Hello @media /* Media = Smallerscreens */ @media only screen and (max-width: 1023px){ .your-style-here{ } } /* Media = iPad / Orientation: Landscape */ @media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape){ .your-style-here{ } } /* Media = iPad / Orientation: Portrait */ @media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait){ .your-style-here{ } } /* Media = Mobile / iPhone Orientation: Landscape */ @media handheld, only screen and (max-width: 480px) and (orientation: landscape){ .your-style-here{ } } /* Media = Mobile / Orientation: Portrait */ @media handheld, only screen and (max-width: 480px) and (orientation: portrait){ .your-style-here{ } } /* Media = Mobile / All others */ @media handheld, only screen and (max-width: 767px){ .your-style-here{ } } @iamdangavin | iamdangavin@gmail.com
  • 32. Hello Responsive Web Design CSS3 Media Queries css3-mediaqueries.js is a JavaScript library to make IE 5+, Firefox 1+ and Safari 2 transparently parse, test and apply CSS3 Media Queries. Firefox 3.5+, Opera 7+, Safari 3+ and Chrome already offer native support. code.google.com/p/css3-mediaqueries-js/ @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 33. Hello Responsive Web Design Resources on Media Queries • w3.org/TR/css3-mediaqueries • coding.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile- version-of-your-website/ • css-tricks.com/css-media-queries/ @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 34. Hello Responsive Web Design Resources on Media Queries • abookapart.com/products/responsive-web-design • alistapart.com/articles/responsive-web-design/ • alistapart.com/articles/fluidgrids/ • coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/ @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 35. Hello Responsive Web Design What it really takes to be responsive. • Adaptive Grid System - ✓ • Scalable Images / Video - ✓ • Media Queries - ✓ • Organization • Crying @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 36. Hello Organization /* Media = iPhone*/ <link rel="stylesheet" type="text/css" media="screen and (max-device-width: 480px)" href="mobile.css" /> /* Media = iPad*/ <link rel="stylesheet" type="text/css" media="screen and (max-device-width: 1024px)" href="tablet.css" /> /* Media = Core*/ <link rel="stylesheet" type="text/css" media="screen" href="style.css" /> @iamdangavin | iamdangavin@gmail.com
  • 37. Hello Responsive Web Design What it really takes to be responsive. • Adaptive Grid System - ✓ • Scalable Images / Video - ✓ • Media Queries - ✓ • Organization - ✓ • Crying @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 38. Hello Responsive Web Design Crying @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 39. Hello Responsive Web Design Crying @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 40. Hello Responsive Web Design What it really takes to be responsive. • Adaptive Grid System - ✓ • Scalable Images / Video - ✓ • Media Queries - ✓ • Organization - ✓ • Crying - ✓ @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 41. Hello Responsive Web Design Responsive WordPress Themes Reveal Infinity Suco @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in
  • 42. Hello Responsive Web Design Thank you. Goodbye @iamdangavin | iamdangavin@gmail.com | www.iamdangav.in

Notas del editor

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n