<?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 and jQuery Tutorial: Overlay with Slide Out Box</title>
	<atom:link href="http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Tue, 22 May 2012 15:12:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Gurumoorthy</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-408842</link>
		<dc:creator>Gurumoorthy</dc:creator>
		<pubDate>Fri, 20 Jan 2012 09:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-408842</guid>
		<description>Update on my question - I have got the answer to my question from this website - http://flowplayer.org/</description>
		<content:encoded><![CDATA[<p>Update on my question &#8211; I have got the answer to my question from this website &#8211; <a href="http://flowplayer.org/" rel="nofollow">http://flowplayer.org/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gurumoorthy</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-404696</link>
		<dc:creator>Gurumoorthy</dc:creator>
		<pubDate>Wed, 18 Jan 2012 10:31:07 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-404696</guid>
		<description>How do I create an overlay like this in one corner of the page  where this pop up comes up automatically, but does not block the functionality of the background main page? Like, interested people could answer a simple question there with bullet options. If they are not interested, they can let that overlay be there and navigate through the rest of the page.</description>
		<content:encoded><![CDATA[<p>How do I create an overlay like this in one corner of the page  where this pop up comes up automatically, but does not block the functionality of the background main page? Like, interested people could answer a simple question there with bullet options. If they are not interested, they can let that overlay be there and navigate through the rest of the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashi</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-342261</link>
		<dc:creator>Rashi</dc:creator>
		<pubDate>Wed, 21 Dec 2011 18:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-342261</guid>
		<description>Firstly its a great tutorial.I am facing just one problem and hoping if someone can help me with the same.I am using the above code in google chome and my white box doesnot appear no matter how much i change the location of the box.</description>
		<content:encoded><![CDATA[<p>Firstly its a great tutorial.I am facing just one problem and hoping if someone can help me with the same.I am using the above code in google chome and my white box doesnot appear no matter how much i change the location of the box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: skeeran</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-238728</link>
		<dc:creator>skeeran</dc:creator>
		<pubDate>Sat, 29 Oct 2011 14:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-238728</guid>
		<description>sorry had a mistake this is current tested

replace keydown with keyup

 $(document).keyup(function(e){
//om when the ESC(27) is pressed will also close
      	if(e.which == &#039;27&#039;){
      	
      		$(&#039;#box&#039;).animate({&#039;top&#039;:&#039;-200px&#039;},500,function(){      		
      	   	 $(&#039;#overlay&#039;).fadeOut(&#039;fast&#039;);
      		});
      		
      	}
      	
      });</description>
		<content:encoded><![CDATA[<p>sorry had a mistake this is current tested</p>
<p>replace keydown with keyup</p>
<p> $(document).keyup(function(e){<br />
//om when the ESC(27) is pressed will also close<br />
      	if(e.which == &#8217;27&#8242;){</p>
<p>      		$(&#8216;#box&#8217;).animate({&#8216;top&#8217;:'-200px&#8217;},500,function(){<br />
      	   	 $(&#8216;#overlay&#8217;).fadeOut(&#8216;fast&#8217;);<br />
      		});</p>
<p>      	}</p>
<p>      });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: skeeran</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-238705</link>
		<dc:creator>skeeran</dc:creator>
		<pubDate>Sat, 29 Oct 2011 13:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-238705</guid>
		<description>Hi to all a great tut,

to all who want that this box also close
when you press the &#039;ESC&#039; key. Then this function would do it.

just put this function as additional..


 $(document).keydown(function(e){
      
      	if(e.which == &#039;27&#039;){
      	//om when the ESC(27) key is pressed then will also close.

      		$(&#039;#box&#039;).animate({&#039;top&#039;:&#039;-200px&#039;},500,function(){
      	    $(&#039;#overlay&#039;).fadeOut(&#039;fast&#039;);
      		});
      	}
      	
      });</description>
		<content:encoded><![CDATA[<p>Hi to all a great tut,</p>
<p>to all who want that this box also close<br />
when you press the &#8216;ESC&#8217; key. Then this function would do it.</p>
<p>just put this function as additional..</p>
<p> $(document).keydown(function(e){</p>
<p>      	if(e.which == &#8217;27&#8242;){<br />
      	//om when the ESC(27) key is pressed then will also close.</p>
<p>      		$(&#8216;#box&#8217;).animate({&#8216;top&#8217;:'-200px&#8217;},500,function(){<br />
      	    $(&#8216;#overlay&#8217;).fadeOut(&#8216;fast&#8217;);<br />
      		});<br />
      	}</p>
<p>      });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-223238</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Tue, 18 Oct 2011 18:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-223238</guid>
		<description>Thanks for an amazing tutorial. I&#039;ve only 1 issue with the code and its that it doesn&#039;t seem to work in Firefox 3.6. Has anyone come across this problem and know any fixes for it?</description>
		<content:encoded><![CDATA[<p>Thanks for an amazing tutorial. I&#8217;ve only 1 issue with the code and its that it doesn&#8217;t seem to work in Firefox 3.6. Has anyone come across this problem and know any fixes for it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonir</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-206546</link>
		<dc:creator>Leonir</dc:creator>
		<pubDate>Wed, 05 Oct 2011 19:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-206546</guid>
		<description>how do I load it automatically when you enter the page?</description>
		<content:encoded><![CDATA[<p>how do I load it automatically when you enter the page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-154548</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sat, 13 Aug 2011 15:19:16 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-154548</guid>
		<description>Hi Mary Lou,

Great tutorial and it&#039;s looking and working great for me in Firefox and Chrome.

With IE, it works well, except there is a small flicker where the screen goes completely black for a tenth of a second at the very beginning and the very end of the animation.

Do you have any idea what that could be?

Many thanks</description>
		<content:encoded><![CDATA[<p>Hi Mary Lou,</p>
<p>Great tutorial and it&#8217;s looking and working great for me in Firefox and Chrome.</p>
<p>With IE, it works well, except there is a small flicker where the screen goes completely black for a tenth of a second at the very beginning and the very end of the animation.</p>
<p>Do you have any idea what that could be?</p>
<p>Many thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aseem</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-138170</link>
		<dc:creator>Aseem</dc:creator>
		<pubDate>Thu, 21 Jul 2011 13:57:03 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-138170</guid>
		<description>Gr8 article. Great reference. Thank you so much.</description>
		<content:encoded><![CDATA[<p>Gr8 article. Great reference. Thank you so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: esther</title>
		<link>http://tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/comment-page-2/#comment-112185</link>
		<dc:creator>esther</dc:creator>
		<pubDate>Wed, 22 Jun 2011 11:10:07 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=961#comment-112185</guid>
		<description>Hi Mary Lou
I really liked this tutorial. I wanted to change the width of the box that pops up. But when I do, the box shows immediatly and you can&#039;t click it away.
Please help, what am i doing wrong?

tnx in advance

(BTW a 2nd box works fine, just change the classes.)</description>
		<content:encoded><![CDATA[<p>Hi Mary Lou<br />
I really liked this tutorial. I wanted to change the width of the box that pops up. But when I do, the box shows immediatly and you can&#8217;t click it away.<br />
Please help, what am i doing wrong?</p>
<p>tnx in advance</p>
<p>(BTW a 2nd box works fine, just change the classes.)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/feed/ ) in 0.21309 seconds, on May 22nd, 2012 at 4:07 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 22nd, 2012 at 5:07 pm UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  tympanus.net/codrops/2009/12/03/css-and-jquery-tutorial-overlay-with-slide-out-box/feed/ ) in 0.00022 seconds, on May 22nd, 2012 at 4:46 pm UTC. -->
