SlideShare une entreprise Scribd logo
1  sur  27
Télécharger pour lire hors ligne
The web
Lat55 meetup, Malmö, Sweden. October 3:rd, 2013, Foo Café.
Who am I
Patric Lanhed
LBi
Malmö
@flashpatric
flashpatric@gmail.com
+46709412883
Curious and creative developer who loves to
experiment with new technology
Front-end developer at LBi in Malmö
User group manager of Lat55
Workout and bicycle addict
Target audience
Developers
Good to know about the
different techniques. What to
expect to work now and in the
future
Designers
Knowing where to require
high resolution images, and
where not to!
Content managers
Knowing the requirements in
advance will secure the work
flow where CMS will fail
RETINA, RESPONSIVE
IMAGES, XHDPI,
ADAPTIVE IMAGES,
UHDMI,@2X
High resolution techniques
Full control
Adaptive images
Lo-res images load first, hi-res
loads if needed
srcset-attribute / image-set()
<picture>-element
Browser scaling high dpi
images
Partial control
SVG
Icon fonts
Media queries for background
images
No control
Trust in cellular network
optimizations
Don't bother
•  Server-side solution or as
a cloud service acting
proxy
•  Serve the client with
adapted images
•  Example of services/
tools:
Adaptive Images
§  Sencha.io Image service
§  Adaptive Images
•  Client-side solution
•  Client asks for a hi-res
image if it support higher
resolutions
•  Needs to do two requests
•  Example of libs/tools
Lo-res images
load first, hi-res
loads if needed
§  Retina.js
§  Retina Images
srcset-attribute
•  Serves the client with a
picture based on
resolution and viewport
•  Can have several
different descriptors
•  A descriptor can be
either a pixel value of
maximum viewport width
or height of CSS pixels,
described as ex 100w or
100h, or with a modifier
such as 2x
image-set()
•  image-set() works like
the srcset attribute, but
in CSS in addition to the
background-image
property
<picture>-element
•  Serves the client with a
picture based on media
tests
•  Can also be used with the
srcset-attribute
•  Fallbacks to <img> if not
supported
•  Currently no support in
any browser, but there's
polyfills
Browser scaling
high dpi images
•  % is spent in
bandwidth downloading
images
•  Smaller file sizes, more
crisp and better quality
•  Time consuming
•  WebP image format
•  The CSS image()
notation
Jpg compression 80/13kb Jpg compression 40/13 kb (the same
size as the base)
Jpg compression 80/30 kb Jpg compression 31/30 kb (the same
size as the base)
60
Scalable Vector
Graphics
•  XML-based, can be
used for animation
•  Good browser
support
•  No need to vectorize
bitmap images
Icon fonts
•  Use instead of icon
images
•  Accessibility issues
•  Example of services:
§  IcoMoon
§  Pictos
§  Font Squirrel
§  Symbolset
Media queries
•  Media queries actually
works very well
•  You can’t control inline
images with it
Trust in cellular
network
optimizations
http://flashpatric.com/image-compression-results/
asdfasdf
•  Cellular network operator
compress the hell out of
the images
•  Not being done by the
operators in Sweden
•  Opera Mini has a “Turbo”
option, compressing
images in favor for fast
pageloads
h"p://flashpatric.com/image-­‐compression-­‐results/	
  
