<?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: Turning Web Video On Its Head</title>
	<atom:link href="http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/feed/" rel="self" type="application/rss+xml" />
	<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/</link>
	<description>Things that Eric A. Meyer, CSS expert, writes about on his personal Web site; it&#039;s largely Web standards and Web technology, but also various bits of culture, politics, personal observations, and other miscellaneous stuff</description>
	<lastBuildDate>Tue, 18 Jun 2013 15:30:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Zachary Johnson</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-497246</link>
		<dc:creator>Zachary Johnson</dc:creator>
		<pubDate>Tue, 20 Apr 2010 15:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-497246</guid>
		<description><![CDATA[Nice, Eric!

Here&#039;s a version that offloads the animations to the graphics card by using CSS Animations (since this is already Webkit Only):

&lt;code&gt;javascript:(function(){var%20lastSheet=document.styleSheets[document.styleSheets.length-1];lastSheet.insertRule(%22@-webkit-keyframes%20themeyerspin%20{from{-webkit-transform:rotate(0deg);}to{-webkit-transform:rotate(359deg);}}%22,lastSheet.cssRules.length);var%20styles={webkitAnimationIterationCount:&#039;infinite&#039;,webkitAnimationDuration:&#039;18s&#039;,webkitAnimationName:&#039;themeyerspin&#039;,webkitAnimationTimingFunction:&#039;linear&#039;};for(style%20in%20styles){document.getElementsByTagName(&#039;video&#039;)[0].style[style]=styles[style];}})();&lt;/code&gt;

Also, if you only want to target YouTube specifically, then there&#039;s a version of Videotate which will rotate the HTML5 videos and Flash videos equally well:

&lt;code&gt;javascript:(function(){var%20lastSheet=document.styleSheets[document.styleSheets.length-1];lastSheet.insertRule(%22@-webkit-keyframes%20themeyerspin%20{from{-webkit-transform:rotate(0deg);}to{-webkit-transform:rotate(359deg);}}%22,lastSheet.cssRules.length);var%20styles={webkitAnimationIterationCount:&#039;infinite&#039;,webkitAnimationDuration:&#039;18s&#039;,webkitAnimationName:&#039;themeyerspin&#039;,webkitAnimationTimingFunction:&#039;linear&#039;};for(style%20in%20styles){document.getElementById(&#039;watch-player&#039;).style[style]=styles[style];}})();&lt;/code&gt;

I tried to post the bookmarklets as links, but your site smartly prevents javascript URLs in comments in order to keep your readers safe.

Finally, I suppose a Firefox 3.5+ version is a moot point because YouTube is not currently serving things in the Ogg format.  But all you&#039;d have to do is use &lt;code&gt;-moz-transform&lt;/code&gt; instead of &lt;code&gt;-webkit-transform&lt;/code&gt;.]]></description>
		<content:encoded><![CDATA[<p>Nice, Eric!</p>
<p>Here&#8217;s a version that offloads the animations to the graphics card by using CSS Animations (since this is already Webkit Only):</p>
<p><code>javascript:(function(){var%20lastSheet=document.styleSheets[document.styleSheets.length-1];lastSheet.insertRule(%22@-webkit-keyframes%20themeyerspin%20{from{-webkit-transform:rotate(0deg);}to{-webkit-transform:rotate(359deg);}}%22,lastSheet.cssRules.length);var%20styles={webkitAnimationIterationCount:'infinite',webkitAnimationDuration:'18s',webkitAnimationName:'themeyerspin',webkitAnimationTimingFunction:'linear'};for(style%20in%20styles){document.getElementsByTagName('video')[0].style[style]=styles[style];}})();</code></p>
<p>Also, if you only want to target YouTube specifically, then there&#8217;s a version of Videotate which will rotate the HTML5 videos and Flash videos equally well:</p>
<p><code>javascript:(function(){var%20lastSheet=document.styleSheets[document.styleSheets.length-1];lastSheet.insertRule(%22@-webkit-keyframes%20themeyerspin%20{from{-webkit-transform:rotate(0deg);}to{-webkit-transform:rotate(359deg);}}%22,lastSheet.cssRules.length);var%20styles={webkitAnimationIterationCount:'infinite',webkitAnimationDuration:'18s',webkitAnimationName:'themeyerspin',webkitAnimationTimingFunction:'linear'};for(style%20in%20styles){document.getElementById('watch-player').style[style]=styles[style];}})();</code></p>
<p>I tried to post the bookmarklets as links, but your site smartly prevents javascript URLs in comments in order to keep your readers safe.</p>
<p>Finally, I suppose a Firefox 3.5+ version is a moot point because YouTube is not currently serving things in the Ogg format.  But all you&#8217;d have to do is use <code>-moz-transform</code> instead of <code>-webkit-transform</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UltraBob</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-497188</link>
		<dc:creator>UltraBob</dc:creator>
		<pubDate>Mon, 19 Apr 2010 22:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-497188</guid>
		<description><![CDATA[One could argue the first video is very appropriate too with the Japanese word &#039;maware&#039; meaning turn or spin.]]></description>
		<content:encoded><![CDATA[<p>One could argue the first video is very appropriate too with the Japanese word &#8216;maware&#8217; meaning turn or spin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spin your video :: Thimbles &#38; Care</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-497165</link>
		<dc:creator>Spin your video :: Thimbles &#38; Care</dc:creator>
		<pubDate>Mon, 19 Apr 2010 15:34:19 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-497165</guid>
		<description><![CDATA[[...] Turning Web Video On Its Head [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Turning Web Video On Its Head [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496859</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 14 Apr 2010 08:47:24 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496859</guid>
		<description><![CDATA[Brilliant fun! Nothing like watching your favourite video as it spins round slowly :-)]]></description>
		<content:encoded><![CDATA[<p>Brilliant fun! Nothing like watching your favourite video as it spins round slowly :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Billee D.</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496841</link>
		<dc:creator>Billee D.</dc:creator>
		<pubDate>Tue, 13 Apr 2010 23:54:01 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496841</guid>
		<description><![CDATA[So very cool and simple. It&#039;s a great time to be a web professional, isn&#039;t it? Things like this just make me smile about the future of our profession; it&#039;s become more fun all over again. Thanks for sharing, Eric. :)]]></description>
		<content:encoded><![CDATA[<p>So very cool and simple. It&#8217;s a great time to be a web professional, isn&#8217;t it? Things like this just make me smile about the future of our profession; it&#8217;s become more fun all over again. Thanks for sharing, Eric. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Some links for light reading (14/04/10) &#124; Max Design</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496835</link>
		<dc:creator>Some links for light reading (14/04/10) &#124; Max Design</dc:creator>
		<pubDate>Tue, 13 Apr 2010 21:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496835</guid>
		<description><![CDATA[[...] Turning Web Video On Its Head [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Turning Web Video On Its Head [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496754</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Mon, 12 Apr 2010 15:26:15 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496754</guid>
		<description><![CDATA[&lt;a href=&quot;http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496437&quot; rel=&quot;nofollow&quot;&gt;Geoff&lt;/a&gt;: that&#039;s exactly what Simon tweeted (see link in original post).  I went the other way, because I wanted to see videos rotate while playing.  Which they do, if not completely smoothly.]]></description>
		<content:encoded><![CDATA[<p><a href="http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496437" rel="nofollow">Geoff</a>: that&#8217;s exactly what Simon tweeted (see link in original post).  I went the other way, because I wanted to see videos rotate while playing.  Which they do, if not completely smoothly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff Pack</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496437</link>
		<dc:creator>Geoff Pack</dc:creator>
		<pubDate>Fri, 09 Apr 2010 09:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496437</guid>
		<description><![CDATA[Even better: change &#039;video&#039; in the script to &#039;body&#039; and watch the whole page turn...

Doesn&#039;t require HTML 5 video, just a webkit-based browser and any webpage.]]></description>
		<content:encoded><![CDATA[<p>Even better: change &#8216;video&#8217; in the script to &#8216;body&#8217; and watch the whole page turn&#8230;</p>
<p>Doesn&#8217;t require HTML 5 video, just a webkit-based browser and any webpage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fake Sigi</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496284</link>
		<dc:creator>Fake Sigi</dc:creator>
		<pubDate>Wed, 07 Apr 2010 23:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496284</guid>
		<description><![CDATA[Phenomenal. Thanks for posting!

-FS]]></description>
		<content:encoded><![CDATA[<p>Phenomenal. Thanks for posting!</p>
<p>-FS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496281</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Wed, 07 Apr 2010 22:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496281</guid>
		<description><![CDATA[Thanks, Eric. I noticed supported videos say &quot;html5&quot; during the loading screen.]]></description>
		<content:encoded><![CDATA[<p>Thanks, Eric. I noticed supported videos say &#8220;html5&#8243; during the loading screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496280</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Wed, 07 Apr 2010 22:17:17 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496280</guid>
		<description><![CDATA[Ah, good point, &lt;a href=&quot;http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496279&quot; rel=&quot;nofollow&quot;&gt;Paul&lt;/a&gt;.  Post updated to reflect that!]]></description>
		<content:encoded><![CDATA[<p>Ah, good point, <a href="http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496279" rel="nofollow">Paul</a>.  Post updated to reflect that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul D, Waite</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496279</link>
		<dc:creator>Paul D, Waite</dc:creator>
		<pubDate>Wed, 07 Apr 2010 22:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496279</guid>
		<description><![CDATA[Works great in Chrome 4 too.]]></description>
		<content:encoded><![CDATA[<p>Works great in Chrome 4 too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496277</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Wed, 07 Apr 2010 21:56:17 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496277</guid>
		<description><![CDATA[Whoops—it turns out that some of the videos I linked are not available in HTML5, only Flash.  I&#039;ll update the links, but try &quot;Walk Don&#039;t Run&quot;—that&#039;s the one that consistently works for me.  Thanks for the heads-up, &lt;a href=&quot;http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496275&quot; rel=&quot;nofollow&quot;&gt;Joe&lt;/a&gt;!]]></description>
		<content:encoded><![CDATA[<p>Whoops—it turns out that some of the videos I linked are not available in HTML5, only Flash.  I&#8217;ll update the links, but try &#8220;Walk Don&#8217;t Run&#8221;—that&#8217;s the one that consistently works for me.  Thanks for the heads-up, <a href="http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496275" rel="nofollow">Joe</a>!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496275</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Wed, 07 Apr 2010 21:47:27 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496275</guid>
		<description><![CDATA[I&#039;m sorry... I tried this and it is not working for me. Says it can&#039;t find elementbytagname(&#039;video&#039;)

I am opted in to html5, using safari, clicked on one of your youtube links.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry&#8230; I tried this and it is not working for me. Says it can&#8217;t find elementbytagname(&#8216;video&#8217;)</p>
<p>I am opted in to html5, using safari, clicked on one of your youtube links.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan Davis</title>
		<link>http://meyerweb.com/eric/thoughts/2010/04/07/turning-web-video-on-its-head/#comment-496262</link>
		<dc:creator>Bryan Davis</dc:creator>
		<pubDate>Wed, 07 Apr 2010 19:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1314#comment-496262</guid>
		<description><![CDATA[It&#039;s even more fun than you think! Try clicking the bookmarklet more than once!]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s even more fun than you think! Try clicking the bookmarklet more than once!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->