<?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: Animate Curtains Opening with jQuery</title>
	<atom:link href="http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/</link>
	<description>Web Design, Development, and Business</description>
	<lastBuildDate>Wed, 08 Feb 2012 22:59:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: serge</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32928</link>
		<dc:creator>serge</dc:creator>
		<pubDate>Wed, 08 Feb 2012 19:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32928</guid>
		<description>how is that the curtain opens all alone?? please it&#039;s urgent et je n&#039;y comprends plus rien
merci</description>
		<content:encoded><![CDATA[<p>how is that the curtain opens all alone?? please it&#8217;s urgent et je n&#8217;y comprends plus rien<br />
merci</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lukas B.</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32866</link>
		<dc:creator>Lukas B.</dc:creator>
		<pubDate>Fri, 03 Feb 2012 12:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32866</guid>
		<description>Hey, I thinked it would be cool if the curtain &quot;remembers&quot; its state.
The new sessionStorage is a nice way:


		$(document).ready(function() {
			if(sessionStorage.getItem(&quot;vorhang&quot;) == null){
				sessionStorage.setItem(&quot;vorhang&quot;,&quot;false&quot;);
			}
			if(sessionStorage.getItem(&quot;vorhang&quot;) == &quot;true&quot;){
					$(&quot;.rope&quot;).stop().animate({top: &#039;0px&#039; }, {queue:false, duration:0, easing:&#039;easeOutBounce&#039;}); 
					$(&quot;.leftcurtain&quot;).stop().animate({width:&#039;60px&#039;}, 0 );
					$(&quot;.rightcurtain&quot;).stop().animate({width:&#039;60px&#039;},0 );
					
	
			}
			$(&quot;.rope&quot;).click(function(){
				$(this).blur();
				//$curtainopen=localStorage.getItem(&quot;vorhang&quot;);
				if (sessionStorage.getItem(&quot;vorhang&quot;) == &quot;false&quot;){ 
					$(this).stop().animate({top: &#039;0px&#039; }, {queue:false, duration:350, easing:&#039;easeOutBounce&#039;}); 
					$(&quot;.leftcurtain&quot;).stop().animate({width:&#039;60px&#039;}, 2000 );
					$(&quot;.rightcurtain&quot;).stop().animate({width:&#039;60px&#039;},2000 );
					sessionStorage.setItem(&quot;vorhang&quot;,&quot;true&quot;);
				}else{
					$(this).stop().animate({top: &#039;-40px&#039; }, {queue:false, duration:350, easing:&#039;easeOutBounce&#039;}); 
					$(&quot;.leftcurtain&quot;).stop().animate({width:&#039;50%&#039;}, 2000 );
					$(&quot;.rightcurtain&quot;).stop().animate({width:&#039;53%&#039;}, 2000 );
					sessionStorage.setItem(&quot;vorhang&quot;,&quot;false&quot;);
				}
				return false;
			});
			
		});
		
	

One point I haven&#039;t fixed yet is to make a cooler way to restore the old status of the curtain. At the moment I run the part funktions to open it in a short time... on slow browsers this maybe cause a flashing before the curtain is open again.
Maybe somebody has an other idea.</description>
		<content:encoded><![CDATA[<p>Hey, I thinked it would be cool if the curtain &#8220;remembers&#8221; its state.<br />
The new sessionStorage is a nice way:</p>
<p>		$(document).ready(function() {<br />
			if(sessionStorage.getItem(&#8220;vorhang&#8221;) == null){<br />
				sessionStorage.setItem(&#8220;vorhang&#8221;,&#8221;false&#8221;);<br />
			}<br />
			if(sessionStorage.getItem(&#8220;vorhang&#8221;) == &#8220;true&#8221;){<br />
					$(&#8220;.rope&#8221;).stop().animate({top: &#8217;0px&#8217; }, {queue:false, duration:0, easing:&#8217;easeOutBounce&#8217;});<br />
					$(&#8220;.leftcurtain&#8221;).stop().animate({width:&#8217;60px&#8217;}, 0 );<br />
					$(&#8220;.rightcurtain&#8221;).stop().animate({width:&#8217;60px&#8217;},0 );</p>
<p>			}<br />
			$(&#8220;.rope&#8221;).click(function(){<br />
				$(this).blur();<br />
				//$curtainopen=localStorage.getItem(&#8220;vorhang&#8221;);<br />
				if (sessionStorage.getItem(&#8220;vorhang&#8221;) == &#8220;false&#8221;){<br />
					$(this).stop().animate({top: &#8217;0px&#8217; }, {queue:false, duration:350, easing:&#8217;easeOutBounce&#8217;});<br />
					$(&#8220;.leftcurtain&#8221;).stop().animate({width:&#8217;60px&#8217;}, 2000 );<br />
					$(&#8220;.rightcurtain&#8221;).stop().animate({width:&#8217;60px&#8217;},2000 );<br />
					sessionStorage.setItem(&#8220;vorhang&#8221;,&#8221;true&#8221;);<br />
				}else{<br />
					$(this).stop().animate({top: &#8216;-40px&#8217; }, {queue:false, duration:350, easing:&#8217;easeOutBounce&#8217;});<br />
					$(&#8220;.leftcurtain&#8221;).stop().animate({width:&#8217;50%&#8217;}, 2000 );<br />
					$(&#8220;.rightcurtain&#8221;).stop().animate({width:&#8217;53%&#8217;}, 2000 );<br />
					sessionStorage.setItem(&#8220;vorhang&#8221;,&#8221;false&#8221;);<br />
				}<br />
				return false;<br />
			});</p>
<p>		});</p>
<p>One point I haven&#8217;t fixed yet is to make a cooler way to restore the old status of the curtain. At the moment I run the part funktions to open it in a short time&#8230; on slow browsers this maybe cause a flashing before the curtain is open again.<br />
Maybe somebody has an other idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Collection of jQuery Tutorials And Plugins To Impress Your Friends</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32836</link>
		<dc:creator>Collection of jQuery Tutorials And Plugins To Impress Your Friends</dc:creator>
		<pubDate>Tue, 31 Jan 2012 02:42:10 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32836</guid>
		<description>[...] Animate Curtains Opening with jQuery ? [...]</description>
		<content:encoded><![CDATA[<p>[...] Animate Curtains Opening with jQuery ? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: serge</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32776</link>
		<dc:creator>serge</dc:creator>
		<pubDate>Mon, 23 Jan 2012 16:20:49 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32776</guid>
		<description>grieved for my English but how is that the curtain opens automatically???
thank you</description>
		<content:encoded><![CDATA[<p>grieved for my English but how is that the curtain opens automatically???<br />
thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: serge</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32765</link>
		<dc:creator>serge</dc:creator>
		<pubDate>Sun, 22 Jan 2012 11:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32765</guid>
		<description>Fantastique je recherchais ca pour un site d&#039;une association pour le théatre et voila se script un grand merci. Je ne connais pas le jquery et voila ma question.
quand on va sur ma page en construction  http://troupesenscenes.voila.net on clique sur le rideau pour l&#039;ouvrir mais j&#039;aimerais que pour mes autres pages le rideau puisse s&#039;ouvrir tout seul exemple quand je clique sur le lien présentation le rideau puisse s&#039;ouvrir seul. est ce possible set si oui comment ??  MERCI</description>
		<content:encoded><![CDATA[<p>Fantastique je recherchais ca pour un site d&#8217;une association pour le théatre et voila se script un grand merci. Je ne connais pas le jquery et voila ma question.<br />
quand on va sur ma page en construction  <a href="http://troupesenscenes.voila.net" rel="nofollow">http://troupesenscenes.voila.net</a> on clique sur le rideau pour l&#8217;ouvrir mais j&#8217;aimerais que pour mes autres pages le rideau puisse s&#8217;ouvrir tout seul exemple quand je clique sur le lien présentation le rideau puisse s&#8217;ouvrir seul. est ce possible set si oui comment ??  MERCI</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 50 Best jQuery Visual Tutorials Every Web Designer Must Look At &#124; CS5 Design</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32749</link>
		<dc:creator>50 Best jQuery Visual Tutorials Every Web Designer Must Look At &#124; CS5 Design</dc:creator>
		<pubDate>Fri, 20 Jan 2012 05:28:36 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32749</guid>
		<description>[...] 34. Animate Curtain Openings With Jquery [...]</description>
		<content:encoded><![CDATA[<p>[...] 34. Animate Curtain Openings With Jquery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Padasalgi</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32737</link>
		<dc:creator>Padasalgi</dc:creator>
		<pubDate>Wed, 18 Jan 2012 22:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32737</guid>
		<description>Is it posible to put slide show inside the curtain insted of an image.
thanks</description>
		<content:encoded><![CDATA[<p>Is it posible to put slide show inside the curtain insted of an image.<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress News - Best examples of jQuery Sliders Effects and WordPress PluginsWordpress News</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32626</link>
		<dc:creator>Wordpress News - Best examples of jQuery Sliders Effects and WordPress PluginsWordpress News</dc:creator>
		<pubDate>Fri, 06 Jan 2012 18:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32626</guid>
		<description>[...] Animated Curtain This tutorial would not be anything special without the graphics, so let’s make sure you’ve got those under control. I’ve included the ones used in demo as part of the attached files, now would be a good time to download them if you intend to use them. [...]</description>
		<content:encoded><![CDATA[<p>[...] Animated Curtain This tutorial would not be anything special without the graphics, so let’s make sure you’ve got those under control. I’ve included the ones used in demo as part of the attached files, now would be a good time to download them if you intend to use them. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ferris</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32602</link>
		<dc:creator>ferris</dc:creator>
		<pubDate>Thu, 05 Jan 2012 18:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32602</guid>
		<description>Very cool tutorial!  Thanks!
Apologies if this has been asked elsewhere but, could you tell us what your policy is for using your code &amp; images on our own projects?</description>
		<content:encoded><![CDATA[<p>Very cool tutorial!  Thanks!<br />
Apologies if this has been asked elsewhere but, could you tell us what your policy is for using your code &amp; images on our own projects?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kanishk</title>
		<link>http://buildinternet.com/2009/07/animate-curtains-opening-with-jquery/comment-page-1/#comment-32515</link>
		<dc:creator>kanishk</dc:creator>
		<pubDate>Wed, 28 Dec 2011 13:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=4435#comment-32515</guid>
		<description>hi sam dunn
I used your theme. It was damn good but i found that it wasn’t work in internet explorer-9.
you have any solution for that.
i am waiting for your generous reply.
please reply me ASAP.

Thank you
Kanishk</description>
		<content:encoded><![CDATA[<p>hi sam dunn<br />
I used your theme. It was damn good but i found that it wasn’t work in internet explorer-9.<br />
you have any solution for that.<br />
i am waiting for your generous reply.<br />
please reply me ASAP.</p>
<p>Thank you<br />
Kanishk</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using memcached
Object Caching 367/367 objects using disk: basic

Served from: buildinternet.com @ 2012-02-08 20:33:50 -->
