<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Which responsive images solution should you use?</title>
	<atom:link href="http://css-tricks.com/which-responsive-images-solution-should-you-use/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Fri, 24 May 2013 22:29:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: William Malo</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-180623</link>
		<dc:creator>William Malo</dc:creator>
		<pubDate>Sun, 08 Jul 2012 13:04:09 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-180623</guid>
		<description><![CDATA[I currently use very low quality images in the markup, and then use javascript to swap them with a full quality image after the page has finished loading. This makes the page load fast, and it serves the highest quality image eventually.]]></description>
		<content:encoded><![CDATA[<p>I currently use very low quality images in the markup, and then use javascript to swap them with a full quality image after the page has finished loading. This makes the page load fast, and it serves the highest quality image eventually.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephan Fowler</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-180030</link>
		<dc:creator>Stephan Fowler</dc:creator>
		<pubDate>Wed, 04 Jul 2012 08:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-180030</guid>
		<description><![CDATA[Correction to that url:
http://responsivecontent.net/]]></description>
		<content:encoded><![CDATA[<p>Correction to that url:<br />
<a href="http://responsivecontent.net/" rel="nofollow">http://responsivecontent.net/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephan Fowler</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-179981</link>
		<dc:creator>Stephan Fowler</dc:creator>
		<pubDate>Tue, 03 Jul 2012 22:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-179981</guid>
		<description><![CDATA[Here&#039;s a jQuery plugin that ajax-loads an entire HTML fragment into the page, given current window width (and pixel density). It can be used to tell the server to supply appropriately sized image src URLs etc. It’s a fork of Github’s Pjax loader. It does not rely on User Agent or cookies – just window width.
http://stephanfowler.github.com/responsive-content/]]></description>
		<content:encoded><![CDATA[<p>Here&#8217;s a jQuery plugin that ajax-loads an entire HTML fragment into the page, given current window width (and pixel density). It can be used to tell the server to supply appropriately sized image src URLs etc. It’s a fork of Github’s Pjax loader. It does not rely on User Agent or cookies – just window width.<br />
<a href="http://stephanfowler.github.com/responsive-content/" rel="nofollow">http://stephanfowler.github.com/responsive-content/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will Beard</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-175520</link>
		<dc:creator>Will Beard</dc:creator>
		<pubDate>Fri, 08 Jun 2012 15:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-175520</guid>
		<description><![CDATA[You could possibly use a combination of media queries, adjusting the width and then using clip to highlight a specific area for an img. Although this may be more of a pain in the ass than it is helpful due to the fact clip only works when you position absolutely and you have to calc the top, left, right, and bottom offsets.

Just a thought though!]]></description>
		<content:encoded><![CDATA[<p>You could possibly use a combination of media queries, adjusting the width and then using clip to highlight a specific area for an img. Although this may be more of a pain in the ass than it is helpful due to the fact clip only works when you position absolutely and you have to calc the top, left, right, and bottom offsets.</p>
<p>Just a thought though!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernardo Heynemann</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-173141</link>
		<dc:creator>Bernardo Heynemann</dc:creator>
		<pubDate>Mon, 28 May 2012 17:43:09 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-173141</guid>
		<description><![CDATA[Hi,

We are using responsive images at globo.com.

We have four different versions for each image:

a) A low quality (between 4-5x smaller than original) to serve in the page mark-up.
b) A &#039;desktop&#039; full quality image
c) A &#039;tablet&#039; full quality image (smartly cropped using facial recognition)
d) A &#039;smartphone&#039; full quality image (smartly cropped using facial recognition)

We put each URL (other than low quality) in the markup as data-x-url:

&lt;pre&gt;&lt;code&gt;&lt;img 
&#160;&#160;&#160;&#160;alt=&quot;something&quot;
&#160;&#160;&#160;&#160;src=&quot;low-quality-url&quot;
&#160;&#160;&#160;&#160;data-url-smart=&quot;smart-url&quot;
&#160;&#160;&#160;&#160;data-url-tablet=&quot;tablet-url&quot;
&#160;&#160;&#160;&#160;data-url-desktop=&quot;desktop-url&quot;&gt;&lt;/code&gt;&lt;/pre&gt;

The process we use is that we monitor the page scroll and change the low quality image to the high quality one for the given device only when the user &quot;approaches&quot; the image.

It has worked quite well for us and we are very happy with the results. Our website handles almost 2bi page views / mo with 30-40 responsive images at any given time.

The tool we use for handling the sampling and cropping of the images was built by us and has been released as open source (https://github.com/globocom/thumbor/wiki).

Cheers,
Bernardo Heynemann
Tech Lead @ globo.com]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>We are using responsive images at globo.com.</p>
<p>We have four different versions for each image:</p>
<p>a) A low quality (between 4-5x smaller than original) to serve in the page mark-up.<br />
b) A &#8216;desktop&#8217; full quality image<br />
c) A &#8216;tablet&#8217; full quality image (smartly cropped using facial recognition)<br />
d) A &#8216;smartphone&#8217; full quality image (smartly cropped using facial recognition)</p>
<p>We put each URL (other than low quality) in the markup as data-x-url:</p>
<pre><code>&lt;img 
&nbsp;&nbsp;&nbsp;&nbsp;alt="something"
&nbsp;&nbsp;&nbsp;&nbsp;src="low-quality-url"
&nbsp;&nbsp;&nbsp;&nbsp;data-url-smart="smart-url"
&nbsp;&nbsp;&nbsp;&nbsp;data-url-tablet="tablet-url"
&nbsp;&nbsp;&nbsp;&nbsp;data-url-desktop="desktop-url"&gt;</code></pre>
<p>The process we use is that we monitor the page scroll and change the low quality image to the high quality one for the given device only when the user &#8220;approaches&#8221; the image.</p>
<p>It has worked quite well for us and we are very happy with the results. Our website handles almost 2bi page views / mo with 30-40 responsive images at any given time.</p>
<p>The tool we use for handling the sampling and cropping of the images was built by us and has been released as open source (<a href="https://github.com/globocom/thumbor/wiki" rel="nofollow">https://github.com/globocom/thumbor/wiki</a>).</p>
<p>Cheers,<br />
Bernardo Heynemann<br />
Tech Lead @ globo.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adverse</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-172384</link>
		<dc:creator>Adverse</dc:creator>
		<pubDate>Thu, 24 May 2012 19:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-172384</guid>
		<description><![CDATA[With the increase in demand for responsive websites, the more tips the better. Great post, I learned something new today. Looking forward to the next post.]]></description>
		<content:encoded><![CDATA[<p>With the increase in demand for responsive websites, the more tips the better. Great post, I learned something new today. Looking forward to the next post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-171792</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Mon, 21 May 2012 13:15:03 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-171792</guid>
		<description><![CDATA[Trisha,

I agree 110%. Some devs tend to forget that they&#039;re not only designing for different devices and screen sizes, but also for different PEOPLE (this one being the &lt;strong&gt;largest single variable&lt;/strong&gt; ). Successful design marries functionality with aesthetics, and gives each of them equal importance (for a good example of this, see Apple&#039;s industrial design). If you ignore functionality (or give it less importance), then you&#039;re branching over into the realm of fine art instead of design (and last I checked, fine art is not readily accessible to everyone - you need to understand it before you can access it. Not too intuitive an approach for UI design). The accessibility thing is very personal for me as well, as I have three special needs kids who benefit from it every day.]]></description>
		<content:encoded><![CDATA[<p>Trisha,</p>
<p>I agree 110%. Some devs tend to forget that they&#8217;re not only designing for different devices and screen sizes, but also for different PEOPLE (this one being the <strong>largest single variable</strong> ). Successful design marries functionality with aesthetics, and gives each of them equal importance (for a good example of this, see Apple&#8217;s industrial design). If you ignore functionality (or give it less importance), then you&#8217;re branching over into the realm of fine art instead of design (and last I checked, fine art is not readily accessible to everyone &#8211; you need to understand it before you can access it. Not too intuitive an approach for UI design). The accessibility thing is very personal for me as well, as I have three special needs kids who benefit from it every day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trisha Salas</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-171758</link>
		<dc:creator>Trisha Salas</dc:creator>
		<pubDate>Mon, 21 May 2012 06:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-171758</guid>
		<description><![CDATA[User experience should also include all users, including the visually impaired who rely on screen readers.  This is the main reason I would personally put an emphasis on semantics.  

The longer I do this web dev thing the more I realize that it doesn&#039;t really matter how pretty a site is if it doesn&#039;t work for the user. 

Full disclosure - I have a son who is lost most of his usable vision at the age of 15, he is 19 now.  While semantics mattered to me before it is a primary objective in my work now.  

The vision impaired community is a lot bigger than you realize.

Trisha
5/21/2012]]></description>
		<content:encoded><![CDATA[<p>User experience should also include all users, including the visually impaired who rely on screen readers.  This is the main reason I would personally put an emphasis on semantics.  </p>
<p>The longer I do this web dev thing the more I realize that it doesn&#8217;t really matter how pretty a site is if it doesn&#8217;t work for the user. </p>
<p>Full disclosure &#8211; I have a son who is lost most of his usable vision at the age of 15, he is 19 now.  While semantics mattered to me before it is a primary objective in my work now.  </p>
<p>The vision impaired community is a lot bigger than you realize.</p>
<p>Trisha<br />
5/21/2012</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shajed Evan</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-171234</link>
		<dc:creator>Shajed Evan</dc:creator>
		<pubDate>Thu, 17 May 2012 21:16:04 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-171234</guid>
		<description><![CDATA[On replying this question &quot;Can I wait for the future?&quot; --- I make myself convinced to an answer &quot;NO&quot;!

Because we have already started working and user&#039;s are already getting their device friendly browsing experiences with Responsive Web. So we should get start with what we have now and gradually upgrade ourself before we fix our mind with one dedicated solution. 

I am using &lt;a href=&quot;http://github.com/adamdbradley/foresight.js&quot; title=&quot;Foresight&quot; rel=&quot;nofollow&quot;&gt;Foresight.js&lt;/a&gt; and it&#039;s quite better.]]></description>
		<content:encoded><![CDATA[<p>On replying this question &#8220;Can I wait for the future?&#8221; &#8212; I make myself convinced to an answer &#8220;NO&#8221;!</p>
<p>Because we have already started working and user&#8217;s are already getting their device friendly browsing experiences with Responsive Web. So we should get start with what we have now and gradually upgrade ourself before we fix our mind with one dedicated solution. </p>
<p>I am using <a href="http://github.com/adamdbradley/foresight.js" title="Foresight" rel="nofollow">Foresight.js</a> and it&#8217;s quite better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nuruzzaman Sheikh</title>
		<link>http://css-tricks.com/which-responsive-images-solution-should-you-use/#comment-171232</link>
		<dc:creator>Nuruzzaman Sheikh</dc:creator>
		<pubDate>Thu, 17 May 2012 21:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16932#comment-171232</guid>
		<description><![CDATA[Great post. Really serving up better images for so many different type and capable devices are going hard these days.

But I would really love a solution for this like CSS Media Query as David Hund said.]]></description>
		<content:encoded><![CDATA[<p>Great post. Really serving up better images for so many different type and capable devices are going hard these days.</p>
<p>But I would really love a solution for this like CSS Media Query as David Hund said.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-05-24 22:17:01 by W3 Total Cache -->