<?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: css transforms: styling the web in two dimensions</title>
	<atom:link href="http://hacks.mozilla.org/2009/07/css-transforms/feed/" rel="self" type="application/rss+xml" />
	<link>http://hacks.mozilla.org/2009/07/css-transforms/</link>
	<description>hacks.mozilla.org</description>
	<lastBuildDate>Fri, 10 Feb 2012 00:05:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sjoerd Visscher</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-2236</link>
		<dc:creator>Sjoerd Visscher</dc:creator>
		<pubDate>Wed, 22 Jul 2009 11:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-2236</guid>
		<description>The transformed text looks way better in Chrome than in Firefox. Chrome doesn&#039;t have the issues Jim B talks about.</description>
		<content:encoded><![CDATA[<p>The transformed text looks way better in Chrome than in Firefox. Chrome doesn&#8217;t have the issues Jim B talks about.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Shepherd</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-2045</link>
		<dc:creator>Eric Shepherd</dc:creator>
		<pubDate>Fri, 17 Jul 2009 18:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-2045</guid>
		<description>I&#039;ve updated the sample on my web site to work in WebKit based browsers. The differences are pretty minor; instead of

  text1.style.MozTransform = &quot;skewx(&quot; + text1SkewAngle + &quot;deg)&quot;;

I just do

  text1.style.MozTransform = &quot;skewx(&quot; + text1SkewAngle + &quot;deg)&quot;;
  text1.style.WebkitTransform = &quot;skewx(&quot; + text1SkewAngle + &quot;deg)&quot;;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve updated the sample on my web site to work in WebKit based browsers. The differences are pretty minor; instead of</p>
<p>  text1.style.MozTransform = &#8220;skewx(&#8221; + text1SkewAngle + &#8220;deg)&#8221;;</p>
<p>I just do</p>
<p>  text1.style.MozTransform = &#8220;skewx(&#8221; + text1SkewAngle + &#8220;deg)&#8221;;<br />
  text1.style.WebkitTransform = &#8220;skewx(&#8221; + text1SkewAngle + &#8220;deg)&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Shepherd</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-1999</link>
		<dc:creator>Eric Shepherd</dc:creator>
		<pubDate>Thu, 16 Jul 2009 21:55:09 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-1999</guid>
		<description>Sorry about that with the webkit compatibility; I&#039;ll fix the demo tomorrow when I have a few minutes to update it. Just slipped through the cracks.</description>
		<content:encoded><![CDATA[<p>Sorry about that with the webkit compatibility; I&#8217;ll fix the demo tomorrow when I have a few minutes to update it. Just slipped through the cracks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nemo</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-1937</link>
		<dc:creator>nemo</dc:creator>
		<pubDate>Wed, 15 Jul 2009 15:31:26 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-1937</guid>
		<description>Oh. And the scrollbar doesn&#039;t have that odd behaviour in Safari.</description>
		<content:encoded><![CDATA[<p>Oh. And the scrollbar doesn&#8217;t have that odd behaviour in Safari.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nemo</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-1933</link>
		<dc:creator>nemo</dc:creator>
		<pubDate>Wed, 15 Jul 2009 13:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-1933</guid>
		<description>http://m8y.org/tmp/www.bitstampede.com/demos/css-transforms/

This is a fix of his demo to support Webkit.</description>
		<content:encoded><![CDATA[<p><a href="http://m8y.org/tmp/www.bitstampede.com/demos/css-transforms/" rel="nofollow">http://m8y.org/tmp/www.bitstampede.com/demos/css-transforms/</a></p>
<p>This is a fix of his demo to support Webkit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken Arnold</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-1897</link>
		<dc:creator>Ken Arnold</dc:creator>
		<pubDate>Tue, 14 Jul 2009 15:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-1897</guid>
		<description>Still playing with this page using Firebug... If you rotate an element like the `div.code` or `pre` elements in this article, the height of the enclosing element (the `div.wp_syntax` with scrollbars) doesn&#039;t change, and the rotated text gets cut off. Can anyone explain why that happens and how to get the bounding box to superscribe the transformed element?</description>
		<content:encoded><![CDATA[<p>Still playing with this page using Firebug&#8230; If you rotate an element like the `div.code` or `pre` elements in this article, the height of the enclosing element (the `div.wp_syntax` with scrollbars) doesn&#8217;t change, and the rotated text gets cut off. Can anyone explain why that happens and how to get the bounding box to superscribe the transformed element?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken Arnold</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-1862</link>
		<dc:creator>Ken Arnold</dc:creator>
		<pubDate>Mon, 13 Jul 2009 22:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-1862</guid>
		<description>Was just playing with this a bit, trying to find a productive use for the skew transform. Well I don&#039;t know if this counts, but: open up Firebug, and inspect one of the .wp_syntax elements. Add `-moz-transform: skewx(-3deg)` to the .wp_syntax style (right pane), and `-moz-transform: skewx(3deg)` to `.wp_syntax pre`&#039;s styles (two elements down).

Combined with a little -moz-border-radius, it might be a nice effect for making text stand out. Or it might just make you feel like your monitor is tilted. Your call.</description>
		<content:encoded><![CDATA[<p>Was just playing with this a bit, trying to find a productive use for the skew transform. Well I don&#8217;t know if this counts, but: open up Firebug, and inspect one of the .wp_syntax elements. Add `-moz-transform: skewx(-3deg)` to the .wp_syntax style (right pane), and `-moz-transform: skewx(3deg)` to `.wp_syntax pre`&#8217;s styles (two elements down).</p>
<p>Combined with a little -moz-border-radius, it might be a nice effect for making text stand out. Or it might just make you feel like your monitor is tilted. Your call.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim B</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-1857</link>
		<dc:creator>Jim B</dc:creator>
		<pubDate>Mon, 13 Jul 2009 19:40:17 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-1857</guid>
		<description>Wow, that text looks terrible.  Ideally the text would look rigid during translation/rotation/scaling, but the character spacing hops all over the place.  It seems like there is some quantization going on that is independent of the eventual display resolution/orientation.

Perhaps font hinting is done assuming some default size/offset/rotation, then the transformation is applied, resulting in the ratcheting.</description>
		<content:encoded><![CDATA[<p>Wow, that text looks terrible.  Ideally the text would look rigid during translation/rotation/scaling, but the character spacing hops all over the place.  It seems like there is some quantization going on that is independent of the eventual display resolution/orientation.</p>
<p>Perhaps font hinting is done assuming some default size/offset/rotation, then the transformation is applied, resulting in the ratcheting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://hacks.mozilla.org/2009/07/css-transforms/comment-page-1/#comment-1856</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 13 Jul 2009 19:15:21 +0000</pubDate>
		<guid isPermaLink="false">http://hacks.mozilla.org/?p=1365#comment-1856</guid>
		<description>As far as I can tell, these transforms don&#039;t actually put any content past the right edge of the screen, so why do they produce a widened document and corresponding horizontal scrollbar?</description>
		<content:encoded><![CDATA[<p>As far as I can tell, these transforms don&#8217;t actually put any content past the right edge of the screen, so why do they produce a widened document and corresponding horizontal scrollbar?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

