<?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: BounceBox Notification Plugin With jQuery &amp; CSS3</title>
	<atom:link href="http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Tue, 07 Feb 2012 23:23:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Martin Angelov</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-7253</link>
		<dc:creator>Martin Angelov</dc:creator>
		<pubDate>Wed, 07 Jul 2010 13:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-7253</guid>
		<description>Yes, you can remove the bounce effect. Change line 29 of bouncebox-plugin/jquery.bouncebox.1.0.js from:

&lt;pre&gt;this.stop().animate({top:0},{easing:&#039;easeOutBounce&#039;});&lt;/pre&gt;

to:

&lt;pre&gt;this.stop().animate({top:0});&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Yes, you can remove the bounce effect. Change line 29 of bouncebox-plugin/jquery.bouncebox.1.0.js from:</p>
<pre>this.stop().animate({top:0},{easing:'easeOutBounce'});</pre>
<p>to:</p>
<pre>this.stop().animate({top:0});</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dhruv Kumar</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-7161</link>
		<dc:creator>Dhruv Kumar</dc:creator>
		<pubDate>Sun, 04 Jul 2010 11:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-7161</guid>
		<description>Great tutorial, is there any way to remove the bounce effect? i love it more without the bounce effect.</description>
		<content:encoded><![CDATA[<p>Great tutorial, is there any way to remove the bounce effect? i love it more without the bounce effect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raubie</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-6946</link>
		<dc:creator>Raubie</dc:creator>
		<pubDate>Tue, 29 Jun 2010 02:37:17 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-6946</guid>
		<description>Oops. My apologies, you&#039;ve already answered my second question by providing an autohide version. Thank you!</description>
		<content:encoded><![CDATA[<p>Oops. My apologies, you&#8217;ve already answered my second question by providing an autohide version. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raubie</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-6945</link>
		<dc:creator>Raubie</dc:creator>
		<pubDate>Tue, 29 Jun 2010 02:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-6945</guid>
		<description>Martin, thank you. I &lt;B&gt;really&lt;/B&gt; appreciate your reply. It tests out great with a link activation.

I have another two more questions. 1) How would you go about adding an extra bounce (or two)? 2) How do you add say a five-second time-out that closes the box (in addition to closing it with a click)?

Again, thanks. ~ Raubie</description>
		<content:encoded><![CDATA[<p>Martin, thank you. I <b>really</b> appreciate your reply. It tests out great with a link activation.</p>
<p>I have another two more questions. 1) How would you go about adding an extra bounce (or two)? 2) How do you add say a five-second time-out that closes the box (in addition to closing it with a click)?</p>
<p>Again, thanks. ~ Raubie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Angelov</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-6890</link>
		<dc:creator>Martin Angelov</dc:creator>
		<pubDate>Sat, 26 Jun 2010 16:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-6890</guid>
		<description>The button is basically a regular link with a bit of styling applied. To open it from a specific link just change the selector on line 7 of script.js.

Currently:

&lt;pre&gt;
 $(&#039;a.button&#039;).click(function(e){
&lt;/pre&gt;

Should be:

&lt;pre&gt;
 $(&#039;#yourLinkId&#039;).click(function(e){
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>The button is basically a regular link with a bit of styling applied. To open it from a specific link just change the selector on line 7 of script.js.</p>
<p>Currently:</p>
<pre>
 $('a.button').click(function(e){
</pre>
<p>Should be:</p>
<pre>
 $('#yourLinkId').click(function(e){
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raubie</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-6855</link>
		<dc:creator>Raubie</dc:creator>
		<pubDate>Fri, 25 Jun 2010 20:53:36 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-6855</guid>
		<description>Beautiful! And useful.

How (and what) would I change to have this activated from a &lt;I&gt;text link&lt;/I&gt; instead of &quot;the big button.&quot;

Apologies if the answer is &#039;roll the eyes&#039; simple.</description>
		<content:encoded><![CDATA[<p>Beautiful! And useful.</p>
<p>How (and what) would I change to have this activated from a <i>text link</i> instead of &#8220;the big button.&#8221;</p>
<p>Apologies if the answer is &#8216;roll the eyes&#8217; simple.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abdul Rehman</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-6171</link>
		<dc:creator>Abdul Rehman</dc:creator>
		<pubDate>Sun, 06 Jun 2010 23:17:43 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-6171</guid>
		<description>Hi, I have ported the plugin to the Ext Core library: http://www.artalat.com/2010/06/ext-ux-alertbox/</description>
		<content:encoded><![CDATA[<p>Hi, I have ported the plugin to the Ext Core library: http://www.artalat.com/2010/06/ext-ux-alertbox/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iRolf</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-6161</link>
		<dc:creator>iRolf</dc:creator>
		<pubDate>Sun, 06 Jun 2010 15:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-6161</guid>
		<description>wounderful tut - great script!

unfortunately I&#039;ve to consider IE6 so I added some lines in the beginning of the css-part of your script to fix a IE6 bug:

		var pos = &#039;fixed&#039;;
		if (jQuery.browser.msie &amp;&amp; parseInt(jQuery.browser.version) == 6){
			pos = &#039;absolute&#039;;
		}
		this.css({
			top			: -this.outerHeight(),
			marginLeft	: -this.outerWidth()/2,
			position	: pos,
			left		: &#039;50%&#039;
		});

thank you,
rolf</description>
		<content:encoded><![CDATA[<p>wounderful tut &#8211; great script!</p>
<p>unfortunately I&#8217;ve to consider IE6 so I added some lines in the beginning of the css-part of your script to fix a IE6 bug:</p>
<p>		var pos = &#8216;fixed&#8217;;<br />
		if (jQuery.browser.msie &amp;&amp; parseInt(jQuery.browser.version) == 6){<br />
			pos = &#8216;absolute&#8217;;<br />
		}<br />
		this.css({<br />
			top			: -this.outerHeight(),<br />
			marginLeft	: -this.outerWidth()/2,<br />
			position	: pos,<br />
			left		: &#8217;50%&#8217;<br />
		});</p>
<p>thank you,<br />
rolf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikolius</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-6061</link>
		<dc:creator>Nikolius</dc:creator>
		<pubDate>Thu, 03 Jun 2010 15:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-6061</guid>
		<description>I wonder, is it possible to combine this with jquery validation plugin?</description>
		<content:encoded><![CDATA[<p>I wonder, is it possible to combine this with jquery validation plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: edson</title>
		<link>http://tutorialzine.com/2010/05/bounce-in-box-plugin-jquery/#comment-6023</link>
		<dc:creator>edson</dc:creator>
		<pubDate>Wed, 02 Jun 2010 14:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=916#comment-6023</guid>
		<description>Thank you very much…!!!!!!</description>
		<content:encoded><![CDATA[<p>Thank you very much…!!!!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 355/356 objects using apc
Content Delivery Network via cdn.tutorialzine.com

Served from: tutorialzine.com @ 2012-02-08 14:11:53 -->
