SlideShare a Scribd company logo
CHRISTOPHER SCHMITT @teleject 
ADAPTIVE IMAGES IN RESPONSIVE WEB DESIGN 
CSS DEV CONF 2014
@teleject 
CHRISTOPHER SCHMITT
@teleject
@teleject 
Responsive Media Course
@teleject 
http://SassSummit.com/
@teleject 
http://artifactconf.com/
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
y 
x
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
http://cssspecificity.com
http://cssspecificity.com
http://cssspecificity.com
WHY DONโ€™T WE ASK 
THE BROWSER? 
(cc) flic.kr/p/vUBHv
alert("User-agent header sent: " + navigator.userAgent);
alert("User-agent header sent: " + navigator.userAgent);
Mozilla/1.0 (Win3.1) 
http://www.useragentstring.com/ 
(cc) flic.kr/p/vUBHv
Mozilla/1.0 (Win3.1) 
Mozilla/1.22 (compatible; 
MSIE 2.0; Windows 95) 
(cc) flic.kr/p/vUBHv 
http://www.useragentstring.com/
Mozilla/5.0 (Macintosh; Intel Mac 
OS X 10_7_3) AppleWebKit/ 
534.55.3 (KHTML, like Gecko) 
Version/5.1.5 Safari/534.55.3 
(cc) flic.kr/p/vUBHv 
http://www.useragentstring.com/
Mozilla/5.0 (Macintosh; Intel Mac 
OS X 10_7_3) AppleWebKit/ 
534.55.3 (KHTML, like Gecko) 
Version/5.1.5 Safari/534.55.3 
http://webaim.org/blog/user-agent-string-history/ 
(cc) flic.kr/p/vUBHv
http://telejec.tv/12uYOC4
FEATURE TESTING vs. BROWSER SNIFFING 
1 
2 
3
FEATURE TESTING vs. BROWSER SNIFFING 
1 Browser width 
2 
3
A scripting approach 
var myWidth = 0, myHeight = 0; 
if( typeof( window.innerWidth ) == 'number' ) { 
//Non-IE 
myWidth = window.innerWidth; 
myHeight = window.innerHeight; 
} else if( document.documentElement && 
( document.documentElement.clientWidth || 
document.documentElement.clientHeight ) ) { 
//IE 6+ in 'standards compliant mode' 
myWidth = document.documentElement.clientWidth; 
myHeight = document.documentElement.clientHeight; 
} 
http://www.howtocreate.co.uk/tutorials/javascript/browserwindow
The jQuery approach 
// returns width of browser viewport 
$(window).width(); 
// returns height of browser viewport 
$(window).height(); 
! 
// returns width of HTML document 
$(document).width(); 
// returns height of HTML document 
$(document).height(); 
http://api.jquery.com/width/ & http://api.jquery.com/height/
CSS media queries 
// default, mobile-1st CSS rules devices go here 
! 
@media screen and (min-width: 480px) { ... } 
! 
@media screen and (min-width: 600px) { ... } 
! 
@media screen and (min-width: 768px) { ... } 
! 
@media screen and (min-width: 910px) { ... }
(cc) flic.kr/p/8Lo5Gk
BROWSER WIDTH 
GIVES US FRAME, 
NOT THE CANVAS
FEATURE TESTING vs. BROWSER SNIFFING 
1 Browser width 
2 Screen resolution 
3
72PPI 
HAS 
(cc) flic.kr/p/6tjjRP
72 points-per-inch = 
72 pixels-per-inch
96PPI 
IF A
72 points-per-inch 
x [1+(1/3)] 
= 96 PPI
78ฮผm 
โ€œRETINAโ€ DISPLAYS 300ppi at 12 inches from the eyes 
goo.gl/zpkFy 78ฮผm
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[In 2013, Intel sees their 
product line] offer a higher 
resolution experience than a 
top-of-the-line 1080p HDTV.โ€ 
โ€œ 
http://liliputing.com/2012/04/intel-retina-laptop-desktop- 
displays-coming-in-2013.html
72 PPI
240
240 PPI
240 PPI
72 PPI
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
RETINA DISPLAYS = 
LARGER IMAGES, 
LARGER FILE SIZES
FEATURE TESTING vs. BROWSER SNIFFING 
1 Browser width 
2 Screen resolution 
3 Bandwidth
SPEED TESTS 
HINDER SPEED, 
USER EXPERIENCE 
(cc) flic.kr/p/4DziUN
Testing for speed of an internet 
connection is like stepping in 
front of a car to see how fast it 
is.โ€ 
โ€œ 
(cc) flic.kr/p/4DziUN
Testing for speed of an internet 
connection is like stepping in 
front of a car to see how fast it 
is.โ€ 
โ€œ 
But, Christopher, you only have 
to test it once.โ€ โ€œ 
(cc) flic.kr/p/4DziUN
Speed test image 
https://github.com/adamdbradley/foresight.js
Speed test image 
+50k 
https://github.com/adamdbradley/foresight.js
Native speed test 
// @Modernizr's network-connection.js 
connection = navigator.connection || { 
type: 0 }, // polyfill 
! 
isSlowConnection = connection.type == 3 
|| connection.type == 4 
| /^[23]g$/.test(connection.type); 
http://davidbcalhoun.com/2010/using-navigator-connection-android
FEATURE TESTING vs. BROWSER SNIFFING 
1 Browser width 
2 Screen resolution 
3 Bandwidth
IMG GIMME THAT OLD SCHOOL 
1 
2 
3
IMG GIMME THAT OLD SCHOOL 
1 srcset & sizes 
2 
3
Basic Image Swap 
<img src="headshot_500px.jpg" 
srcset="headshot_650px.jpg 1.5x, 
headshot_1000px.jpg 2x" 
width="500" alt="Headshot">
Basic Image Swap 
<img sizes="(max-width: 30em) 100vw, 
(max-width: 50em) 50vw, 
calc(33vw - 100px)" 
srcset="swing-200.jpg 200w, 
swing-400.jpg 400w, 
swing-800.jpg 800w, 
swing-1600.jpg 1600w" 
src="swing-400.jpg" alt="Kettlebell Swing"> 
https://dev.opera.com/articles/native-responsive-images/
Basic Image Swap 
<img sizes="(max-width: 30em) 100vw, 
(max-width: 50em) 50vw, 
calc(33vw - 100px)" 
srcset="swing-200.jpg 200w, 
swing-400.jpg 400w, 
swing-800.jpg 800w, 
swing-1600.jpg 1600w" 
src="swing-400.jpg" alt="Kettlebell Swing"> 
https://dev.opera.com/articles/native-responsive-images/
Basic Image Swap 
<img sizes="(max-width: 30em) 100vw, 
(max-width: 50em) 50vw, 
calc(33vw - 100px)" 
srcset="swing-200.jpg 200w, 
swing-400.jpg 400w, 
swing-800.jpg 800w, 
swing-1600.jpg 1600w" 
src="swing-400.jpg" alt="Kettlebell Swing"> 
https://dev.opera.com/articles/native-responsive-images/
Basic Image Swap 
<img sizes="(max-width: 30em) 100vw, 
(max-width: 50em) 50vw" 
srcset="swing-200.jpg 200w, 
swing-400.jpg 400w, 
swing-800.jpg 800w, 
swing-1600.jpg 1600w" 
src="swing-400.jpg" alt="Kettlebell Swing"> 
https://dev.opera.com/articles/native-responsive-images/
Basic Image Swap 
<img sizes="(max-width: 30em) 100vw, 
(max-width: 50em) 50vw" 
srcset="swing-200.jpg 200w, 
swing-400.jpg 400w, 
swing-800.jpg 800w, 
swing-1600.jpg 1600w" 
src="swing-400.jpg" alt="Kettlebell Swing"> 
https://dev.opera.com/articles/native-responsive-images/
ITโ€™S STILL UP TO 
BROWSER TO PICK 
WHICH IMAGE TO USE
BUT YOU WILL USE 
THESE ATTRIBUTES 
1,000% OF THE TIME* 
* Science
GIMME THAT OLD SCHOOL IMG 
1 srcset & sizes 
2 <picture> 
3
<picture> 
<img src="small.jpg" alt=โ€œThat awesome Saints touchdown.">
<picture> 
<picture> 
<source media="(min-width: 45em)" srcset="large.jpg"> 
<source media="(min-width: 32em)" srcset="med.jpg"> 
<img src="small.jpg" alt=โ€œThat awesome Saints touchdown."> 
</picture> 
38+ 33+ 25+ ? ?
<picture> 
<picture> 
<source media="(min-width: 45em)" srcset="large.jpg"> 
<source media="(min-width: 32em)" srcset="med.jpg"> 
<img src="small.jpg" alt=โ€œThat awesome Saints touchdown."> 
</picture> 
38+ 33+ 25+ ? ?
<picture> 
<picture> 
<source media="(min-width: 45em)" srcset="large.jpg"> 
<source media="(min-width: 32em)" srcset="med.jpg"> 
<img src="small.jpg" alt=โ€œThat awesome Saints touchdown."> 
</picture> 
38+ 33+ 25+ ? ?
<picture> 
<picture> 
<source media="(min-width: 45em)" srcset="large.jpg"> 
<source media="(min-width: 32em)" srcset="med.jpg"> 
<img src="small.jpg" alt=โ€œThat awesome Saints touchdown."> 
</picture> 
38+ 33+ 25+ ? ?
USE <PICTURE> 
POWER TO SOLVE ART 
DIRECTION
& ONLY WHEN ALL 
OTHER CSS-y OPTIONS 
HAVE BEEN EXPLORED
http://responsivedesign.is/resources/images/ 
picture-fill
GIMME THAT OLD SCHOOL IMG 
1 srcset & sizes 
2 <picture> 
3 HiSRC and more
Set, forget it HiSRC 
<script src="https://ajax.googleapis.com/ajax/libs/ 
jquery/1.7.2/jquery.min.js"></script> 
<script src="hisrc.js"></script> 
<script> 
$(document).ready(function(){ 
$(".hisrc img").hisrc(); 
}); 
</script> 
! https://github.com/teleject/hisrc
Set, forget it HiSRC 
<div class="hisrc"> 
<img src="halloween-mobile-1st.png" 
data-1x="halloween-x1.png" 
data-2x="halloween-x2.jpg" 
alt="Celebrating Halloween in style" /> 
</div>
Set, forget it HiSRC 
<div class="hisrc"> 
<img src="halloween-mobile-1st.png" 
data-1x="halloween-x1.png" 
data-2x="halloween-x2.jpg" 
alt="Celebrating Halloween in style" /> 
</div>
SERIES OF CHECKS TO 
FIND OUT RESPONSIVE 
PATH FOR IMAGES...
DO NATIVE SPEED 
TEST FOR MOBILE 
DEVICES FIRST... 
http://davidbcalhoun.com/2010/using-navigator-connection-android
Check pixel density... 
$.hisrc.devicePixelRatio = 1; 
if(window.devicePixelRatio !== undefined) 
{ 
$.hisrc.devicePixelRatio = 
window.devicePixelRatio 
}; 
https://gist.github.com/2428356
Force speed test 
+50k 
https://github.com/adamdbradley/foresight.js
LESS THAN 4G MEANS 
MOBILE IMAGES LEFT 
IN PLACE
BETWEEN 4G & 
300 Kbps MEANS 
REGULAR DESKTOP 
IMAGES SWAPPED IN
FAST SPEED & HIGH 
DENSITY, RETINA 
IMAGES SWAPPED IN 
https://github.com/crdeutsch/hisrc/tree/v2
http://css-tricks.com/which-responsive- 
images-solution-should- 
you-use/
24+ 
http://css-tricks.com/which-responsive- 
images-solution-should- 
you-use/
ALL SOLUTIONS HAVE 
2x 
+ 
http://css-tricks.com/which-responsive- 
images-solution-should- 
you-use/
WORKAROUNDS TRICKS in CONTEXT 
1 
2 
3 
& 
(cc) flic.kr/p/64fGf6
WORKAROUNDS & 
TRICKS 
1 background-size: 100% 
2 
3 
(cc) flic.kr/p/64fGf6
http://fittextjs.com/
background-size: 100% 
<a href="example.com/link">Download on Github</a> 
! 
.download a { 
padding: .095em .8em; 
background: url(../img/arrow.png) no-repeat; 
background-size: 100%; 
margin-left: .4em; 
-webkit-transition: margin 0.15s ease-out; 
-moz-transition: margin 0.15s ease-out; 
text-decoration: none; 
} 
17+ 9+ 11.6+ 5+ 9+
WORKAROUNDS TRICKS in CONTEXT 
1 background-size: auto 
2 SVG 
3 
& 
(cc) flic.kr/p/64fGf6
SVG
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
Native SVG 
http://caniuse.com/#search=SVG%20in%20HTML%20img%20element
PNG 
SVG 
17+ 9+ 11.6+ 5+ 9+
http://petercollingridge.appspot.com/svg-optimiser
https://github.com/svg/svgo-gui
https://github.com/svg/svgo-gui
Modernizr check 
if(!Modernizr.svg){ 
var images = 
document.getElementsByTagName("img"); 
for(var i = 0; i < images.length; i++){ 
var src = images[i].src.split("."); 
images[i].src = src[0] + ".png"; 
} 
} 
http://stackoverflow.com/questions/12846852/ 
svg-png-extension-switch
https://github.com/filamentgroup/grunticon/
WORKAROUNDS TRICKS in CONTEXT 
1 background-size: auto 
2 SVG 
3 font-based solutions 
& 
(cc) flic.kr/p/64fGf6
...if you use <meta 
charset="utf-8"> (you should be 
for HTML5), youโ€™re adding 
common Unicode characters 
like โ™ซ and โœ†, and you donโ€™t 
need a specific fontโ€™s version... 
just copy and paste them into 
your HTML.โ€ 
โ€œ
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
Font-based RWD 
http://ilovetypography.com/2012/04/11/designing-type-systems/
Font-based RWD 
avg file size 
40kb 
http://ilovetypography.com/2012/04/11/designing-type-systems/
http://css-tricks.com/examples/IconFont/
http://fontello.com/
http://icomoon.io
Font-based icons 
<style> 
[data-icon]:before { 
font-family: 'icon-font'; 
content: attr(data-icon); 
} 
</style> 
! 
<a href="http://example.com/cloud/save/"> 
<span data-icon="C" aria-hidden="true"></span> 
Save to Cloud 
</a>
WORKAROUNDS & 
TRICKS in CONTEXT 
1 background-size: 100% 
2 SVG 
3 font-based solutions 
4 compressed JPEGs 
(cc) flic.kr/p/64fGf6
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
OS 
X Lion 
The worldโ€™s most advanced desktop 
operating system advances even further. 
With over 250 new features including 
Multi-Touch gestures, Mission Control, 
full-screen apps, and Launchpad, OS X 
Lion takes the Mac further than ever. 
Learn More 
iCloud iOS 5 OSX Lion iPad 2 iPhone
X Lion! 
" โ† 
OS 
The worldโ€™s most advanced desktop 
operating system advances even further. 
With over 250 new features including 
Multi-Touch gestures, Mission Control, 
full-screen apps, and Launchpad, OS X 
Lion takes the Mac further than ever. 
Learn More 
โ†‘ 
iCloud iOS 5 OSX Lion iPad 2 iPhone
X Lion! โ†™ 
" โ† โ† 
โ†— โ†‘ โ†– 
OS 
The worldโ€™s most advanced desktop 
operating system advances even further. 
With over 250 new features including 
Multi-Touch gestures, Mission Control, 
full-screen apps, and Launchpad, OS X 
Lion takes the Mac further than ever. 
Learn More 
โ†‘ โ†– 
iCloud iOS 5 OSX Lion iPad 2 iPhone
(cc) flic.kr/p/64fGf6
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
446kb < 8,755.2kb 
0% vs 100% 
(cc) flic.kr/p/64fGf6
Size Type Dimensions Display Px Density File Size 
Extreme 2276x1400 1x & 2x 446kb 
Extra 
Large 
1024x1536 2x 1,745kb 
512x768 1x 503kb 
Large 
640x960 2x 746kb 
320x480 1x 223kb 
Medium 
500x750 2x 485kb 
250x375 1x 145kb
Size Type Dimensions Display Px Density File Size 
Extreme 2276x1400 1x & 2x 446kb 
Extra 
Large 
1024x1536 2x 1,745kb 
512x768 1x 503kb 
Large 
640x960 2x 746kb 
320x480 1x 223kb 
Medium 
500x750 2x 485kb 
250x375 1x 145kb
One Image, One IMG 
<img src="rock-climber.jpg" alt="" />
(cc) flic.kr/p/64fGf6 
EXTREMELY COMPRESSED PROBLEMS
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
COMBO MOVES CLOWN CAR TECHNIQUE 
+ HIGHLY COMPRESSED JPEGS 
(cc) flic.kr/p/64fGf6
<img src="rock-climbing-400px.jpg" 
srcset="rock-climbing-400px.jpg 400w, 
rock-climbing-compressed.jpg 600w" 
sizes="100vw" 
alt="Mountain Climber" /> 
http://codepen.io/teleject/full/qpxmr/
http://codepen.io/teleject/full/qpxmr/
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
IMG GIMME THAT NEW SCHOOL 
1 
2 
3 
#rwdimg
IMG GIMME THAT NEW SCHOOL 
1 
2 
3 
simple design for users 
#rwdimg
IMG GIMME THAT NEW SCHOOL 
1 
2 
3 
simple design for users 
browser, server handshake 
#rwdimg
IMG GIMME THAT NEW SCHOOL 
1 
2 
3 
simple design for users 
browser, server handshake 
same, several formats 
#rwdimg
#rwdimg
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
#rwdimg
#rwdimg
#rwdimg
Favicon 
<link rel="shortcut icon" href="/assets/favicon.ico" /> 
#rwdimg
Mobile iOS Bookmarks 
<link rel="apple-touch-icon-precomposed" sizes="144x144" 
href="apple-touch-icon-144x144-precomposed.png" /> 
<link rel="apple-touch-icon-precomposed" sizes="114x114" 
href="apple-touch-icon-114x114-precomposed.png" /> 
<link rel="apple-touch-icon-precomposed" sizes="72x72" 
href="apple-touch-icon-72x72-precomposed.png" /> 
<link rel="apple-touch-icon-precomposed" 
href="apple-touch-icon-precomposed.png" /> 
#rwdimg
#rwdimg
THANK YOU! CHRISTOPHER SCHMITT 
Sass Summit - http://SassSummit.com