The simple solution
–”Don’t bother”.
DIRECTION
Where are
we heading?!
•  Telia Mobil Total
Mellan 4G dataplan
•  3Gb free data traffic
•  4k movie ~100Gb
•  Cost: 4800 SEK
CONCLUSION
THECHILDHOOD
Growing up is
never easy
BANDWIDTH
Downloading a hi-
res image over an
Edge/2G network
will take forever!
Use the browser
scaling technique
to avoid heavy
downloads.
WEBFONTS
Use webfonts
where appliciable
MEDIAQUERIES
Use media queries
to target high dpi
screens for hero
images
Writings on the topic, could be relevant to one or more parts
http://alistapart.com/article/mo-pixels-mo-problems
http://daverupert.com/2013/06/ughck-images/
http://dbushell.com/2013/06/03/the-raster-image-paradox/
http://coding.smashingmagazine.com/2013/06/02/clown-car-technique-solving-for-
adaptive-images-in-responsive-web-design/
http://boagworld.com/dev/how-should-we-handle-responsive-images/
http://www.renaissance-design.net/outrunning-the-bear-the-problem-with-
responsive-images/
http://blog.netvlies.nl/design-interactie/retina-revolutie-follow-up/
http://www.html5rocks.com/en/mobile/easy-high-dpi-images/
http://filamentgroup.com/lab/rwd_img_compression/
http://www.html5rocks.com/en/mobile/high-dpi/
http://www.bypeople.com/web-design-trends-2013/
http://borismus.github.io/image-zoom/
http://benfrain.com/how-to-serve-high-resolution-website-images-for-retina-
displays-new-ipadiphone4/
http://html5doctor.com/html5-adaptive-images-end-of-round-one/
http://manyangl.es/2013/02/implementing-retina-ready-images-on-the-web
Screen casts on the topic, could be relevant to one or more parts
http://tv.adobe.com/watch/max-2013/web-graphics-and-the-creative-professional/
https://experts.adobeconnect.com/_a204547676/p54d4dwyr6v/
Presentations
https://speakerdeck.com/ddemaree/designing-the-hi-dpi-web
https://speakerdeck.com/davatron5000/mo-pixels-mo-problems
WebFonts
http://vimeo.com/33154573
http://icomoon.io/app/
http://pictos.cc/
http://www.fontsquirrel.com/
http://symbolset.com/
http://www.nczonline.net/blog/2013/04/01/making-accessible-icon-buttons/
<picture>, srcset, image-set()
http://www.w3.org/TR/html-picture-element/#the-picture-element
http://www.webmonkey.com/2012/11/preview-the-proposed-html-picture-element/
http://www.w3.org/html/wg/drafts/srcset/w3c-srcset/
http://responsiveimagescg.github.io/picture-refimp/demo/
https://www.webkit.org/blog/2910/improved-support-for-high-resolution-displays-
with-the-srcset-image-attribute/
SVG
http://www.w3.org/TR/2013/WD-filter-effects-20130523/
http://docs.webplatform.org/wiki/svg
http://caniuse.com/#search=svg
CSS
http://css-tricks.com/snippets/css/retina-display-media-query/
http://blog.cloudfour.com/safari-6-and-chrome-21-add-image-set-to-support-
retina-images/
http://www.w3.org/TR/css3-images/#image-notation
Tools/scripts for Adaptive images
https://docs.google.com/spreadsheet/ccc?
key=0Al0lI17fOl9DdDgxTFVoRzFpV3VCdHk2NTBmdVI2OXc#gid=0
http://retinajs.com/
http://adaptive-images.com/
http://retina-images.complexcompulsions.com/
http://docs.sencha.io/current/index.html#!/guide/src
http://mcilvena.com/articles/jquery-retina/
https://github.com/scottjehl/picturefill
https://github.com/teleject/hisrc
http://www.igvita.com/2013/08/29/automating-dpr-switching-with-client-hints/
Device pixel ratio
http://www.quirksmode.org/blog/archives/2012/06/devicepixelrati.html
http://www.quirksmode.org/blog/archives/2012/07/more_about_devi.html
List of displays by pixel density
http://en.wikipedia.org/wiki/List_of_displays_by_pixel_density
http://screensiz.es/
WebP
http://caniuse.com/#feat=webp
Image optimization
http://imageoptim.com/
http://x128.ho.ua/color-quantizer.html
http://mistermorris.tumblr.com/post/20002250192/upscaling-raster-bitmap-
images-for-retina
http://www.opera.com/turbo
Sources
QUESTIONS
@flashpatric
flashpatric@gmail.com
Thank you

Contenu connexe

