SlideShare a Scribd company logo
THE BIG
PICTURE .
responsive
images
in action
PRESENTED BY MATTHIAS LAU
{
name: "Matthias Lau",
link: "http://laumatthias.de",
twitter: "@matthiaslau",
hometown: {
name: "Hamburg, Germany"
},
bio: "E-Commerce Freak and Web-Allrounder, love coding,
awesome internet concepts, Chrome, Web Frameworks, Evernote,
the Apple Multi-Touch Trackpad, Bouldering, Wikipedia and
Espresso.",
}
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
A LOT!
OPTIMIZED
THEY
!
FOR SMALL VIEWPORTS
LARGE IMAGES
STILL...
RESPONSIVE DESIGN
RESPONSIBLE
!
WANT!
WE
WHAT
IMAGES
OPTIMIZED
IMAGES
OPTIMIZED
IMAGES
OPTIMIZED
!
DIRECTION
ART
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
!
IMAGES
FAST
!
JAVASCRIPT
IT SHOULD
ALSO WORK WITHOUT
CACHING / CDN
<img	
  src="/img/funny-­‐cat.jpg">
!
CODE
SIMPLE
<object	
  data="data:image/svg+xml,%3Csvg
%20viewBox='0%200%20300%20329'%20preserveAspectRatio='xMidYMid
%20meet'%20xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3EIguazu%20Waterfalls%3C/
title%3E%3Cstyle%3Esvg%7Bbackground-­‐size:100%25%20auto;background-­‐repeat:no-­‐repeat;
%7D@media%20screen%20and%20(max-­‐width:300px)%7Bsvg%7Bbackground-­‐image:url(http://
localhost:8010/responsive_images/img/small.jpg);%7D%7D@media%20screen%20and%20(min-­‐
width:301px)%7Bsvg%7Bbackground-­‐image:url(http://localhost:8010/responsive_images/
img/medium.jpg);%7D%7D@media%20screen%20and%20(min-­‐width:601px)%7Bsvg%7Bbackground-­‐
image:url(http://localhost:8010/responsive_images/img/big.jpg);%7D%7D@media%20screen
%20and%20(min-­‐width:901px)%7Bsvg%7Bbackground-­‐image:url(http://localhost:8010/
responsive_images/img/huge.jpg);%7D%7D%3C/style%3E%3C/svg%3E"	
  type="image/svg+xml">	
  
	
  	
  	
  	
  <!-­‐-­‐	
  IE8	
  fallback	
  -­‐-­‐>	
  
	
  	
  	
  	
  <!-­‐-­‐[if	
  lte	
  IE	
  8]>	
  
	
  	
  	
  	
  <img	
  src="../img/medium.jpg"	
  alt="Iguazu	
  Waterfalls">	
  
	
  	
  	
  	
  <![endif]-­‐-­‐>	
  
</object>
!
ANYMORE
SIMPLE
NOT
TECHNIQUES
RESPONSIVE IMAGE
http://matthiaslau.github.io/responsive-images/
SVG´s
USE
BACKGROUNDS
CSS
BACKGROUNDSCSS
#iguazu	
  {	
  
	
  	
  	
  background-­‐image:	
  url(small.jpg);	
  
}	
  
@media	
  screen	
  and	
  (min-­‐width:	
  40em)	
  {	
  
	
  	
  	
  #iguazu	
  {	
  
	
  	
  	
  	
  	
  	
  background-­‐image:	
  url(medium.jpg);	
  
	
  	
  	
  }	
  
}
SIMPLE CODE
FAST
NOJS
CACHING / CDN
ART DIRECTION
IT IS A CSS IMAGE
<div	
  id="iguazu"	
  role="img"	
  aria-­‐label="Iguazu"></div>
ACCESSIBILITY
CARS
CLOWN
<img	
  src="iguazu.svg"	
  alt="Iguazu	
  Waterfalls">
<svg	
  xmlns='http://www.w3.org/2000/svg'>	
  
	
  	
  	
  <title>Iguazu	
  Waterfalls</title>	
  
	
  	
  	
  <style>	
  
	
  	
  	
  	
  	
  	
  @media	
  screen	
  and	
  (min-­‐width:21em){	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  svg{	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  background-­‐image:url(http://
matthiaslau.github.io/responsive-­‐images/img/medium.jpg);	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  }	
  
	
  	
  	
  	
  	
  	
  }	
  
	
  	
  	
  	
  	
  	
  @media	
  screen	
  and	
  (min-­‐width:40em){	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  […]	
  
	
  	
  	
  	
  	
  	
  }	
  
	
  	
  	
  </style>	
  
</svg>
<!-­‐-­‐	
  use	
  the	
  object	
  tag	
  for	
  maximal	
  browser	
  support	
  without	
  
security	
  drawbacks	
  -­‐-­‐>	
  
<!-­‐-­‐	
  put	
  the	
  SVG	
  data	
  inline	
  to	
  prevent	
  a	
  second	
  HTTP	
  
request	
  -­‐-­‐>	
  
<object	
  data="data:image/svg+xml,%3Csvg%20viewBox=[…]"	
  
type="image/svg+xml">	
  
	
  	
  	
  	
  <!-­‐-­‐	
  IE8	
  fallback	
  -­‐-­‐>	
  
	
  	
  	
  	
  <!-­‐-­‐[if	
  lte	
  IE	
  8]>	
  
	
  	
  	
  	
  <img	
  src="medium.jpg"	
  alt="Iguazu	
  Waterfalls">	
  
	
  	
  	
  	
  <![endif]-­‐-­‐>	
  
</object>
SIMPLE CODE
FAST
NOJS
CACHING / CDN
ART DIRECTION
ADAPTIVE IMAGES
RESS /
http://adaptive-images.com/
JS
Cookie
viewport width
.htaccess
image request
Scaling
Logic
best fitting image
Cookie
SIMPLE CODE
FAST
NOJS
CACHING / CDN
ART DIRECTION
RESIZING
SERVICES
http://src.sencha.io/320/200/http://[...]/huge-­‐hd.jpg
RESIZING
SERVICES
http://www.sencha.com/learn/how-to-use-src-sencha-io/
<script	
  src='http://src.sencha.io/screen.js'></script>	
  
!
<img	
  
	
  	
  	
  	
  src='http://src.sencha.io/wiw/http://[...]/huge-­‐
hd.jpg'	
  
	
  	
  	
  	
  alt='Iguazu	
  Waterfalls'	
  
	
  	
  	
  	
  />
RESIZING
SERVICES
SIMPLE CODE
FAST
NOJS
CACHING / CDN
ART DIRECTION
ELEMENT
PICTURE
SRCSET
+
<img	
  alt="Iguazu"	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  src="medium.jpg"	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  srcset="medium.jpg	
  1x,	
  medium-­‐2x.jpg	
  2x">
<picture>	
  
	
  	
  	
  	
  <source	
  media="(min-­‐width:	
  40em)"	
  src="medium.jpg">	
  
	
  	
  	
  	
  <!-­‐-­‐	
  fallback	
  img	
  -­‐-­‐>	
  
	
  	
  	
  	
  <img	
  src="medium.jpg"	
  alt="Iguazu">	
  
