<?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: How to Make Auto-Advancing Slideshows</title>
	<atom:link href="http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Mon, 20 May 2013 02:06:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Hiren Kansara</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-77691</link>
		<dc:creator>Hiren Kansara</dc:creator>
		<pubDate>Mon, 28 Jan 2013 14:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-77691</guid>
		<description><![CDATA[Can we use other effect other than fadeIn &amp; fadeOut ? I would like to use slideIn and slideOut effect. Also how can we deactivate auto rotating of images ?]]></description>
		<content:encoded><![CDATA[<p>Can we use other effect other than fadeIn &amp; fadeOut ? I would like to use slideIn and slideOut effect. Also how can we deactivate auto rotating of images ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ivo</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-77569</link>
		<dc:creator>ivo</dc:creator>
		<pubDate>Tue, 22 Jan 2013 23:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-77569</guid>
		<description><![CDATA[i&#039;m trying to slide divs with images and text(not only an image) , but the script stops. Is there a fix fro that ? Not neccassary to have the the overlay effect of the image change , only the fade]]></description>
		<content:encoded><![CDATA[<p>i'm trying to slide divs with images and text(not only an image) , but the script stops. Is there a fix fro that ? Not neccassary to have the the overlay effect of the image change , only the fade</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lisa</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-76570</link>
		<dc:creator>Lisa</dc:creator>
		<pubDate>Tue, 11 Dec 2012 20:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-76570</guid>
		<description><![CDATA[Thank you for this.  I had been looking of a very simple transition and you nailed it.  Keep up the fantastic work, and thanks for sharing.]]></description>
		<content:encoded><![CDATA[<p>Thank you for this.  I had been looking of a very simple transition and you nailed it.  Keep up the fantastic work, and thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yuval</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-76271</link>
		<dc:creator>Yuval</dc:creator>
		<pubDate>Fri, 07 Dec 2012 19:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-76271</guid>
		<description><![CDATA[This will also resume auto advancing after a 10 seconds.

&lt;pre&gt;
$(window).load(function(){

	// The window.load event guarantees that
	// all the images are loaded before the
	// auto-advance begins.

	var timeOut = null;

	$(&#039;#slideshow .arrow&#039;).click(function(e,simulated){

		// The simulated parameter is set by the
		// trigger method.

		if(!simulated){

			// A real click occured. Cancel the
			// auto advance animation.

			clearTimeout(timeOut);
			timeOut = setTimeout(autoAdvance, 10000);
		}
	});

	// A self executing named function expression:
	
	function autoAdvance (){

		// Simulating a click on the next arrow.
		$(&#039;#slideshow .next&#039;).trigger(&#039;click&#039;,[true]);

		// Schedulling a time out in 5 seconds.
		timeOut = setTimeout(autoAdvance,5000);
	}

	autoAdvance();

});
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>This will also resume auto advancing after a 10 seconds.</p>
<pre>
$(window).load(function(){

	// The window.load event guarantees that
	// all the images are loaded before the
	// auto-advance begins.

	var timeOut = null;

	$('#slideshow .arrow').click(function(e,simulated){

		// The simulated parameter is set by the
		// trigger method.

		if(!simulated){

			// A real click occured. Cancel the
			// auto advance animation.

			clearTimeout(timeOut);
			timeOut = setTimeout(autoAdvance, 10000);
		}
	});

	// A self executing named function expression:
	
	function autoAdvance (){

		// Simulating a click on the next arrow.
		$('#slideshow .next').trigger('click',[true]);

		// Schedulling a time out in 5 seconds.
		timeOut = setTimeout(autoAdvance,5000);
	}

	autoAdvance();

});
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jen Barnes</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-74005</link>
		<dc:creator>Jen Barnes</dc:creator>
		<pubDate>Wed, 14 Nov 2012 23:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-74005</guid>
		<description><![CDATA[Great easy script. How can I change the fade speed? Im looking for a gradual fade in and fade out of the images. - Im a jquery newbie. Thanks.]]></description>
		<content:encoded><![CDATA[<p>Great easy script. How can I change the fade speed? Im looking for a gradual fade in and fade out of the images. - Im a jquery newbie. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-49042</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Wed, 10 Oct 2012 14:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-49042</guid>
		<description><![CDATA[Love the script, been trying to work out how to make it so that the main image when clicked links to another page.

Anyone modded the script to do that?]]></description>
		<content:encoded><![CDATA[<p>Love the script, been trying to work out how to make it so that the main image when clicked links to another page.</p>
<p>Anyone modded the script to do that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shera</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-41477</link>
		<dc:creator>Shera</dc:creator>
		<pubDate>Wed, 12 Sep 2012 07:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-41477</guid>
		<description><![CDATA[Hi,

brilliant tutorial, thank you very much !!
I would like to know how I could change the arrows. I want to put another ones.

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>brilliant tutorial, thank you very much !!<br />
I would like to know how I could change the arrows. I want to put another ones.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lori</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-40211</link>
		<dc:creator>Lori</dc:creator>
		<pubDate>Sat, 07 Jul 2012 19:24:38 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-40211</guid>
		<description><![CDATA[Repeating a question above from &quot;Max&quot; and &quot;dpm&quot;. As a jquery newbie, I don&#039;t quite understand this. How would I know what to change the selectors to?

“To use this script you just need to replace the selectors for the next arrow on line 28 and for both arrows on line 9. With these modifications you will be able to use this snippet to automate any slideshow (or any kind of presentation really) on your site by just including autoadvance.js with a script tag.”

I&#039;m assuming that is why it&#039;s not functioning at all on the server but is on my local hard drive.]]></description>
		<content:encoded><![CDATA[<p>Repeating a question above from &quot;Max&quot; and &quot;dpm&quot;. As a jquery newbie, I don't quite understand this. How would I know what to change the selectors to?</p>
<p>“To use this script you just need to replace the selectors for the next arrow on line 28 and for both arrows on line 9. With these modifications you will be able to use this snippet to automate any slideshow (or any kind of presentation really) on your site by just including autoadvance.js with a script tag.”</p>
<p>I'm assuming that is why it's not functioning at all on the server but is on my local hard drive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steph</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-29838</link>
		<dc:creator>Steph</dc:creator>
		<pubDate>Fri, 15 Jun 2012 20:01:04 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-29838</guid>
		<description><![CDATA[Hi, brilliant, thanks for the tutorial.... but I was wondering if there&#039;s a way to add captions to the slides? I&#039;m no whizz kid at coding, so a simple explanation would be HUGELY appreciated.

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi, brilliant, thanks for the tutorial.... but I was wondering if there's a way to add captions to the slides? I'm no whizz kid at coding, so a simple explanation would be HUGELY appreciated.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://tutorialzine.com/2011/01/how-to-make-auto-advancing-slideshows/#comment-23633</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 04 May 2012 15:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1327#comment-23633</guid>
		<description><![CDATA[I set up the non auto advance version of this awesome script and it worked like a charm across browsers and my iPhone.  I then decided to also add the auto advance feature and now it is not working on my iPhone. Anyone have a similar issue?  I have followed all directions and can&#039;t figure out what is going on?

Everything shows up correctly, but it will not advance either automatically OR when I click on the arrows?]]></description>
		<content:encoded><![CDATA[<p>I set up the non auto advance version of this awesome script and it worked like a charm across browsers and my iPhone.  I then decided to also add the auto advance feature and now it is not working on my iPhone. Anyone have a similar issue?  I have followed all directions and can't figure out what is going on?</p>
<p>Everything shows up correctly, but it will not advance either automatically OR when I click on the arrows?</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 286/288 objects using apc
Content Delivery Network via cdn.tutorialzine.com

 Served from: tutorialzine.com @ 2013-05-21 14:33:02 by W3 Total Cache -->