En vedette

Från Flash till Canvas - en förkärlek till svarta hål
Från Flash till Canvas - en förkärlek till svarta hålFrån Flash till Canvas - en förkärlek till svarta hål
Från Flash till Canvas - en förkärlek till svarta hålPatric Lanhed
 
From Flash to Canvas - a penchant for black holes
From Flash to Canvas - a penchant for black holesFrom Flash to Canvas - a penchant for black holes
From Flash to Canvas - a penchant for black holesPatric Lanhed
 
Mobilapp på 30 minuter
Mobilapp på 30 minuterMobilapp på 30 minuter
Mobilapp på 30 minuterPatric Lanhed
 
Pioneers Festival 2014
Pioneers Festival 2014Pioneers Festival 2014
Pioneers Festival 2014Patric Lanhed
 
Successful OTC Branding for a demanding consumer audience in 2012
Successful OTC Branding for a demanding consumer audience in 2012Successful OTC Branding for a demanding consumer audience in 2012
Successful OTC Branding for a demanding consumer audience in 2012Design Bridge
 

En vedette (8)

Från Flash till Canvas - en förkärlek till svarta hål
Från Flash till Canvas - en förkärlek till svarta hålFrån Flash till Canvas - en förkärlek till svarta hål
Från Flash till Canvas - en förkärlek till svarta hål
 
From Flash to Canvas - a penchant for black holes
From Flash to Canvas - a penchant for black holesFrom Flash to Canvas - a penchant for black holes
From Flash to Canvas - a penchant for black holes
 
Mobilapp på 30 minuter
Mobilapp på 30 minuterMobilapp på 30 minuter
Mobilapp på 30 minuter
 
Pioneers Festival 2014
Pioneers Festival 2014Pioneers Festival 2014
Pioneers Festival 2014
 
NFC Power
NFC PowerNFC Power
NFC Power
 
Successful OTC Branding for a demanding consumer audience in 2012
Successful OTC Branding for a demanding consumer audience in 2012Successful OTC Branding for a demanding consumer audience in 2012
Successful OTC Branding for a demanding consumer audience in 2012
 
Firebase
FirebaseFirebase
Firebase
 
The Upgraded Human
 The Upgraded Human The Upgraded Human
The Upgraded Human
 

Similaire à The high resolution web

PAC 2019 virtual Mark Tomlinson
PAC 2019 virtual Mark TomlinsonPAC 2019 virtual Mark Tomlinson
PAC 2019 virtual Mark TomlinsonNeotys
 
Responsive Images and Performance
Responsive Images and PerformanceResponsive Images and Performance
Responsive Images and PerformanceMaximiliano Firtman
 
Automated perf optimization - jQuery Conference
Automated perf optimization - jQuery ConferenceAutomated perf optimization - jQuery Conference
Automated perf optimization - jQuery ConferenceMatthew Lancaster
 
Images blast off at the speed of Jamstack! - Alba Silvente Fuentes
Images blast off at the speed of Jamstack! - Alba Silvente FuentesImages blast off at the speed of Jamstack! - Alba Silvente Fuentes
Images blast off at the speed of Jamstack! - Alba Silvente FuentesWey Wey Web
 
Castro Chapter 5
Castro Chapter 5Castro Chapter 5
Castro Chapter 5Jeff Byrnes
 
How To Start A Web Design Business
How To Start A Web Design BusinessHow To Start A Web Design Business
How To Start A Web Design BusinessRob Cubbon
 
FITC - Exploring Art-Directed Responsive Images
FITC - Exploring Art-Directed Responsive ImagesFITC - Exploring Art-Directed Responsive Images
FITC - Exploring Art-Directed Responsive ImagesRami Sayar
 
From HTML to pixels on the Screen
From HTML to pixels on the ScreenFrom HTML to pixels on the Screen
From HTML to pixels on the ScreenIgor Talic
 
Image optimization and you
Image optimization and youImage optimization and you
Image optimization and youJohannes Siipola
 
