<?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: Use CSS transitions to link Media Queries and JavaScript</title>
	<atom:link href="http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/</link>
	<description>The web musings and experiments of.</description>
	<lastBuildDate>Sat, 15 Jun 2013 13:23:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: lucky</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1544</link>
		<dc:creator>lucky</dc:creator>
		<pubDate>Fri, 07 Sep 2012 05:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1544</guid>
		<description><![CDATA[Hi, I tried the sample given above and its really helpful.
Good to see this blog and the solution it provides for mediaquery and js handshake... 

But I have one concern, when I try this on iPad, I find there is some delay before executing the function.
And delay is much more than 0.001ms (which is required for transition to complete.)
Is anyone else also seeing similar issue...

Please let me know if this is expected behaviour]]></description>
		<content:encoded><![CDATA[<p>Hi, I tried the sample given above and its really helpful.<br />
Good to see this blog and the solution it provides for mediaquery and js handshake… </p>
<p>But I have one concern, when I try this on iPad, I find there is some delay before executing the function.<br />
And delay is much more than 0.001ms (which is required for transition to complete.)<br />
Is anyone else also seeing similar issue…</p>
<p>Please let me know if this is expected behaviour</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Israelito</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1530</link>
		<dc:creator>Israelito</dc:creator>
		<pubDate>Fri, 16 Mar 2012 22:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1530</guid>
		<description><![CDATA[sorry, did not read the last paragraph. Somehow it works in IE tedious?]]></description>
		<content:encoded><![CDATA[<p>sorry, did not read the last paragraph. Somehow it works in IE tedious?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Israelito</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1529</link>
		<dc:creator>Israelito</dc:creator>
		<pubDate>Fri, 16 Mar 2012 22:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1529</guid>
		<description><![CDATA[I tried the demo, but apparently does not work in IE 8]]></description>
		<content:encoded><![CDATA[<p>I tried the demo, but apparently does not work in IE 8</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Hayes</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1476</link>
		<dc:creator>Paul Hayes</dc:creator>
		<pubDate>Sat, 28 Jan 2012 14:19:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1476</guid>
		<description><![CDATA[@stephband: That assumes the media queries are mutually exclusive.]]></description>
		<content:encoded><![CDATA[<p>@stephband: That assumes the media queries are mutually exclusive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stephband</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1474</link>
		<dc:creator>stephband</dc:creator>
		<pubDate>Fri, 27 Jan 2012 10:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1474</guid>
		<description><![CDATA[Of course, I left out the transitions in the example above, to keep it clear.]]></description>
		<content:encoded><![CDATA[<p>Of course, I left out the transitions in the example above, to keep it clear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stephband</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1473</link>
		<dc:creator>stephband</dc:creator>
		<pubDate>Fri, 27 Jan 2012 10:46:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1473</guid>
		<description><![CDATA[If you use CSS&#039;s &#039;content&#039; property, you only need to test one element, rather than one element per media query. Something like this:

@media all and (min-width: 42em) {
  #mq {
    content: &#039;min-width: 42em&#039;
  }
}

@media all and (min-width: 60em) {
  #mq {
    content: &#039;min-width: 60em&#039;
  }
}

You&#039;ll find that all browsers can read the content property, even if it is not displayed on screen.]]></description>
		<content:encoded><![CDATA[<p>If you use CSS’s ‘content’ property, you only need to test one element, rather than one element per media query. Something like this:</p>
<p>@media all and (min-width: 42em) {<br />
  #mq {<br />
    content: ‘min-width: 42em’<br />
  }<br />
}</p>
<p>@media all and (min-width: 60em) {<br />
  #mq {<br />
    content: ‘min-width: 60em’<br />
  }<br />
}</p>
<p>You’ll find that all browsers can read the content property, even if it is not displayed on screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brekk</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1454</link>
		<dc:creator>Brekk</dc:creator>
		<pubDate>Tue, 20 Dec 2011 15:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1454</guid>
		<description><![CDATA[Wow! That&#039;s really exciting &#8212; it offers a wealth of possibilities in the supported browsers. Thanks for posting.]]></description>
		<content:encoded><![CDATA[<p>Wow! That’s really exciting — it offers a wealth of possibilities in the supported browsers. Thanks for posting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1435</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Thu, 01 Dec 2011 12:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1435</guid>
		<description><![CDATA[I&#039;m finding your blog post really hard to read as the font is so thin it doesn&#039;t display very well. And the comments section is even more complicated as its light grey on black which offers no contrast.

Sorry to be a pain, but your putting up barriers to the content.]]></description>
		<content:encoded><![CDATA[<p>I’m finding your blog post really hard to read as the font is so thin it doesn’t display very well. And the comments section is even more complicated as its light grey on black which offers no contrast.</p>
<p>Sorry to be a pain, but your putting up barriers to the content.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Finnern</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1434</link>
		<dc:creator>Marc Finnern</dc:creator>
		<pubDate>Thu, 01 Dec 2011 10:09:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1434</guid>
		<description><![CDATA[Nice Work!]]></description>
		<content:encoded><![CDATA[<p>Nice Work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geert-Jan</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1420</link>
		<dc:creator>Geert-Jan</dc:creator>
		<pubDate>Thu, 17 Nov 2011 16:12:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1420</guid>
		<description><![CDATA[@Dennis: it&#039;s indeed needed for resize and resize alone. Also think of an iPhone user rotating his device from portrait to landscape, etc. 

I think it&#039;s great to have this last part of the circle almost complete.]]></description>
		<content:encoded><![CDATA[<p>@Dennis: it’s indeed needed for resize and resize alone. Also think of an iPhone user rotating his device from portrait to landscape, etc. </p>
<p>I think it’s great to have this last part of the circle almost complete.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Horia Dragomir</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1418</link>
		<dc:creator>Horia Dragomir</dc:creator>
		<pubDate>Thu, 17 Nov 2011 14:32:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1418</guid>
		<description><![CDATA[I think this is great!

Also you can easily use this to determine other aspects of the current navigator, like devicePixelRatio.

It may also solve some viewport problems on handhelds.]]></description>
		<content:encoded><![CDATA[<p>I think this is great!</p>
<p>Also you can easily use this to determine other aspects of the current navigator, like devicePixelRatio.</p>
<p>It may also solve some viewport problems on handhelds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1417</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Thu, 17 Nov 2011 14:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1417</guid>
		<description><![CDATA[I don&#039;t agree with Dennis and think this codes are useful for sure and worth checking out.

Thanks for sharing!


To reply to Dennis;
It&#039;s not only for the user&#039;s expectation, but to optimize both the User Experience and screen / space usage.]]></description>
		<content:encoded><![CDATA[<p>I don’t agree with Dennis and think this codes are useful for sure and worth checking out.</p>
<p>Thanks for sharing!</p>
<p>To reply to Dennis;<br />
It’s not only for the user’s expectation, but to optimize both the User Experience and screen / space usage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://www.paulrhayes.com/2011-11/use-css-transitions-to-link-media-queries-and-javascript/comment-page-1/#comment-1411</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Tue, 08 Nov 2011 12:58:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.paulrhayes.com/?p=145#comment-1411</guid>
		<description><![CDATA[I don&#039;t see the point to trigger event on mediaqueries browser change. Isn&#039;t matchMedia enough to specify different js behaviour from mediaqueries ?

Not sure if users often (not saying never) resize their browser and expect for change in interface.

But maybe i miss something from mistranslation so i&#039;ll be glad to hear your thoughts on this.]]></description>
		<content:encoded><![CDATA[<p>I don’t see the point to trigger event on mediaqueries browser change. Isn’t matchMedia enough to specify different js behaviour from mediaqueries ?</p>
<p>Not sure if users often (not saying never) resize their browser and expect for change in interface.</p>
<p>But maybe i miss something from mistranslation so i’ll be glad to hear your thoughts on this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.514 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-06-20 02:41:17 -->
