Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Responsive Images using <picture> and srcset/sizes
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Matt Steele
July 02, 2014
Programming
1
1.4k
Responsive Images using <picture> and srcset/sizes
Matt Steele
July 02, 2014
Tweet
Share
More Decks by Matt Steele
See All by Matt Steele
Upgrading to Angular 2 using ngUpgrade
mattdsteele
0
1.1k
Reactive Programming with RxJS
mattdsteele
0
110
GET TO THE CHOPVAR
mattdsteele
0
180
Using Source Maps in 2015
mattdsteele
0
970
The Decorator Pattern
mattdsteele
0
78
Diving Into the Device API
mattdsteele
1
810
Unit Testing JavaScript when you're Afraid of JavaScript
mattdsteele
3
760
What Zelda Taught Me about Front End Engineering
mattdsteele
5
1.1k
Other Decks in Programming
See All in Programming
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
12
6.6k
The Ralph Wiggum Loop: First Principles of Autonomous Development
sembayui
0
3.7k
API Platformを活用したPHPによる本格的なWeb API開発 / api-platform-book-intro
ttskch
1
110
Rails Girls Tokyo 18th GMO Pepabo Sponsor Talk
yutokyokutyo
0
180
Swift ConcurrencyでよりSwiftyに
yuukiw00w
0
220
要求定義・仕様記述・設計・検証の手引き - 理論から学ぶ明確で統一された成果物定義
orgachem
PRO
1
500
エージェント開発初心者の僕がエージェントを作った話と今後やりたいこと
thasu0123
0
220
JPUG勉強会 OSSデータベースの内部構造を理解しよう
oga5
2
220
クライアントワークでSREをするということ。あるいは事業会社におけるSREと同じこと・違うこと
nnaka2992
1
260
Go 1.26でのsliceのメモリアロケーション最適化 / Go 1.26 リリースパーティ #go126party
mazrean
1
310
ご飯食べながらエージェントが開発できる。そう、Agentic Engineeringならね。
yokomachi
1
270
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
320
Featured
See All Featured
SERP Conf. Vienna - Web Accessibility: Optimizing for Inclusivity and SEO
sarafernandez
1
1.3k
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.3k
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
280
Raft: Consensus for Rubyists
vanstee
141
7.3k
Designing for Performance
lara
611
70k
Deep Space Network (abreviated)
tonyrice
0
81
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
WENDY [Excerpt]
tessaabrams
9
36k
Stop Working from a Prison Cell
hatefulcrawdad
274
21k
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
860
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.6k
The #1 spot is gone: here's how to win anyway
tamaranovitovic
2
970
Transcript
Responsive Images @mattdsteele
THIS IS WHY YOU’RE FAT
We’ve put on a little weight.
http://httparchive.org/trends.php#bytesTotal&reqTotal
http://httparchive.org/trends.php#bytesTotal&reqTotal Total Page Weight File Size (KB) 1400 1550 1700
1850 July August September October NovemberDecember January February March April May June
http://httparchive.org/trends.php#bytesTotal&reqTotal Total Page Weight File Size (KB) 1400 1550 1700
1850 July August September October NovemberDecember January February March April May June 1485kb 1521kb 1551kb 1590kb 1614kb 1701kb 1681kb 1710kb 1728kb 1762kb 1775kb 1808kb
http://httparchive.org/interesting.php Bytes Per Page by Content Type
http://httparchive.org/interesting.php Images Bytes Per Page by Content Type
http://httparchive.org/interesting.php HTML Other Flash Stylesheets Scripts Images Bytes Per Page
by Content Type
RETINA- POCALYPSE
None
iPhone 3GS
320x480 iPhone 3GS
320x480 iPhone 3GS iPhone 4
320x480 640x960 (2x) iPhone 3GS iPhone 4
HTC One
1920x1080 (3x) HTC One
“Let’s make it responsive!”
Nexus 10
2560x1600 (2x) Nexus 10
2880x1800 (1.6x) MacBook Pro with Retina Display
None
None
None
320x213 41kb
320x213 41kb
320x213 41kb 640x425 137kb
None
1280x852 400kb
72% Responsive sites serve the same content to desktop &
mobile http://www.guypo.com/uncategorized/real-world-rwd-performance-take-2/
Ugh.
Shortcut: <SVG>
<img src="logo.svg">
9+ SVG
Grunticon github.com/filamentgroup/grunticon
"Vectors are for chumps. I need bitmaps."
None
<picture>
<picture> <img src="fallback.png"> </picture>
<picture> <source media="(min-width: 1000px)" srcset="large.png"> <source media="(min-width: 640px)" srcset="medium.png"> <img
src="fallback.png"> </picture>
<picture> <source media="(min-width: 1000px)" srcset="large.webp" type="image/webp"> <source media="(min-width: 1000px)" srcset="large.png">
<source media="(min-width: 640px)" srcset="medium.png"> <img src="fallback.png"> </picture>
None
None
None
Art Direction
<picture> 38 33 Under Consideration
None
None
Screen Size ⊆ What You Need
None
Viewport Size
Viewport Size Screen Density
Viewport Size Rendered Size Screen Density
Viewport Size Rendered Size Screen Density Image Dimensions
Viewport Size Rendered Size Screen Density Image Dimensions Browser knows?
Viewport Size Rendered Size Screen Density Image Dimensions Browser knows?
✓
Viewport Size Rendered Size Screen Density Image Dimensions Browser knows?
✓ ✓
Viewport Size Rendered Size Screen Density Image Dimensions Browser knows?
✓ ✓ ✗
Viewport Size Rendered Size Screen Density Image Dimensions Browser knows?
✓ ✓ ✗ ✗
Viewport Size Rendered Size Screen Density Image Dimensions
Viewport Size Rendered Size Screen Density Image Dimensions Author knows?
Viewport Size Rendered Size Screen Density Image Dimensions Author knows?
✗ ✗ ✓ ✓
srcset & sizes
Image dimensions srcset="large.jpg 1200w, medium.jpg 640w, small.jpg 320w"
Image dimensions URL srcset="large.jpg 1200w, medium.jpg 640w, small.jpg 320w"
Image dimensions Width URL srcset="large.jpg 1200w, medium.jpg 640w, small.jpg 320w"
Rendered Size sizes="(min-width: 1024px) 300px, (min-width: 640px) 50vw, 100vw"
Rendered Size For this MQ: sizes="(min-width: 1024px) 300px, (min-width: 640px)
50vw, 100vw"
Rendered Size For this MQ: Image renders this big sizes="(min-width:
1024px) 300px, (min-width: 640px) 50vw, 100vw"
Rendered Size For this MQ: Image renders this big Default
sizes="(min-width: 1024px) 300px, (min-width: 640px) 50vw, 100vw"
<img src="small.jpg" alt="A responsive image" srcset="large.jpg 1200w, medium.jpg 640w, small.jpg
320w" sizes="(min-width: 1024px) 300px, (min-width: 640px) 50vw, 100vw">
Screen Densities
Configurable
Configurable •HD Mode
Configurable •HD Mode •Speed Mode
Configurable •HD Mode •Speed Mode •Crappy Network Mode
srcset 32 Under Consideration
Fallbacks built-in
Or: Picturefill http://scottjehl.github.io/picturefill/
Go Forth And Get Skinny
@mattdsteele flic.kr/p/7TH4dc