</picture>
<picture>	
  
	
  	
  	
  <source	
  media="(min-­‐width:	
  50em)"	
  
srcset="large.jpg	
  1x,	
  large-­‐2x.jpg	
  2x">	
  
	
  	
  	
  	
  <source	
  media="(min-­‐width:	
  40em)"	
  
srcset="medium.jpg	
  1x,	
  medium-­‐2x.jpg	
  2x">	
  
	
  	
  	
  	
  <source	
  srcset="small.jpg,	
  small-­‐2x.jpg	
  2x">	
  
	
  	
  	
  	
  <img	
  src="small.jpg"	
  alt="Iguazu">	
  
</picture>
THE FANCY STUFF
LET´S DO ALL
VIEWPORT SIZE
IS NOT BLOCK SIZE
excursion:
The Big Picture: Responsive Images in Action #scd14
<picture>	
  
	
  	
  <source	
  
	
  	
  	
  	
  sizes="(max-­‐width:	
  30em)	
  100vw,	
  (max-­‐width:	
  
50em)	
  50vw,	
  calc(33vw	
  -­‐	
  100px)"	
  
	
  	
  	
  	
  srcset="xsmall.jpg	
  100w,	
  small.jpg	
  200w,	
  
medium.jpg	
  400w,	
  large.jpg	
  800w,	
  huge.jpg	
  1600w,	
  
monster.jpg	
  3200w">	
  
	
  	
  <img	
  src="medium.jpg"	
  alt="Iguazu">	
  