More Related Content

What's hot (20)

[refreshaustin] Adaptive Images in Responsive Web Design
[refreshaustin] Adaptive Images in Responsive Web Design[refreshaustin] Adaptive Images in Responsive Web Design
[refreshaustin] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[HEWEBFL] Adaptive Images in Responsive Web Design
[HEWEBFL] Adaptive Images in Responsive Web Design[HEWEBFL] Adaptive Images in Responsive Web Design
[HEWEBFL] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[cssdevconf] Adaptive Images in RWD
[cssdevconf] Adaptive Images in RWD[cssdevconf] Adaptive Images in RWD
[cssdevconf] Adaptive Images in RWD
Christopher Schmitt
ย 
[rwdsummit2012] Adaptive Images in Responsive Web Design
[rwdsummit2012] Adaptive Images in Responsive Web Design[rwdsummit2012] Adaptive Images in Responsive Web Design
[rwdsummit2012] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[wvbcn] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web Design[wvbcn] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[HEWEBAR 2012] Adaptive Images in Responsive Web Design
[HEWEBAR 2012] Adaptive Images in Responsive Web Design[HEWEBAR 2012] Adaptive Images in Responsive Web Design
[HEWEBAR 2012] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
High Performance Images
High Performance ImagesHigh Performance Images
High Performance Images
Walter Ebert
ย 
Responsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerResponsive Videos, mehr oder weniger
Responsive Videos, mehr oder weniger
Walter Ebert
ย 
Responsive and Fast
Responsive and FastResponsive and Fast
Responsive and Fast
Sven Wolfermann
ย 
Bilder usw...
Bilder usw...Bilder usw...
Bilder usw...
Walter Ebert
ย 
Responsive Enhancement
Responsive EnhancementResponsive Enhancement
Responsive Enhancement
Sven Wolfermann
ย 
Mehr Performance fรผr WordPress - WPFra
Mehr Performance fรผr WordPress - WPFraMehr Performance fรผr WordPress - WPFra
Mehr Performance fรผr WordPress - WPFra
Walter Ebert
ย 
Responsive Design: Mehr als CSS
Responsive Design: Mehr als CSSResponsive Design: Mehr als CSS
Responsive Design: Mehr als CSS
Walter Ebert
ย 
Bilder einbinden ist kein Thema, oder?
Bilder einbinden ist kein Thema, oder?Bilder einbinden ist kein Thema, oder?
Bilder einbinden ist kein Thema, oder?
Walter Ebert
ย 
WordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFMWordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFM
Walter Ebert
ย 
Developing for Mobile
Developing for MobileDeveloping for Mobile
Developing for Mobile
Remy Sharp
ย 
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
Matthias Lau
ย 
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010
Patrick Lauke
ย 
HTML5: Markup Evolved
HTML5: Markup EvolvedHTML5: Markup Evolved
HTML5: Markup Evolved
Billy Hylton
ย 
[refreshaustin] Adaptive Images in Responsive Web Design
[refreshaustin] Adaptive Images in Responsive Web Design[refreshaustin] Adaptive Images in Responsive Web Design
[refreshaustin] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[HEWEBFL] Adaptive Images in Responsive Web Design
[HEWEBFL] Adaptive Images in Responsive Web Design[HEWEBFL] Adaptive Images in Responsive Web Design
[HEWEBFL] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[cssdevconf] Adaptive Images in RWD
[cssdevconf] Adaptive Images in RWD[cssdevconf] Adaptive Images in RWD
[cssdevconf] Adaptive Images in RWD
Christopher Schmitt
ย 
[rwdsummit2012] Adaptive Images in Responsive Web Design
[rwdsummit2012] Adaptive Images in Responsive Web Design[rwdsummit2012] Adaptive Images in Responsive Web Design
[rwdsummit2012] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[wvbcn] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web Design[wvbcn] Adaptive Images in Responsive Web Design
[wvbcn] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[HEWEBAR 2012] Adaptive Images in Responsive Web Design
[HEWEBAR 2012] Adaptive Images in Responsive Web Design[HEWEBAR 2012] Adaptive Images in Responsive Web Design
[HEWEBAR 2012] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
High Performance Images
High Performance ImagesHigh Performance Images
High Performance Images
Walter Ebert
ย 
Responsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerResponsive Videos, mehr oder weniger
Responsive Videos, mehr oder weniger
Walter Ebert
ย 
Responsive and Fast
Responsive and FastResponsive and Fast
Responsive and Fast
Sven Wolfermann
ย 
Bilder usw...
Bilder usw...Bilder usw...
Bilder usw...
Walter Ebert
ย 
Responsive Enhancement
Responsive EnhancementResponsive Enhancement
Responsive Enhancement
Sven Wolfermann
ย 
Mehr Performance fรผr WordPress - WPFra
Mehr Performance fรผr WordPress - WPFraMehr Performance fรผr WordPress - WPFra
Mehr Performance fรผr WordPress - WPFra
Walter Ebert
ย 
Responsive Design: Mehr als CSS
Responsive Design: Mehr als CSSResponsive Design: Mehr als CSS
Responsive Design: Mehr als CSS
Walter Ebert
ย 
Bilder einbinden ist kein Thema, oder?
Bilder einbinden ist kein Thema, oder?Bilder einbinden ist kein Thema, oder?
Bilder einbinden ist kein Thema, oder?
Walter Ebert
ย 
WordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFMWordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFM
Walter Ebert
ย 
Developing for Mobile
Developing for MobileDeveloping for Mobile
Developing for Mobile
Remy Sharp
ย 
The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14The Big Picture: Responsive Images in Action #scd14
The Big Picture: Responsive Images in Action #scd14
Matthias Lau
ย 
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010
Patrick Lauke
ย 
HTML5: Markup Evolved
HTML5: Markup EvolvedHTML5: Markup Evolved
HTML5: Markup Evolved
Billy Hylton
ย 

