<?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: QuickFlip 2: The jQuery Flipping Plugin Made Faster and Simpler</title>
	<atom:link href="http://jonraasch.com/blog/quickflip-2-jquery-plugin/feed" rel="self" type="application/rss+xml" />
	<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin</link>
	<description>Web development and design blog from Portland based developer Jon Raasch</description>
	<lastBuildDate>Wed, 10 Mar 2010 18:52:40 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alastair</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-2#comment-1997</link>
		<dc:creator>Alastair</dc:creator>
		<pubDate>Thu, 18 Feb 2010 15:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1997</guid>
		<description>can anyone help with the above?

Thanks</description>
		<content:encoded><![CDATA[<p>can anyone help with the above?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 40+ Fresh And New jQuery Plugins Of Slider's And Gallery's Tutorials</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-2#comment-1954</link>
		<dc:creator>40+ Fresh And New jQuery Plugins Of Slider's And Gallery's Tutorials</dc:creator>
		<pubDate>Mon, 15 Feb 2010 09:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1954</guid>
		<description>[...] QuickFlip 2: The jQuery Flipping Plugin Made Faster and Simpler [...]</description>
		<content:encoded><![CDATA[<p>[...] QuickFlip 2: The jQuery Flipping Plugin Made Faster and Simpler [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 15 New jQuery Plugins To Help You Conquer The Web &#171; Design Works</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-2#comment-1750</link>
		<dc:creator>15 New jQuery Plugins To Help You Conquer The Web &#171; Design Works</dc:creator>
		<pubDate>Thu, 21 Jan 2010 13:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1750</guid>
		<description>[...] 11. QuickFlip 2 [...]</description>
		<content:encoded><![CDATA[<p>[...] 11. QuickFlip 2 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alastair</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-2#comment-1738</link>
		<dc:creator>Alastair</dc:creator>
		<pubDate>Thu, 14 Jan 2010 12:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1738</guid>
		<description>This is such a good plug-in, and just what I&#039;m after! There&#039;s one thing I can&#039;t quite figure out. I have a a page with about 12 panels on. I&#039;m trying to get the panel to automatically switch back after mouse over so that only one panel is ever open at a time.

the code I&#039;m using is:

	$(function() {

	    // for performance first init the quickFlip
	    $(&#039;.quickFlip&#039;).quickFlipper();

	    // set up a hover effect for each of the quickflip wrappers
	    for ( var i = 0; i &lt; $.quickFlip.wrappers.length; i++ ) {
	        var thisOne = $.quickFlip.wrappers[i];

	        $( thisOne.wrapper ).hover( function(ev) {
	            var $target = $(ev.target);
	            // make sure it isn&#039;t a child node
	            if ( !$target.hasClass(&#039;quickFlip&#039;) ) $target = $target.parent();

	            $target.quickFlipper();
	        },
	        function(ev) {
	            var $target = $(ev.target);
	            // make sure it isn&#039;t a child node
	            if ( !$target.hasClass(&#039;quickFlip&#039;) ) $target = $target.parent();

	            $target.quickFlipper();
	        }); 
	    }
	});


However it can be a little bit temperamental, when hovering over panels at speed.

is there a better way to achieve this effect?

Many Thanks</description>
		<content:encoded><![CDATA[<p>This is such a good plug-in, and just what I&#8217;m after! There&#8217;s one thing I can&#8217;t quite figure out. I have a a page with about 12 panels on. I&#8217;m trying to get the panel to automatically switch back after mouse over so that only one panel is ever open at a time.</p>
<p>the code I&#8217;m using is:</p>
<p>	$(function() {</p>
<p>	    // for performance first init the quickFlip<br />
	    $(&#8216;.quickFlip&#8217;).quickFlipper();</p>
<p>	    // set up a hover effect for each of the quickflip wrappers<br />
	    for ( var i = 0; i &lt; $.quickFlip.wrappers.length; i++ ) {<br />
	        var thisOne = $.quickFlip.wrappers[i];</p>
<p>	        $( thisOne.wrapper ).hover( function(ev) {<br />
	            var $target = $(ev.target);<br />
	            // make sure it isn&#039;t a child node<br />
	            if ( !$target.hasClass(&#039;quickFlip&#039;) ) $target = $target.parent();</p>
<p>	            $target.quickFlipper();<br />
	        },<br />
	        function(ev) {<br />
	            var $target = $(ev.target);<br />
	            // make sure it isn&#039;t a child node<br />
	            if ( !$target.hasClass(&#039;quickFlip&#039;) ) $target = $target.parent();</p>
<p>	            $target.quickFlipper();<br />
	        });<br />
	    }<br />
	});</p>
<p>However it can be a little bit temperamental, when hovering over panels at speed.</p>
<p>is there a better way to achieve this effect?</p>
<p>Many Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-2#comment-1734</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Sun, 10 Jan 2010 10:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1734</guid>
		<description>Hi.

Great plugin.

A quick question. Is there anyway for me to put the plugin in loop? I mean, keep flipping every x seconds automatically. 

Best,
Daniel</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p>Great plugin.</p>
<p>A quick question. Is there anyway for me to put the plugin in loop? I mean, keep flipping every x seconds automatically. </p>
<p>Best,<br />
Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flip HTML Elements like Cards: QuickFlip 2.0 JQuery Plugin</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-2#comment-1728</link>
		<dc:creator>Flip HTML Elements like Cards: QuickFlip 2.0 JQuery Plugin</dc:creator>
		<pubDate>Tue, 05 Jan 2010 15:55:08 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1728</guid>
		<description>[...] QuickFlip 2 is a JQuery Flipping Plugin that flips DIVs, paragraphs and other HTML elements like a card. It is very easy to use the plugin. You just have to call the flip animation through a JQuery selector and the script will flip the front panel to show its back. [...]</description>
		<content:encoded><![CDATA[<p>[...] QuickFlip 2 is a JQuery Flipping Plugin that flips DIVs, paragraphs and other HTML elements like a card. It is very easy to use the plugin. You just have to call the flip animation through a JQuery selector and the script will flip the front panel to show its back. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jQuery ile kart ?ßevirme efekti eklentisi: QuickFlip2 &#124; sanalduvar</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-2#comment-1717</link>
		<dc:creator>jQuery ile kart ?ßevirme efekti eklentisi: QuickFlip2 &#124; sanalduvar</dc:creator>
		<pubDate>Tue, 29 Dec 2009 23:11:27 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1717</guid>
		<description>[...] sayfaya yerle?ütirme ve kodlarƒ±n a?ßƒ±klamalarƒ± hakkƒ±ndaki bilgileri QuickFlip2 i?ßin buradan [...]</description>
		<content:encoded><![CDATA[<p>[...] sayfaya yerle?ütirme ve kodlarƒ±n a?ßƒ±klamalarƒ± hakkƒ±ndaki bilgileri QuickFlip2 i?ßin buradan [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Raasch</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-2#comment-1640</link>
		<dc:creator>Jon Raasch</dc:creator>
		<pubDate>Mon, 23 Nov 2009 16:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1640</guid>
		<description>QuickFlip 2.1 is released!  http://dev.jonraasch.com/quickflip/download  This update addresses a number of feature requests and provides a sizable performance boost.

@Andrew - Now you can flip content horizontally as well as vertically - to flip vertically pass the option &lt;code&gt;vertical : true&lt;/code&gt;.

@Takazudo + @Dan Meehan - A switch has been built in to disable the window resize event - pass &lt;code&gt;noResize : true&lt;/code&gt; in the options.

Other than that a portion of the script was eseentially rewriting jQuery&#039;s &lt;code&gt;clone()&lt;/code&gt; method (and pretty poorly I might add :)).  This has been replaced with the &lt;code&gt;clone()&lt;/code&gt; method for a noticeable performance increase, especially in IE 7.

I tested 2.1 in most browsers and in a variety of situations but please let me know if anything comes up.

Best,
Jon</description>
		<content:encoded><![CDATA[<p>QuickFlip 2.1 is released!  <a href="http://dev.jonraasch.com/quickflip/download" rel="nofollow">http://dev.jonraasch.com/quickflip/download</a>  This update addresses a number of feature requests and provides a sizable performance boost.</p>
<p>@Andrew &#8211; Now you can flip content horizontally as well as vertically &#8211; to flip vertically pass the option <code>vertical : true</code>.</p>
<p>@Takazudo + @Dan Meehan &#8211; A switch has been built in to disable the window resize event &#8211; pass <code>noResize : true</code> in the options.</p>
<p>Other than that a portion of the script was eseentially rewriting jQuery&#8217;s <code>clone()</code> method (and pretty poorly I might add <img src='http://jonraasch.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ).  This has been replaced with the <code>clone()</code> method for a noticeable performance increase, especially in IE 7.</p>
<p>I tested 2.1 in most browsers and in a variety of situations but please let me know if anything comes up.</p>
<p>Best,<br />
Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Raasch</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-1#comment-1637</link>
		<dc:creator>Jon Raasch</dc:creator>
		<pubDate>Mon, 23 Nov 2009 00:44:04 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1637</guid>
		<description>@brokenone - You&#039;ll have to write a little bit of JS, but QuickFlip has all the utilities you need to make this happen.  You&#039;ll want to use the $.quickFlipper() method to trigger the flip manually, and attach that to a timeout.  If you are using two panels that should be all you need, however if you have 3 or more you&#039;ll have to be a bit more careful and pass the appropriate panel index to the quickFlipper() method.

Check out the documentation (http://dev.jonraasch.com/quickflip/docs) for more info.</description>
		<content:encoded><![CDATA[<p>@brokenone &#8211; You&#8217;ll have to write a little bit of JS, but QuickFlip has all the utilities you need to make this happen.  You&#8217;ll want to use the $.quickFlipper() method to trigger the flip manually, and attach that to a timeout.  If you are using two panels that should be all you need, however if you have 3 or more you&#8217;ll have to be a bit more careful and pass the appropriate panel index to the quickFlipper() method.</p>
<p>Check out the documentation (<a href="http://dev.jonraasch.com/quickflip/docs" rel="nofollow">http://dev.jonraasch.com/quickflip/docs</a>) for more info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Raasch</title>
		<link>http://jonraasch.com/blog/quickflip-2-jquery-plugin/comment-page-1#comment-1636</link>
		<dc:creator>Jon Raasch</dc:creator>
		<pubDate>Mon, 23 Nov 2009 00:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://jonraasch.com/blog/?p=114#comment-1636</guid>
		<description>@Takazudo and @Dan Meehan - The widow resize event adjusts the dimensions of the quickflip panels which can become unaligned if using percentage based widths in CSS that are effected by the window size.  I&#039;ll work in a variable to turn this off and on soon (however I will most likely have it default to on).

@W. Shawn - Minified version is now included with the QuickFlip download: http://dev.jonraasch.com/quickflip/download - I reworked a bit of the codebase to be more friendly to the YUI compressor, and the filesize of the minified version is now 4kb :).</description>
		<content:encoded><![CDATA[<p>@Takazudo and @Dan Meehan &#8211; The widow resize event adjusts the dimensions of the quickflip panels which can become unaligned if using percentage based widths in CSS that are effected by the window size.  I&#8217;ll work in a variable to turn this off and on soon (however I will most likely have it default to on).</p>
<p>@W. Shawn &#8211; Minified version is now included with the QuickFlip download: <a href="http://dev.jonraasch.com/quickflip/download" rel="nofollow">http://dev.jonraasch.com/quickflip/download</a> &#8211; I reworked a bit of the codebase to be more friendly to the YUI compressor, and the filesize of the minified version is now 4kb <img src='http://jonraasch.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
</channel>
</rss>