</picture>
<3
SIMPLE CODE
FAST
NOJS
CACHING / CDN
ART DIRECTION
NO BROWSER
SUPPORT YET
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
PICTUREFILL
https://github.com/scottjehl/picturefill
SIMPLE CODE
FAST
NOJS
CACHING / CDN
ART DIRECTION
MORE
THERE IS EVEN
HiSRC
Foresight.js
Riloadr rwdImages
Retina.js
Responsive Enhance
Doubletake
Content Aware Resizing
https://docs.google.com/spreadsheet/ccc?key=0Al0lI17fOl9DdDgxTFVoRzFpV3VCdHk2NTBmdVI2OXc#gid=0
Mobify..js
WHAT?
a summary
NOW
„Don't click this if on a 3G
network, it probably take
forever, just check it out when
you get home.“
SOMETHING
USE
please
WHERE POSSIBLE CSS IMAGES
OTHER PICTUREFILL
+ SVG´s
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
CONTEXT-BASED
IMAGES
forecast:
IMAGES
E-COMMERCE
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
QUESTIONS?
http://twitter.com/matthiaslau
http://laumatthias.de/
https://www.xing.com/profile/Matthias_Lau
PROCESS
THE
with grunt
grunt
original
https://github.com/andismith/grunt-responsive-images
options:	
  {	
  
	
  	
  	
  sizes:	
  [	
  
	
  	
  	
  	
  	
  	
  {	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  name:	
  "s",	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  width:	
  320,	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  quality:	
  0.6	
  
	
  	
  	
  	
  	
  	
  },	
  
	
  	
  	
  	
  	
  	
  {	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  name:	
  "s",	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  suffix:	
  "x2",	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  width:	
  640,	
  
	
  	
  	
  	
  	
  	
  	
  	
  	
  quality:	
  0.6	
  
	
  	
  	
  	
  	
  	
  },	
  
	
   	
  	
  	
  […]	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  
	
  	
  	
  ]	
  
},
files:	
  [{	
  
	
  	
  	
  expand:	
  true,	
  
	
  	
  	
  cwd:	
  'img/',	
  
	
  	
  	
  src:	
  ['*.{jpg,gif,png}'],	
  
	
  	
  	
  dest:	
  'img/generated/'	
  
}]

More Related Content

PDF
The Big Picture: Responsive Images in Action #devcon13
PDF
[HEWEBFL] Adaptive Images in Responsive Web Design
PDF
[wcatx] Adaptive Images in Responsive Web Design
PDF
Responsive and Fast
PDF
Responsive Enhancement
PDF
[html5tx] Adaptive Images in Responsive Web Design
PDF
[wvbcn] Adaptive Images in Responsive Web Design
KEY
Sniffing the Mobile Context
The Big Picture: Responsive Images in Action #devcon13
[HEWEBFL] Adaptive Images in Responsive Web Design
[wcatx] Adaptive Images in Responsive Web Design
Responsive and Fast
Responsive Enhancement
[html5tx] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web Design
Sniffing the Mobile Context

What's hot (20)

KEY
Speed is Essential for a Great Web Experience
PDF
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
PDF
[peachpit] Adaptive Images in Responsive Web Design
PDF
[rwdsummit] Adaptive Images in Responsive Web Design
PDF
[Austin WordPress Meetup] Adaptive Images in Responsive Web Design
PPTX
Web Optimisation
PDF
[jqconatx] Adaptive Images for Responsive Web Design
PDF
New Rules of The Responsive Web
PDF
[funka] Adaptive Images in Responsive Web Design
PDF
[parisweb] Adaptive Images in Responsive Web Design
PDF
[refreshpitt] Adaptive Images in Responsive Web Design
PDF
PDF
High Performance Images
PDF
[edUi] HTML5 Workshop
PPTX
Vpn presentation richard kong
PDF
Proactive Responsive Design
PDF
[heweb11] HTML5 Makeover
PDF
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
PPTX
Geekspeak: Javascript
PDF
Get Ahead with HTML5 on Moible
Speed is Essential for a Great Web Experience
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[peachpit] Adaptive Images in Responsive Web Design
[rwdsummit] Adaptive Images in Responsive Web Design
[Austin WordPress Meetup] Adaptive Images in Responsive Web Design
Web Optimisation
[jqconatx] Adaptive Images for Responsive Web Design
New Rules of The Responsive Web
[funka] Adaptive Images in Responsive Web Design
[parisweb] Adaptive Images in Responsive Web Design
[refreshpitt] Adaptive Images in Responsive Web Design
High Performance Images
[edUi] HTML5 Workshop
Vpn presentation richard kong
Proactive Responsive Design
[heweb11] HTML5 Makeover
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
Geekspeak: Javascript
Get Ahead with HTML5 on Moible
Ad

Viewers also liked (20)