Similar to [CSSDevConf] Adaptive Images in Responsive Web Design 2014 (20)

[html5tx] Adaptive Images in Responsive Web Design
[html5tx] Adaptive Images in Responsive Web Design[html5tx] Adaptive Images in Responsive Web Design
[html5tx] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[drupalcampatx] Adaptive Images in Responsive Web Design
[drupalcampatx] Adaptive Images in Responsive Web Design[drupalcampatx] Adaptive Images in Responsive Web Design
[drupalcampatx] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[psuweb] Adaptive Images in Responsive Web Design
[psuweb] Adaptive Images in Responsive Web Design[psuweb] Adaptive Images in Responsive Web Design
[psuweb] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
Christopher Schmitt, "Adaptive Images for Responsive Web Design"
Christopher Schmitt, "Adaptive Images for Responsive Web Design"Christopher Schmitt, "Adaptive Images for Responsive Web Design"
Christopher Schmitt, "Adaptive Images for Responsive Web Design"
WebVisions
ย 
Pinkoi Mobile Web
Pinkoi Mobile WebPinkoi Mobile Web
Pinkoi Mobile Web
mikeleeme
ย 
VizEx View HTML5 Workshop
VizEx View HTML5 WorkshopVizEx View HTML5 Workshop
VizEx View HTML5 Workshop
David Manock
ย 
VizEx View HTML5 Workshop
VizEx View HTML5 WorkshopVizEx View HTML5 Workshop
VizEx View HTML5 Workshop
Larson Software Technology
ย 
Responsive images are here. Now what?
Responsive images are here. Now what?Responsive images are here. Now what?
Responsive images are here. Now what?
Jason Grigsby
ย 
Pushing Webperf Limits - We Love Speed 2024.pptx
Pushing Webperf Limits - We Love Speed 2024.pptxPushing Webperf Limits - We Love Speed 2024.pptx
Pushing Webperf Limits - We Love Speed 2024.pptx
Tim Vereecke
ย 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
Joe Seifi
ย 
HTML5 - A Whirlwind tour
HTML5 - A Whirlwind tourHTML5 - A Whirlwind tour
HTML5 - A Whirlwind tour
Lohith Goudagere Nagaraj
ย 
The specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktopThe specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktop
betabeers
ย 
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
Vitaly Friedman
ย 
The things browsers can do! SAE Alumni Convention 2014
The things browsers can do! SAE Alumni Convention 2014The things browsers can do! SAE Alumni Convention 2014
The things browsers can do! SAE Alumni Convention 2014
Christian Heilmann
ย 
Design+Performance Velocity 2015
Design+Performance Velocity 2015Design+Performance Velocity 2015
Design+Performance Velocity 2015
Steve Souders
ย 
Whatever it takes - Fixing SQLIA and XSS in the process
Whatever it takes - Fixing SQLIA and XSS in the processWhatever it takes - Fixing SQLIA and XSS in the process
Whatever it takes - Fixing SQLIA and XSS in the process
guest3379bd
ย 
[edUi] HTML5 Workshop
[edUi] HTML5 Workshop[edUi] HTML5 Workshop
[edUi] HTML5 Workshop
Christopher Schmitt
ย 
Cloud Computing in Mobile
Cloud Computing in MobileCloud Computing in Mobile
Cloud Computing in Mobile
SVWB
ย 
Ie9 dev overview (300) beta
Ie9 dev overview (300) betaIe9 dev overview (300) beta
Ie9 dev overview (300) beta
Kirk Yamamoto
ย 
Responsive design
Responsive designResponsive design
Responsive design
John Doxaras
ย 
[html5tx] Adaptive Images in Responsive Web Design
[html5tx] Adaptive Images in Responsive Web Design[html5tx] Adaptive Images in Responsive Web Design
[html5tx] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[drupalcampatx] Adaptive Images in Responsive Web Design
[drupalcampatx] Adaptive Images in Responsive Web Design[drupalcampatx] Adaptive Images in Responsive Web Design
[drupalcampatx] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[psuweb] Adaptive Images in Responsive Web Design
[psuweb] Adaptive Images in Responsive Web Design[psuweb] Adaptive Images in Responsive Web Design
[psuweb] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
Christopher Schmitt, "Adaptive Images for Responsive Web Design"
Christopher Schmitt, "Adaptive Images for Responsive Web Design"Christopher Schmitt, "Adaptive Images for Responsive Web Design"
Christopher Schmitt, "Adaptive Images for Responsive Web Design"
WebVisions
ย 
Pinkoi Mobile Web
Pinkoi Mobile WebPinkoi Mobile Web
Pinkoi Mobile Web
mikeleeme
ย 
VizEx View HTML5 Workshop
VizEx View HTML5 WorkshopVizEx View HTML5 Workshop
VizEx View HTML5 Workshop
David Manock
ย 
Responsive images are here. Now what?
Responsive images are here. Now what?Responsive images are here. Now what?
Responsive images are here. Now what?
Jason Grigsby
ย 
Pushing Webperf Limits - We Love Speed 2024.pptx
Pushing Webperf Limits - We Love Speed 2024.pptxPushing Webperf Limits - We Love Speed 2024.pptx
Pushing Webperf Limits - We Love Speed 2024.pptx
Tim Vereecke
ย 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
Joe Seifi
ย 
The specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktopThe specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktop
betabeers
ย 
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
Vitaly Friedman
ย 
The things browsers can do! SAE Alumni Convention 2014
The things browsers can do! SAE Alumni Convention 2014The things browsers can do! SAE Alumni Convention 2014
The things browsers can do! SAE Alumni Convention 2014
Christian Heilmann
ย 
Design+Performance Velocity 2015
Design+Performance Velocity 2015Design+Performance Velocity 2015
Design+Performance Velocity 2015
Steve Souders
ย 
Whatever it takes - Fixing SQLIA and XSS in the process
Whatever it takes - Fixing SQLIA and XSS in the processWhatever it takes - Fixing SQLIA and XSS in the process
Whatever it takes - Fixing SQLIA and XSS in the process
guest3379bd
ย 
Cloud Computing in Mobile
Cloud Computing in MobileCloud Computing in Mobile
Cloud Computing in Mobile
SVWB
ย 
Ie9 dev overview (300) beta
Ie9 dev overview (300) betaIe9 dev overview (300) beta
Ie9 dev overview (300) beta
Kirk Yamamoto
ย 
Responsive design
Responsive designResponsive design
Responsive design
John Doxaras
ย 

