<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Development Blog &#187; slider</title>
	<atom:link href="http://www.scriptiny.com/tag/slider/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptiny.com</link>
	<description>This web development blog features fresh articles on JavaScript, AJAX, CSS, XHTML, PHP, Photoshop and more.</description>
	<lastBuildDate>Thu, 08 Dec 2011 02:29:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Fading JavaScript Slideshow – TinyFader</title>
		<link>http://www.scriptiny.com/2010/09/fading-slideshow-script/</link>
		<comments>http://www.scriptiny.com/2010/09/fading-slideshow-script/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 21:37:48 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.scriptiny.com/?p=354</guid>
		<description><![CDATA[This 1.4KB fading slideshow script can easily be customized with CSS. It is completely standalone and uses a simple unordered list structure to support any content. It even gracefully degrades without JavaScript support. The script supports automatic rotation with the option to auto-resume, an active class on a navigation list if applicable, and an initial display toggle.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.scriptiny.com/wp-content/uploads/2010/09/tiny-fader.jpg" alt="Tiny Fader" width="592" height="225" /></p>
<p>This 1.4KB fading slideshow script can easily be customized with CSS. It is a slight variation from the TinySlider script and is still completely standalone and uses a simple unordered list structure to support any content. It even gracefully degrades without JavaScript support. The script supports automatic rotation with the option to auto-resume, an active class on a navigation list if applicable, and an initial display toggle.</p>
<p>Self-employment has kept away from my blog for quite awhile but I hope to be spending more time here soon. I will be addressing all of the accumulated requests and bug reports for all of my scripts as soon as I possibly can. I also have a couple updated script versions and completely new scripts in the works as well as some post ideas. If you have emailed me anytime in the last 6 months or so I sincerely apologize if I did not get back with you, I just had too much going on to deal with all to all correspondence.</p>
<p>To initialize the script use the following:</p>
<pre class="brush: jscript; title: ; notranslate">var slideshow=new TINY.slider.slide('slideshow',{
	id:'slides', // ID of the parent slideshow unordered list
	auto:3, // Seconds to auto-advance, defaults to disabled
	resume:true, // Resume after interrupted, defaults to false
	navid:'pagination', // Optional ID of direct navigation UL
	activeclass:'current', // If navid, class to set on the current LI
	visible:true, // Initially display the first slide vs fading it in
	position:0 // Initial slide position, defaulting to the 0 index
});</pre>
<p>The first parameter taken by TINY.fader.fade is the variable name used for the object instance. This script has been tested in all major browsers and is available free of charge for both personal or commercial projects under the <a href="http://creativecommons.org/licenses/by/3.0/us/">creative commons license</a>. Community support is <a href="http://www.scriptiny.com/qa/">available here</a>.</p>
<p><a href="http://sandbox.scriptiny.com/tinyfader/">Click here for the demo.</a></p>
<p><a href="http://forum.leigeber.com/index.php?app=downloads&amp;showfile=11">Click here to download the source code.</a></p>
<p><strong>9/30/2010</strong> &#8211; Resolved IE bug.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scriptiny.com/2010/09/fading-slideshow-script/feed/</wfw:commentRss>
		<slash:comments>111</slash:comments>
		</item>
		<item>
		<title>Slideshow Script &#8211; TinySlider</title>
		<link>http://www.scriptiny.com/2009/12/slideshow-script/</link>
		<comments>http://www.scriptiny.com/2009/12/slideshow-script/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 19:44:37 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[slide]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.scriptiny.com/?p=297</guid>
		<description><![CDATA[This lightweight slideshow script supports any content and gracefully degrades without JavaScript support. It supports automatic rotation with the option to auto-resume, an active class on a navigation list if applicable, and a direction toggle (vertical or horizontal).]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.scriptiny.com/wp-content/uploads/2009/12/tiny-slider.jpg" alt="Slideshow Script" width="592" height="300" /></p>
<p>This super lightweight (1.5KB) and standalone sliding slideshow script can easily be customized to integrate with any website through CSS. You can add any content to it, not just images, and it gracefully degrades without JavaScript support. The script supports automatic rotation with the option to auto-resume, an active class on a navigation list if applicable, and a direction toggle (vertical or horizontal).</p>
<p>To initialize the script use the following:</p>
<pre class="brush: jscript; title: ; notranslate">var slideshow=new TINY.slider.slide('slideshow',{
	id:'slider', // ID of the parent slideshow div
	auto:3, // Seconds to auto-advance, defaults to disabled
	resume:true, // Resume auto after interrupted, defaults to false
	vertical:false, // Direction, defaults to false
	navid:'pagination', // Optional ID of direct navigation UL
	activeclass:'current', // Class to set on the current LI
	position:0 // Initial slide position, defaulting to index 0
});</pre>
<p>The first parameter taken by TINY.slider.slide is the variable name used for the object instance. You can also optionally set width and height parameters for the applicable direction you are sliding. If it is not set the width or height will be automatically calculated using the offsetWidth/offsetHeight of the first list element. This script has been tested in all major browsers and is available free of charge for both personal or commercial projects under the <a href="http://creativecommons.org/licenses/by/3.0/us/">creative commons license</a>. Community support is <a href="http://www.scriptiny.com/qa/">available here</a>. Paid support is also available, <a href="http://www.scriptiny.com/contact/">contact me</a> for details.</p>
<p><a href="http://sandbox.scriptiny.com/tinyslider/">Click here for the demo.</a></p>
<p><a href="http://forum.leigeber.com/index.php?app=downloads&#038;showfile=8">Click here to download the source code.</a></p>
<p><strong>12/8/2009</strong> – Fixed bug that threw slider into loop outside of constraints.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scriptiny.com/2009/12/slideshow-script/feed/</wfw:commentRss>
		<slash:comments>121</slash:comments>
		</item>
		<item>
		<title>Animated JavaScript Accordion V2</title>
		<link>http://www.scriptiny.com/2008/10/animated-javascript-accordion/</link>
		<comments>http://www.scriptiny.com/2008/10/animated-javascript-accordion/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 17:14:23 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[expanding]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[sliding]]></category>

		<guid isPermaLink="false">http://www.scriptiny.com/?p=58</guid>
		<description><![CDATA[This animated JavaScript accordion script is lightweight (1.16 KB), fast, supports multiple instances and includes an active header class toggle.]]></description>
			<content:encoded><![CDATA[<p><img title="Animated JavaScript Accordion" src="http://www.scriptiny.com/wp-content/uploads/2008/10/accordion.gif" alt="" width="459" height="173" /></p>
<p>A new version of this script is <a href="http://www.scriptiny.com/2009/03/accordion/"><strong>available here</strong></a>.</p>
<p>This lightweight (1.16 KB) animated JavaScript accordion is an update to the <a href="http://www.scriptiny.com/2008/04/lightweight-javascript-and-css-accordion/">original accordion script</a> posted on April 18th. It is now smaller, faster, supports multiple instances and includes an active header class toggle. The markup is also improved through the use of definition lists and the CSS has been simplified as well.</p>
<p>To initialize an accordion use the following code:</p>
<pre class="brush: jscript; title: ; notranslate">var mySlider=new accordion.slider('mySlider');
mySlider.init('slider',0,'open');</pre>
<p>You must create a new accordion object before initialization. The parameter taken by accordion.slider is the variable name used for the object. The object.init function takes 3 parameters: the id of the &#8220;dl&#8221;, the index of the initially expanded section (optional) and the class for the active header (optional).</p>
<p>This script has been tested in all major browsers and is available free of charge for both personal or commercial projects under the <a href="http://creativecommons.org/licenses/by/3.0/us/" target="_blank">creative commons license</a>. Community support is <a href="http://www.scriptiny.com/qa/">available here</a>. Paid support is also available, <a href="http://www.scriptiny.com/contact/">contact me</a> for details.</p>
<p><strong><a href="http://sandbox.scriptiny.com/accordion/index.html">Click here for the demo.</a></strong></p>
<p><strong><a href="http://sandbox.scriptiny.com/accordion/accordion.zip">Click here to download the source code.</a></strong></p>
<p><strong>Update 11/24/2008</strong> &#8211; Updated logic to allow hover state when no sections are initially expanded. Consolidated some code to drop the weight by 15%.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scriptiny.com/2008/10/animated-javascript-accordion/feed/</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
		<item>
		<title>Ultimate JavaScript Slider and Scroller</title>
		<link>http://www.scriptiny.com/2008/05/ultimate-javascript-scroller-and-slider/</link>
		<comments>http://www.scriptiny.com/2008/05/ultimate-javascript-scroller-and-slider/#comments</comments>
		<pubDate>Wed, 07 May 2008 03:34:55 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[scroller]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.scriptiny.com/?p=38</guid>
		<description><![CDATA[This versatile JavaScript slider and scroller script makes it easy to scroll text blocks, create slideshows, slide between content blocks, create tickers and more.]]></description>
			<content:encoded><![CDATA[<p>This versatile and lightweight JavaScript clocks in at less than 3.5kb unpacked. The above example is one of four scenarios I have demonstrated on the <a href="http://sandbox.scriptiny.com/contentslider/slider.html" target="_blank">demo page</a>.</p>
<p>To setup a scroll/slide area create a container with the following CSS properties&#8230;</p>
<pre class="brush: css; title: ; notranslate">position:relative; overflow:hidden; height:XXXpx;</pre>
<p>Inside the scroll area container create another div that will house your actual content. It needs the positioned absolutely within the previous div. Each sliding or scrolling area on the page needs to have a unique ID for this div.</p>
<pre class="brush: css; title: ; notranslate">position:absolute;</pre>
<p>Inside the content div you can need to create a section for each area of content, be it 1 or 50. For each section after the &#8220;prefix-&#8221; numerate the order from 1 onwards. The prefix (ie section, newssection, imgsection, etc) needs to be unique to the current sliding/scrolling container&#8217;s sections.</p>
<pre class="brush: xml; title: ; notranslate">&lt;div id=&quot;section-1&quot; class=&quot;section&quot;&gt;&lt;/div&gt;</pre>
<p>You can call functions to incrementally scroll up or down, scroll to a particular section and initiate autoscroll/cancel the autoscroll. Take a look at the source code for examples. You might also consider dynamically adding some currently static CSS properties such as overflow:hidden and the height to allow for better degradation without JavaScript support.</p>
<p>This script has been tested in all major browsers and is available free of charge for both personal or commercial projects under the <a href="http://creativecommons.org/licenses/by/3.0/us/" target="_blank">creative commons license</a>. Community support is <a href="http://www.scriptiny.com/qa/">available here</a>. Paid support is also available, <a href="http://www.scriptiny.com/contact/">contact me</a> for details.</p>
<p><strong><a href="http://sandbox.scriptiny.com/contentslider/slider.html" target="_blank">Click here for the demo.</a></strong></p>
<p><strong><a href="http://www.scriptiny.com/wp-content/uploads/2008/05/contentslider.zip">Click here to download the source.</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scriptiny.com/2008/05/ultimate-javascript-scroller-and-slider/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Lightweight JavaScript Accordion with CSS</title>
		<link>http://www.scriptiny.com/2008/04/lightweight-javascript-and-css-accordion/</link>
		<comments>http://www.scriptiny.com/2008/04/lightweight-javascript-and-css-accordion/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 02:44:25 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://www.scriptiny.com/?p=13</guid>
		<description><![CDATA[This simple JavaScript accordion is only 1.65 kilobytes when packed. If you have a small project that could use a JavaScript accordion and don’t want to include an entire JavaScript framework to do the job then give this script a try.]]></description>
			<content:encoded><![CDATA[<p><strong>The updated accordion script is <a href="http://www.scriptiny.com/2009/03/accordion/">available here</a>.</strong></p>
<p>This JavaScript accordion is only 1.5kb. If you have a small project that could use an accordion and don&#8217;t want to include an entire JavaScript framework to do the job then give this script a try.</p>
<p>You will need to call the following function in your body onload where the first parameter is the div id of the accordion parent and the second tells the script which section to expand onload.</p>
<pre class="brush: jscript; title: ; notranslate">slider.init('slider',1)</pre>
<p>This script has been tested in all major browsers and is available free of charge for both personal or commercial projects under the <a href="http://creativecommons.org/licenses/by/3.0/us/" target="_blank">creative commons license</a>. Community support is <a href="http://www.scriptiny.com/qa/">available here</a>. Paid support is also available, <a href="http://www.scriptiny.com/contact/">contact me</a> for details.</p>
<p><strong><a href="http://www.scriptiny.com/wp-content/uploads/2008/04/javascript_slider.zip">Click here</a> to download the source code.</strong></p>
<p><strong>Updated 5/27/2008</strong> &#8211; Slightly minified the code cutting off 1kb and added the script into a global namespace.<br />
<strong>Updated 6/19/2008</strong> &#8211; Shaved of a few bytes and added change the &#8220;c&#8221; variable to identify which section to be expanded onload.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scriptiny.com/2008/04/lightweight-javascript-and-css-accordion/feed/</wfw:commentRss>
		<slash:comments>106</slash:comments>
		</item>
	</channel>
</rss>