File types pro forma(1)
File types pro forma(1)File types pro forma(1)
File types pro forma(1)joe cole
 
5 Steps To Deliver The Fastest Mobile Shopping Experience This Holiday Season
5 Steps To Deliver The Fastest Mobile Shopping Experience This Holiday Season5 Steps To Deliver The Fastest Mobile Shopping Experience This Holiday Season
5 Steps To Deliver The Fastest Mobile Shopping Experience This Holiday SeasonG3 Communications
 
Speed up your site! #wcmtl2015 by Meagan Hanes
Speed up your site! #wcmtl2015 by Meagan HanesSpeed up your site! #wcmtl2015 by Meagan Hanes
Speed up your site! #wcmtl2015 by Meagan HanesMeagan Hanes
 
File types pro forma
File types pro formaFile types pro forma
File types pro formaJessStanton_
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesVitaly Friedman
 
Optimized Media Management in the Cloud: Automating Digital Media Workflows p...
Optimized Media Management in the Cloud: Automating Digital Media Workflows p...Optimized Media Management in the Cloud: Automating Digital Media Workflows p...
Optimized Media Management in the Cloud: Automating Digital Media Workflows p...Amazon Web Services
 

Similaire à The high resolution web (20)

PAC 2019 virtual Mark Tomlinson
PAC 2019 virtual Mark TomlinsonPAC 2019 virtual Mark Tomlinson
PAC 2019 virtual Mark Tomlinson
 
Unit 78 technical file
Unit 78 technical fileUnit 78 technical file
Unit 78 technical file
 
Responsive Images and Performance
Responsive Images and PerformanceResponsive Images and Performance
Responsive Images and Performance
 
Automated perf optimization - jQuery Conference
Automated perf optimization - jQuery ConferenceAutomated perf optimization - jQuery Conference
Automated perf optimization - jQuery Conference
 
Images blast off at the speed of Jamstack! - Alba Silvente Fuentes
Images blast off at the speed of Jamstack! - Alba Silvente FuentesImages blast off at the speed of Jamstack! - Alba Silvente Fuentes
Images blast off at the speed of Jamstack! - Alba Silvente Fuentes
 
File types.
File types.File types.
File types.
 
Castro Chapter 5
Castro Chapter 5Castro Chapter 5
Castro Chapter 5
 
How To Start A Web Design Business
How To Start A Web Design BusinessHow To Start A Web Design Business
How To Start A Web Design Business
 
FITC - Exploring Art-Directed Responsive Images
FITC - Exploring Art-Directed Responsive ImagesFITC - Exploring Art-Directed Responsive Images
FITC - Exploring Art-Directed Responsive Images
 
From HTML to pixels on the Screen
From HTML to pixels on the ScreenFrom HTML to pixels on the Screen
From HTML to pixels on the Screen
 
imgproxy is amazing
imgproxy is amazingimgproxy is amazing
imgproxy is amazing
 
Image optimization and you
Image optimization and youImage optimization and you
Image optimization and you
 
File types pro forma(1)
File types pro forma(1)File types pro forma(1)
File types pro forma(1)
 
5 Steps To Deliver The Fastest Mobile Shopping Experience This Holiday Season
5 Steps To Deliver The Fastest Mobile Shopping Experience This Holiday Season5 Steps To Deliver The Fastest Mobile Shopping Experience This Holiday Season
5 Steps To Deliver The Fastest Mobile Shopping Experience This Holiday Season
 
performance.ppt
performance.pptperformance.ppt
performance.ppt
 
Speed up your site! #wcmtl2015 by Meagan Hanes
Speed up your site! #wcmtl2015 by Meagan HanesSpeed up your site! #wcmtl2015 by Meagan Hanes
Speed up your site! #wcmtl2015 by Meagan Hanes
 
File types pro forma
File types pro formaFile types pro forma
File types pro forma
 
Web Performance Optimization (WPO)
Web Performance Optimization (WPO)Web Performance Optimization (WPO)
Web Performance Optimization (WPO)
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and Techniques
 