More from Christopher Schmitt (11)

Keeping Colors from Killing Your Product
Keeping Colors from Killing Your ProductKeeping Colors from Killing Your Product
Keeping Colors from Killing Your Product
Christopher Schmitt
ย 
[artifactconf] Github for People Who Don't Code
[artifactconf] Github for People Who Don't Code[artifactconf] Github for People Who Don't Code
[artifactconf] Github for People Who Don't Code
Christopher Schmitt
ย 
[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
Christopher Schmitt
ย 
GitHub for People Who Don't Code
GitHub for People Who Don't CodeGitHub for People Who Don't Code
GitHub for People Who Don't Code
Christopher Schmitt
ย 
[sxsw2013] Extremely Compressed JPEGs
[sxsw2013] Extremely Compressed JPEGs[sxsw2013] Extremely Compressed JPEGs
[sxsw2013] Extremely Compressed JPEGs
Christopher Schmitt
ย 
[amigos] HTML5 and CSS3
[amigos] HTML5 and CSS3[amigos] HTML5 and CSS3
[amigos] HTML5 and CSS3
Christopher Schmitt
ย 
[convergefl] Adaptive Images in Responsive Web Design
[convergefl] Adaptive Images in Responsive Web Design[convergefl] Adaptive Images in Responsive Web Design
[convergefl] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
Christopher Schmitt
ย 
[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design
Christopher Schmitt
ย 
[heweb11] CSS3 Makeover
[heweb11] CSS3 Makeover[heweb11] CSS3 Makeover
[heweb11] CSS3 Makeover
Christopher Schmitt
ย 
[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover
Christopher Schmitt
ย 
Keeping Colors from Killing Your Product
Keeping Colors from Killing Your ProductKeeping Colors from Killing Your Product
Keeping Colors from Killing Your Product
Christopher Schmitt
ย 
[artifactconf] Github for People Who Don't Code
[artifactconf] Github for People Who Don't Code[artifactconf] Github for People Who Don't Code
[artifactconf] Github for People Who Don't Code
Christopher Schmitt
ย 
[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
Christopher Schmitt
ย 
GitHub for People Who Don't Code
GitHub for People Who Don't CodeGitHub for People Who Don't Code
GitHub for People Who Don't Code
Christopher Schmitt
ย 
[sxsw2013] Extremely Compressed JPEGs
[sxsw2013] Extremely Compressed JPEGs[sxsw2013] Extremely Compressed JPEGs
[sxsw2013] Extremely Compressed JPEGs
Christopher Schmitt
ย 
[amigos] HTML5 and CSS3
[amigos] HTML5 and CSS3[amigos] HTML5 and CSS3
[amigos] HTML5 and CSS3
Christopher Schmitt
ย 
[convergefl] Adaptive Images in Responsive Web Design
[convergefl] Adaptive Images in Responsive Web Design[convergefl] Adaptive Images in Responsive Web Design
[convergefl] Adaptive Images in Responsive Web Design
Christopher Schmitt
ย 
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
Christopher Schmitt
ย 
[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design
Christopher Schmitt
ย 
[heweb11] CSS3 Makeover
[heweb11] CSS3 Makeover[heweb11] CSS3 Makeover
[heweb11] CSS3 Makeover
Christopher Schmitt
ย 
[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover
Christopher Schmitt
ย 

Recently uploaded (20)

Acronis True Image 2025 Crack Full Version Download [Latest]
Acronis True Image 2025 Crack Full Version Download [Latest]Acronis True Image 2025 Crack Full Version Download [Latest]
Acronis True Image 2025 Crack Full Version Download [Latest]
Designer
ย 
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
Designer
ย 
Architectural Brilliance: Immersive 3D Exteriors for High-End Developments
Architectural Brilliance: Immersive 3D Exteriors for High-End DevelopmentsArchitectural Brilliance: Immersive 3D Exteriors for High-End Developments
Architectural Brilliance: Immersive 3D Exteriors for High-End Developments
Yantram Animation Studio Corporation
ย 
Driver Easy Pro 6.1.1 With License Key 2025 [Latest Version]
Driver Easy Pro 6.1.1 With License Key 2025 [Latest Version]Driver Easy Pro 6.1.1 With License Key 2025 [Latest Version]
Driver Easy Pro 6.1.1 With License Key 2025 [Latest Version]
Kanju
ย 
BMB Tool Pro v7.0 Setup 2025 Download [Latest Version]
BMB Tool Pro v7.0 Setup 2025 Download [Latest Version]BMB Tool Pro v7.0 Setup 2025 Download [Latest Version]
BMB Tool Pro v7.0 Setup 2025 Download [Latest Version]
oceangame
ย 
Chimera Tool Latest Version 2025 Free Download
Chimera Tool Latest Version 2025 Free DownloadChimera Tool Latest Version 2025 Free Download
Chimera Tool Latest Version 2025 Free Download
Sorry Iam Engaged
ย 
KeyShot Pro 10 Crack Free Download [Latest 2025]
KeyShot Pro 10 Crack Free Download [Latest 2025]KeyShot Pro 10 Crack Free Download [Latest 2025]
KeyShot Pro 10 Crack Free Download [Latest 2025]
FarhanSEO
ย 
EndNote Crack X20.6.5 With Product Key Free latest 2025 Download
EndNote Crack X20.6.5 With Product Key Free latest 2025 DownloadEndNote Crack X20.6.5 With Product Key Free latest 2025 Download
EndNote Crack X20.6.5 With Product Key Free latest 2025 Download
Kanju
ย 
NetBalancer Crack 10.6.1.3129 + Activation Code Download [2022]
NetBalancer Crack 10.6.1.3129 + Activation Code Download [2022]NetBalancer Crack 10.6.1.3129 + Activation Code Download [2022]
NetBalancer Crack 10.6.1.3129 + Activation Code Download [2022]
FarhanSEO
ย 
Revo Uninstaller Pro Crack Download Free Setup
Revo Uninstaller Pro Crack Download Free  SetupRevo Uninstaller Pro Crack Download Free  Setup
Revo Uninstaller Pro Crack Download Free Setup
Kanju
ย 
Uninstall Tool 3.6.0.5684 Crack with Key Download [Latest]
Uninstall Tool 3.6.0.5684 Crack with Key Download [Latest]Uninstall Tool 3.6.0.5684 Crack with Key Download [Latest]
Uninstall Tool 3.6.0.5684 Crack with Key Download [Latest]
opera
ย 
Building a mindful relationship with digital media - A work in progress
Building a mindful relationship with digital media - A work in progressBuilding a mindful relationship with digital media - A work in progress
Building a mindful relationship with digital media - A work in progress
Master Service Design
ย 
The Value of Design Master Class for Genpact
The Value of Design Master Class for GenpactThe Value of Design Master Class for Genpact
The Value of Design Master Class for Genpact
info129082
ย 
SS27 Colors Trend Book by Peclers Paris - Creative Agency
SS27 Colors Trend Book by Peclers Paris - Creative AgencySS27 Colors Trend Book by Peclers Paris - Creative Agency
SS27 Colors Trend Book by Peclers Paris - Creative Agency
Peclers Paris
ย 
Razer Surround Pro 2.0.29.20 Full Crack + Keygen [Latest]
Razer Surround Pro 2.0.29.20 Full Crack + Keygen [Latest]Razer Surround Pro 2.0.29.20 Full Crack + Keygen [Latest]
Razer Surround Pro 2.0.29.20 Full Crack + Keygen [Latest]
Yahoo
ย 
Nitro Pro Crack 14.36.1.0 + Keygen Free Download [Latest]
Nitro Pro Crack 14.36.1.0 + Keygen Free Download [Latest]Nitro Pro Crack 14.36.1.0 + Keygen Free Download [Latest]
Nitro Pro Crack 14.36.1.0 + Keygen Free Download [Latest]
Kanju
ย 
4K Video Downloader Crack 4.28.0.5600 + License Key [2025]
4K Video Downloader Crack 4.28.0.5600 + License Key [2025]4K Video Downloader Crack 4.28.0.5600 + License Key [2025]
4K Video Downloader Crack 4.28.0.5600 + License Key [2025]
oceangame
ย 
ThunderSoft Watermark Remover 6.0.0 with Crack [Latest]
ThunderSoft Watermark Remover 6.0.0 with Crack [Latest]ThunderSoft Watermark Remover 6.0.0 with Crack [Latest]
ThunderSoft Watermark Remover 6.0.0 with Crack [Latest]
Designer
ย 
Unlock Tool 2025.05.20.0 Released [Latest Version]
Unlock Tool 2025.05.20.0 Released [Latest Version]Unlock Tool 2025.05.20.0 Released [Latest Version]
Unlock Tool 2025.05.20.0 Released [Latest Version]
oceangame
ย 
VG Tool V5.1 Crack with FRP Bypass Latest Setup Download 2025
VG Tool V5.1 Crack with FRP Bypass Latest Setup Download 2025VG Tool V5.1 Crack with FRP Bypass Latest Setup Download 2025
VG Tool V5.1 Crack with FRP Bypass Latest Setup Download 2025
Software
ย 
Acronis True Image 2025 Crack Full Version Download [Latest]
Acronis True Image 2025 Crack Full Version Download [Latest]Acronis True Image 2025 Crack Full Version Download [Latest]
Acronis True Image 2025 Crack Full Version Download [Latest]
Designer
ย 
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
Designer
ย 
Architectural Brilliance: Immersive 3D Exteriors for High-End Developments
Architectural Brilliance: Immersive 3D Exteriors for High-End DevelopmentsArchitectural Brilliance: Immersive 3D Exteriors for High-End Developments
Architectural Brilliance: Immersive 3D Exteriors for High-End Developments
Yantram Animation Studio Corporation
ย 
Driver Easy Pro 6.1.1 With License Key 2025 [Latest Version]
Driver Easy Pro 6.1.1 With License Key 2025 [Latest Version]Driver Easy Pro 6.1.1 With License Key 2025 [Latest Version]
Driver Easy Pro 6.1.1 With License Key 2025 [Latest Version]
Kanju
ย 
BMB Tool Pro v7.0 Setup 2025 Download [Latest Version]
BMB Tool Pro v7.0 Setup 2025 Download [Latest Version]BMB Tool Pro v7.0 Setup 2025 Download [Latest Version]
BMB Tool Pro v7.0 Setup 2025 Download [Latest Version]
oceangame
ย 
Chimera Tool Latest Version 2025 Free Download
Chimera Tool Latest Version 2025 Free DownloadChimera Tool Latest Version 2025 Free Download
Chimera Tool Latest Version 2025 Free Download
Sorry Iam Engaged
ย 
KeyShot Pro 10 Crack Free Download [Latest 2025]
KeyShot Pro 10 Crack Free Download [Latest 2025]KeyShot Pro 10 Crack Free Download [Latest 2025]
KeyShot Pro 10 Crack Free Download [Latest 2025]
FarhanSEO
ย 
EndNote Crack X20.6.5 With Product Key Free latest 2025 Download
EndNote Crack X20.6.5 With Product Key Free latest 2025 DownloadEndNote Crack X20.6.5 With Product Key Free latest 2025 Download
EndNote Crack X20.6.5 With Product Key Free latest 2025 Download
Kanju
ย 
NetBalancer Crack 10.6.1.3129 + Activation Code Download [2022]
NetBalancer Crack 10.6.1.3129 + Activation Code Download [2022]NetBalancer Crack 10.6.1.3129 + Activation Code Download [2022]
NetBalancer Crack 10.6.1.3129 + Activation Code Download [2022]
FarhanSEO
ย 
Revo Uninstaller Pro Crack Download Free Setup
Revo Uninstaller Pro Crack Download Free  SetupRevo Uninstaller Pro Crack Download Free  Setup
Revo Uninstaller Pro Crack Download Free Setup
Kanju
ย 
Uninstall Tool 3.6.0.5684 Crack with Key Download [Latest]
Uninstall Tool 3.6.0.5684 Crack with Key Download [Latest]Uninstall Tool 3.6.0.5684 Crack with Key Download [Latest]
Uninstall Tool 3.6.0.5684 Crack with Key Download [Latest]
opera
ย 
Building a mindful relationship with digital media - A work in progress
Building a mindful relationship with digital media - A work in progressBuilding a mindful relationship with digital media - A work in progress
Building a mindful relationship with digital media - A work in progress
Master Service Design
ย 
The Value of Design Master Class for Genpact
The Value of Design Master Class for GenpactThe Value of Design Master Class for Genpact
The Value of Design Master Class for Genpact
info129082
ย 
SS27 Colors Trend Book by Peclers Paris - Creative Agency
SS27 Colors Trend Book by Peclers Paris - Creative AgencySS27 Colors Trend Book by Peclers Paris - Creative Agency
SS27 Colors Trend Book by Peclers Paris - Creative Agency
Peclers Paris
ย 
Razer Surround Pro 2.0.29.20 Full Crack + Keygen [Latest]
Razer Surround Pro 2.0.29.20 Full Crack + Keygen [Latest]Razer Surround Pro 2.0.29.20 Full Crack + Keygen [Latest]
Razer Surround Pro 2.0.29.20 Full Crack + Keygen [Latest]
Yahoo
ย 
Nitro Pro Crack 14.36.1.0 + Keygen Free Download [Latest]
Nitro Pro Crack 14.36.1.0 + Keygen Free Download [Latest]Nitro Pro Crack 14.36.1.0 + Keygen Free Download [Latest]
Nitro Pro Crack 14.36.1.0 + Keygen Free Download [Latest]
Kanju
ย 
4K Video Downloader Crack 4.28.0.5600 + License Key [2025]
4K Video Downloader Crack 4.28.0.5600 + License Key [2025]4K Video Downloader Crack 4.28.0.5600 + License Key [2025]
4K Video Downloader Crack 4.28.0.5600 + License Key [2025]
oceangame
ย 
ThunderSoft Watermark Remover 6.0.0 with Crack [Latest]
ThunderSoft Watermark Remover 6.0.0 with Crack [Latest]ThunderSoft Watermark Remover 6.0.0 with Crack [Latest]
ThunderSoft Watermark Remover 6.0.0 with Crack [Latest]
Designer
ย 
Unlock Tool 2025.05.20.0 Released [Latest Version]
Unlock Tool 2025.05.20.0 Released [Latest Version]Unlock Tool 2025.05.20.0 Released [Latest Version]
Unlock Tool 2025.05.20.0 Released [Latest Version]
oceangame
ย 
VG Tool V5.1 Crack with FRP Bypass Latest Setup Download 2025
VG Tool V5.1 Crack with FRP Bypass Latest Setup Download 2025VG Tool V5.1 Crack with FRP Bypass Latest Setup Download 2025
VG Tool V5.1 Crack with FRP Bypass Latest Setup Download 2025
Software
ย 

[CSSDevConf] Adaptive Images in Responsive Web Design 2014