<?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: iPhone Safari Flick Navigation By Example</title>
	<atom:link href="http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: BossMojo</title>
		<link>http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example/comment-page-1#comment-271816</link>
		<dc:creator>BossMojo</dc:creator>
		<pubDate>Thu, 05 Mar 2009 19:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4028#comment-271816</guid>
		<description>Here is the link to the full post and examples.  I had been looking for it too since the link broke:

http://mydailyphoto.com/blog/iphone-safari-flick-navigation/</description>
		<content:encoded><![CDATA[<p>Here is the link to the full post and examples.  I had been looking for it too since the link broke:</p>
<p><a href="http://mydailyphoto.com/blog/iphone-safari-flick-navigation/" rel="nofollow">http://mydailyphoto.com/blog/iphone-safari-flick-navigation/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: malaki1974</title>
		<link>http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example/comment-page-1#comment-271154</link>
		<dc:creator>malaki1974</dc:creator>
		<pubDate>Thu, 05 Feb 2009 23:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4028#comment-271154</guid>
		<description>Link is down...anyone? I just discovered this last week and it worked. Now it is broken.</description>
		<content:encoded><![CDATA[<p>Link is down&#8230;anyone? I just discovered this last week and it worked. Now it is broken.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ggw</title>
		<link>http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example/comment-page-1#comment-268871</link>
		<dc:creator>ggw</dc:creator>
		<pubDate>Mon, 10 Nov 2008 05:19:17 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4028#comment-268871</guid>
		<description>Sorry... but an iPhone flick doesn&#039;t work that way.

The animation needs to follow the movement of the finger *as the finger moves*.  For example, go to the weather app where you have more than one panel.  As you move your finger horizontally across the screen, the panel moves along with it.  When you slide your finger all the way over to the edge, the panel moves off the screen and the next one slides into place.  Now, if you do this really fast, as in a flick motion, all this happens in an instant.

It is possible to duplicate this behavior with CSS transforms, but this isn&#039;t the way to do it.</description>
		<content:encoded><![CDATA[<p>Sorry&#8230; but an iPhone flick doesn&#8217;t work that way.</p>
<p>The animation needs to follow the movement of the finger *as the finger moves*.  For example, go to the weather app where you have more than one panel.  As you move your finger horizontally across the screen, the panel moves along with it.  When you slide your finger all the way over to the edge, the panel moves off the screen and the next one slides into place.  Now, if you do this really fast, as in a flick motion, all this happens in an instant.</p>
<p>It is possible to duplicate this behavior with CSS transforms, but this isn&#8217;t the way to do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cajhughes</title>
		<link>http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example/comment-page-1#comment-268501</link>
		<dc:creator>cajhughes</dc:creator>
		<pubDate>Wed, 29 Oct 2008 02:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4028#comment-268501</guid>
		<description>Thanks to Matt for a great example piece of code.

Just one note, for anyone interested in doing something similar, that the code can be simplified by making use of the CSS &quot;-webkit-transition-property&quot;.  You can specify that &quot;-webkit-transition-property&quot; be set to &quot;left&quot;, then when the left property value is changed, the transition will animate the element to its new position; based on the &quot;-webkit-transition-duration&quot; and &quot;-webkit-transition-timing-function&quot; settings.

Hope that helps anyone else looking to do something similar.</description>
		<content:encoded><![CDATA[<p>Thanks to Matt for a great example piece of code.</p>
<p>Just one note, for anyone interested in doing something similar, that the code can be simplified by making use of the CSS &#8220;-webkit-transition-property&#8221;.  You can specify that &#8220;-webkit-transition-property&#8221; be set to &#8220;left&#8221;, then when the left property value is changed, the transition will animate the element to its new position; based on the &#8220;-webkit-transition-duration&#8221; and &#8220;-webkit-transition-timing-function&#8221; settings.</p>
<p>Hope that helps anyone else looking to do something similar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mattcongrove</title>
		<link>http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example/comment-page-1#comment-266694</link>
		<dc:creator>mattcongrove</dc:creator>
		<pubDate>Thu, 14 Aug 2008 22:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4028#comment-266694</guid>
		<description>j4k3 -

Yes, you can use it to animate colors, border sizes, opacity, and pretty much any other CSS property. So, for instance, you could do a nice Scriptaculous-esque fade-out without Scriptaculous. I&#039;m sure that the iPhone Safari Developer page has some more insight on exactly what properties are supported; I suggest you go there for the final word.

To answer your question about the trigger, do it through JavaScript. For instance, in the example in the blog post, I&#039;d change the class name of a DIV to &#039;divSlide&#039; through JS. This would then grab the styles for the new class, sees the animation call, and pulls up the keyframes.

Check out the blog entry I wrote (the &#039;myDailyPhoto&#039; link above) for a whole bunch of information on this stuff.

- Matt Congrove</description>
		<content:encoded><![CDATA[<p>j4k3 -</p>
<p>Yes, you can use it to animate colors, border sizes, opacity, and pretty much any other CSS property. So, for instance, you could do a nice Scriptaculous-esque fade-out without Scriptaculous. I&#8217;m sure that the iPhone Safari Developer page has some more insight on exactly what properties are supported; I suggest you go there for the final word.</p>
<p>To answer your question about the trigger, do it through JavaScript. For instance, in the example in the blog post, I&#8217;d change the class name of a DIV to &#8216;divSlide&#8217; through JS. This would then grab the styles for the new class, sees the animation call, and pulls up the keyframes.</p>
<p>Check out the blog entry I wrote (the &#8216;myDailyPhoto&#8217; link above) for a whole bunch of information on this stuff.</p>
<p>- Matt Congrove</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: j4k3</title>
		<link>http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example/comment-page-1#comment-266691</link>
		<dc:creator>j4k3</dc:creator>
		<pubDate>Thu, 14 Aug 2008 20:59:11 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4028#comment-266691</guid>
		<description>OMFG, this is simply awesome!

Say, does the &#039;animation&#039; and &#039;keyframe&#039;- from and to keywords state, that it can actually do much more than just move objects? Like if I tell the stylesheet to animate...

from { background-color: green; }
to { background-color: blue; }

..will it animate the background? And how is the animation triggered?</description>
		<content:encoded><![CDATA[<p>OMFG, this is simply awesome!</p>
<p>Say, does the &#8216;animation&#8217; and &#8216;keyframe&#8217;- from and to keywords state, that it can actually do much more than just move objects? Like if I tell the stylesheet to animate&#8230;</p>
<p>from { background-color: green; }<br />
to { background-color: blue; }</p>
<p>..will it animate the background? And how is the animation triggered?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: someguynameddylan</title>
		<link>http://ajaxian.com/archives/iphone-safari-flick-navigation-by-example/comment-page-1#comment-266474</link>
		<dc:creator>someguynameddylan</dc:creator>
		<pubDate>Thu, 07 Aug 2008 01:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4028#comment-266474</guid>
		<description>Booooo!
That&#039;s just too easy, for old time&#039;s sake could you throw in some old school css hacks ;P

Well done.</description>
		<content:encoded><![CDATA[<p>Booooo!<br />
That&#8217;s just too easy, for old time&#8217;s sake could you throw in some old school css hacks ;P</p>
<p>Well done.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