PPTX
Research Presentation: How Numbers are Powering the Next Era of Marketing
PPT
Where do images fit in the era of ‘Big Data’?
PPTX
What do Data Visualisations want?
PPT
an introduction to social media and research
PPTX
Cloud and Big Data Conference Images
PDF
A tailor-made one-size-fits-all approach to sentiment analysis
DOCX
Big Data has Big Problems
PDF
Big Data Handbook - 8 Juy 2013
PPT
Twitter analytics: some thoughts on sampling, tools, data, ethics and user re...
PPT
Picturing the Social: Talk for Transforming Digital Methods Winter School
PPT
ESRC Research Methods Festival - From Flickr to Snapchat: The challenge of an...
PDF
Are You Ready for the Era of Big Data and Extreme Information Management?
PDF
Efficient data reduction and analysis of DECam images using multicore archite...
PDF
Spark Summit - Watson Analytics for Social Media: From single tenant Hadoop t...
PPTX
Researching Social Media – Big Data and Social Media Analysis
PDF
Using Apache Solr for Images as Big Data: Presented by Kerry Koitzsch, Wipro...
PPTX
Whitepaper: Thriving in the Big Data era Manage Data before Data Manages you
PDF
Business Model Innovation: Designing and testing business model in a corporat...
PPT
Presentation Visual Aids V3
PDF
Big Data, Small Dashboard
Research Presentation: How Numbers are Powering the Next Era of Marketing
Where do images fit in the era of ‘Big Data’?
What do Data Visualisations want?
an introduction to social media and research
Cloud and Big Data Conference Images
A tailor-made one-size-fits-all approach to sentiment analysis
Big Data has Big Problems
Big Data Handbook - 8 Juy 2013
Twitter analytics: some thoughts on sampling, tools, data, ethics and user re...
Picturing the Social: Talk for Transforming Digital Methods Winter School
ESRC Research Methods Festival - From Flickr to Snapchat: The challenge of an...
Are You Ready for the Era of Big Data and Extreme Information Management?
Efficient data reduction and analysis of DECam images using multicore archite...
Spark Summit - Watson Analytics for Social Media: From single tenant Hadoop t...
Researching Social Media – Big Data and Social Media Analysis
Using Apache Solr for Images as Big Data: Presented by Kerry Koitzsch, Wipro...
Whitepaper: Thriving in the Big Data era Manage Data before Data Manages you
Business Model Innovation: Designing and testing business model in a corporat...
Presentation Visual Aids V3
Big Data, Small Dashboard
Ad

Similar to The Big Picture: Responsive Images in Action #scd14 (20)

PDF
Deliver perfect images at any size
PDF
Deliver Perfect Images At Any Size
PPTX
Iasi code camp 12 october 2013 responsive images in the wild-vlad zelinschi
PDF
Practical Responsive Images : from Breaking Borders
PPT
Responsive Images FCIP July 2013
PDF
Practical Responsive Images - from Second Wednesday
PDF
High Performance Images: Beautiful Shouldn't Mean Slow
PPTX
Images meet Web
PDF
Responsive images are here. Now what?
PDF
Responsive Image Strategies
PDF
2022.04 - CSS Day IT - Images Optimisation 4.0
PPTX
Fastandbeautiful yglf
PDF
Delivering Responsive Images
PPTX
Fastandbeautiful devdayseu
PPTX
Fastandbeautiful seattlevue
PPTX
Edi react fastandbeautiful
PPTX
Fastandbeautiful mobilewarsaw
PPTX
Level ofdetail
PPTX
Fastandbeautiful gdgtallinn
PPTX
Fastandbeautiful gdgtartu
Deliver perfect images at any size
Deliver Perfect Images At Any Size
Iasi code camp 12 october 2013 responsive images in the wild-vlad zelinschi
Practical Responsive Images : from Breaking Borders
Responsive Images FCIP July 2013
Practical Responsive Images - from Second Wednesday
High Performance Images: Beautiful Shouldn't Mean Slow
Images meet Web
Responsive images are here. Now what?
Responsive Image Strategies
2022.04 - CSS Day IT - Images Optimisation 4.0
Fastandbeautiful yglf
Delivering Responsive Images
Fastandbeautiful devdayseu
Fastandbeautiful seattlevue
Edi react fastandbeautiful
Fastandbeautiful mobilewarsaw
Level ofdetail
Fastandbeautiful gdgtallinn
Fastandbeautiful gdgtartu

Recently uploaded (20)

PDF
Encapsulation theory and applications.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPT
Teaching material agriculture food technology
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
A Presentation on Artificial Intelligence
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Approach and Philosophy of On baking technology
Encapsulation theory and applications.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
“AI and Expert System Decision Support & Business Intelligence Systems”
Teaching material agriculture food technology
Unlocking AI with Model Context Protocol (MCP)
Empathic Computing: Creating Shared Understanding
Understanding_Digital_Forensics_Presentation.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
A Presentation on Artificial Intelligence
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Building Integrated photovoltaic BIPV_UPV.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Digital-Transformation-Roadmap-for-Companies.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Approach and Philosophy of On baking technology

The Big Picture: Responsive Images in Action #scd14