Optimized Media Management in the Cloud: Automating Digital Media Workflows p...
Optimized Media Management in the Cloud: Automating Digital Media Workflows p...Optimized Media Management in the Cloud: Automating Digital Media Workflows p...
Optimized Media Management in the Cloud: Automating Digital Media Workflows p...
 

Dernier

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?Igalia
 
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
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
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 Processorsdebabhi2
 
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
 
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
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
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
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
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...Martijn de Jong
 
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 Scriptwesley chun
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
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
 
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
 

Dernier (20)

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?
 
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
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
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
 
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
 
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 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
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
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 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...
 
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
 

The high resolution web

  • 1. The web Lat55 meetup, Malmö, Sweden. October 3:rd, 2013, Foo Café.
  • 2. Who am I Patric Lanhed LBi Malmö @flashpatric flashpatric@gmail.com +46709412883 Curious and creative developer who loves to experiment with new technology Front-end developer at LBi in Malmö User group manager of Lat55 Workout and bicycle addict
  • 3. Target audience Developers Good to know about the different techniques. What to expect to work now and in the future Designers Knowing where to require high resolution images, and where not to! Content managers Knowing the requirements in advance will secure the work flow where CMS will fail
  • 5. High resolution techniques Full control Adaptive images Lo-res images load first, hi-res loads if needed srcset-attribute / image-set() <picture>-element Browser scaling high dpi images Partial control SVG Icon fonts Media queries for background images No control Trust in cellular network optimizations Don't bother
  • 6. •  Server-side solution or as a cloud service acting proxy •  Serve the client with adapted images •  Example of services/ tools: Adaptive Images §  Sencha.io Image service §  Adaptive Images
  • 7. •  Client-side solution •  Client asks for a hi-res image if it support higher resolutions •  Needs to do two requests •  Example of libs/tools Lo-res images load first, hi-res loads if needed §  Retina.js §  Retina Images
  • 8. srcset-attribute •  Serves the client with a picture based on resolution and viewport •  Can have several different descriptors •  A descriptor can be either a pixel value of maximum viewport width or height of CSS pixels, described as ex 100w or 100h, or with a modifier such as 2x
  • 9. image-set() •  image-set() works like the srcset attribute, but in CSS in addition to the background-image property
  • 10. <picture>-element •  Serves the client with a picture based on media tests •  Can also be used with the srcset-attribute •  Fallbacks to <img> if not supported •  Currently no support in any browser, but there's polyfills
  • 11. Browser scaling high dpi images •  % is spent in bandwidth downloading images •  Smaller file sizes, more crisp and better quality •  Time consuming •  WebP image format •  The CSS image() notation Jpg compression 80/13kb Jpg compression 40/13 kb (the same size as the base) Jpg compression 80/30 kb Jpg compression 31/30 kb (the same size as the base) 60
  • 12. Scalable Vector Graphics •  XML-based, can be used for animation •  Good browser support •  No need to vectorize bitmap images
  • 13. Icon fonts •  Use instead of icon images •  Accessibility issues •  Example of services: §  IcoMoon §  Pictos §  Font Squirrel §  Symbolset
  • 14. Media queries •  Media queries actually works very well •  You can’t control inline images with it
  • 15. Trust in cellular network optimizations http://flashpatric.com/image-compression-results/ asdfasdf •  Cellular network operator compress the hell out of the images •  Not being done by the operators in Sweden •  Opera Mini has a “Turbo” option, compressing images in favor for fast pageloads h"p://flashpatric.com/image-­‐compression-­‐results/  
  • 17. DIRECTION Where are we heading?! •  Telia Mobil Total Mellan 4G dataplan •  3Gb free data traffic •  4k movie ~100Gb •  Cost: 4800 SEK
  • 18.
  • 19.
  • 22. BANDWIDTH Downloading a hi- res image over an Edge/2G network will take forever! Use the browser scaling technique to avoid heavy downloads.
  • 24. MEDIAQUERIES Use media queries to target high dpi screens for hero images
  • 25. Writings on the topic, could be relevant to one or more parts http://alistapart.com/article/mo-pixels-mo-problems http://daverupert.com/2013/06/ughck-images/ http://dbushell.com/2013/06/03/the-raster-image-paradox/ http://coding.smashingmagazine.com/2013/06/02/clown-car-technique-solving-for- adaptive-images-in-responsive-web-design/ http://boagworld.com/dev/how-should-we-handle-responsive-images/ http://www.renaissance-design.net/outrunning-the-bear-the-problem-with- responsive-images/ http://blog.netvlies.nl/design-interactie/retina-revolutie-follow-up/ http://www.html5rocks.com/en/mobile/easy-high-dpi-images/ http://filamentgroup.com/lab/rwd_img_compression/ http://www.html5rocks.com/en/mobile/high-dpi/ http://www.bypeople.com/web-design-trends-2013/ http://borismus.github.io/image-zoom/ http://benfrain.com/how-to-serve-high-resolution-website-images-for-retina- displays-new-ipadiphone4/ http://html5doctor.com/html5-adaptive-images-end-of-round-one/ http://manyangl.es/2013/02/implementing-retina-ready-images-on-the-web Screen casts on the topic, could be relevant to one or more parts http://tv.adobe.com/watch/max-2013/web-graphics-and-the-creative-professional/ https://experts.adobeconnect.com/_a204547676/p54d4dwyr6v/ Presentations https://speakerdeck.com/ddemaree/designing-the-hi-dpi-web https://speakerdeck.com/davatron5000/mo-pixels-mo-problems WebFonts http://vimeo.com/33154573 http://icomoon.io/app/ http://pictos.cc/ http://www.fontsquirrel.com/ http://symbolset.com/ http://www.nczonline.net/blog/2013/04/01/making-accessible-icon-buttons/ <picture>, srcset, image-set() http://www.w3.org/TR/html-picture-element/#the-picture-element http://www.webmonkey.com/2012/11/preview-the-proposed-html-picture-element/ http://www.w3.org/html/wg/drafts/srcset/w3c-srcset/ http://responsiveimagescg.github.io/picture-refimp/demo/ https://www.webkit.org/blog/2910/improved-support-for-high-resolution-displays- with-the-srcset-image-attribute/ SVG http://www.w3.org/TR/2013/WD-filter-effects-20130523/ http://docs.webplatform.org/wiki/svg http://caniuse.com/#search=svg CSS http://css-tricks.com/snippets/css/retina-display-media-query/ http://blog.cloudfour.com/safari-6-and-chrome-21-add-image-set-to-support- retina-images/ http://www.w3.org/TR/css3-images/#image-notation Tools/scripts for Adaptive images https://docs.google.com/spreadsheet/ccc? key=0Al0lI17fOl9DdDgxTFVoRzFpV3VCdHk2NTBmdVI2OXc#gid=0 http://retinajs.com/ http://adaptive-images.com/ http://retina-images.complexcompulsions.com/ http://docs.sencha.io/current/index.html#!/guide/src http://mcilvena.com/articles/jquery-retina/ https://github.com/scottjehl/picturefill https://github.com/teleject/hisrc http://www.igvita.com/2013/08/29/automating-dpr-switching-with-client-hints/ Device pixel ratio http://www.quirksmode.org/blog/archives/2012/06/devicepixelrati.html http://www.quirksmode.org/blog/archives/2012/07/more_about_devi.html List of displays by pixel density http://en.wikipedia.org/wiki/List_of_displays_by_pixel_density http://screensiz.es/ WebP http://caniuse.com/#feat=webp Image optimization http://imageoptim.com/ http://x128.ho.ua/color-quantizer.html http://mistermorris.tumblr.com/post/20002250192/upscaling-raster-bitmap- images-for-retina http://www.opera.com/turbo Sources