<?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>Blue Arena &#187; images</title>
	<atom:link href="http://www.bluearena.com/tag/images/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bluearena.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 05 Jun 2010 17:23:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Gallery Carousel v1.1</title>
		<link>http://www.bluearena.com/2009/06/gallery-carousel-v1-1/</link>
		<comments>http://www.bluearena.com/2009/06/gallery-carousel-v1-1/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 14:18:12 +0000</pubDate>
		<dc:creator>Maloric</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[carousel]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[slide]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://wordpress.bluearena.com/?p=126</guid>
		<description><![CDATA[Gallery Carousel is a JQuery Plugin which creates a sliding gallery of image thumbnails that can be clicked to view a full size image.  The full size image can also have a caption and/or hyperlink.  The plugin is configurable and easy to set up, requiring little markup. Prev Next Download packed code for Gallery Carousel [...]]]></description>
			<content:encoded><![CDATA[<p>Gallery Carousel is a JQuery Plugin which creates a sliding gallery of image thumbnails that can be clicked to view a full size image.  The full size image can also have a caption and/or hyperlink.  The plugin is configurable and easy to set up, requiring little markup.</p>
<p><span id="more-126"></span></p>
<div id="targetWrap"><img id="featuredImg" alt="" /></div>
<table border="0">
<tbody>
<tr>
<td><a id="prev" href="#">Prev</a></td>
<td>
<div id="featured"></div>
</td>
<td><a id="next" href="#">Next</a></td>
</tr>
</tbody>
</table>
<hr /><a href="/wp-content/themes/bluearena/includes/scripts/jQuery.galleryCarousel-1.1.pack.js">Download packed code for Gallery Carousel v1.1</a></p>
<p>(requires JQuery v1.3.2)</p>
<h2>New in v1.1</h2>
<ul>
<li>You can now add captions for each image</li>
<li>You can now add a link for each image to navigate to</li>
</ul>
<h2>Instructions</h2>
<p>To create a new gallery, you need to first include the script in your page, <em>after</em> you have included the JQuery script.</p>
<pre>&lt;script src="includes/galleryCarousel-1.1.min.js" type="text/javascript"&gt;&lt;/script&gt;</pre>
<p>Then some simple styles to make it look nice:</p>
<pre>&lt;style type="text/css"&gt;
	img {border:0;}
	ul.gallery li {padding:0 5px;}
	ul.gallery li img {height:61px;} /* If you don't specify a thumnail image you should set the height of the scaled down image instead */
	ul.gallery li img.selected {border:2px solid #000;}
&lt;/style&gt;</pre>
<p>You&#8217;ll need some basic markup: an empty image, a next link, a previous link and a div to put our carousel into.  If you want to put captions somewhere for each image, you will also need a div or span for this:</p>
<pre>&lt;img id="featuredImg" /&gt;
&lt;span id="caption"&gt;&lt;/span&gt;
&lt;table&gt;
	&lt;tr&gt;
		&lt;td&gt;
			&lt;a id="prev" href="#"&gt;Prev&lt;/a&gt;
		&lt;/td&gt;
		&lt;td&gt;
			&lt;div id="galleryWrap"&gt;&lt;/div&gt;
		&lt;/td&gt;
		&lt;td&gt;
			&lt;a href="#" id="next"&gt;Next&lt;/a&gt;
		&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;</pre>
<p>If you prefer to specify your images in the html rather than the javascript, you can also populate your target div with a ul like the following:</p>
<pre>&lt;ul class="myGalleryClass"&gt;
	&lt;li&gt;&lt;a href="path/to/full/image1.jpg"&gt;&lt;img src="/path/to/thumb1.jpg" alt="Image 1" /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="path/to/full/image2.jpg"&gt;&lt;img src="/path/to/thumb2.jpg" alt="Image 2" /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="path/to/full/image3.jpg"&gt;&lt;img src="/path/to/thumb3.jpg" alt="Image 3" /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="path/to/full/image4.jpg"&gt;&lt;img src="/path/to/thumb4.jpg" alt="Image 4" /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="path/to/full/image5.jpg"&gt;&lt;img src="/path/to/thumb5.jpg" alt="Image 5" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>If you don&#8217;t create your image list manually, you can populate it as an array.  Below I have only specified the url of the full size image.  The alt tag (&#8220;alt&#8221;) and thumbnail (&#8220;thumb&#8221;) can also be specified, but if the thumb isn&#8217;t specified the full size url will be used instead (meaning the thumb should be resized via css instead).</p>
<pre>&lt;script type="text/javascript"&gt;
	$(document).ready(function(){
		var images = new Array();
		images[0] = {src : "/images/slide1.jpg"}
		images[1] = {src : "/images/slide2.jpg"}
		images[2] = {src : "/images/slide3.jpg"}
		images[3] = {src : "/images/slide4.jpg"}
		images[4] = {src : "/images/slide5.jpg"}
		images[5] = {src : "/images/slide6.jpg"}

		// Create a new galleryCarousel with a few config options
		$('#galleryWrap').galleryCarousel({
			target : $('#featuredImg'),
			nextBtn : $('a#next'),
			prevBtn : $('a#prev'),
			images : images
		});
	});
&lt;/script&gt;</pre>
<h3>Captions</h3>
<p>When you have specified a caption for an image, it will be shown &#8211; you can specify text or html for your caption.  When there is no caption specified for an image, the caption container will be hidden.</p>
<pre>images[0] = {
    src : '/path/to/my/image.jpg',
    caption : 'This is my image caption.'
}</pre>
<h3>Main Image Hyperlink</h3>
<p>You can specify a page to navigate to when clicking on an image, which is useful for portfolios and such.  To specify an image, simply add a url property like so:</p>
<pre>images[0] = {
    src : '/path/to/my/image.jpg',
    url : '/path/to/my/page.html'
}</pre>
<h2>Property List</h2>
<p>Here is a list of the configuration options and their defaults:</p>
<table style="width: 100%;" border="1">
<thead>
<tr>
<th>Property Name</th>
<th>Default Value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>itemsShown</td>
<td>3</td>
<td>The number of images visible atany one time</td>
</tr>
<tr>
<td>step</td>
<td>1</td>
<td>The number of images to scroll past when next/prev links are clicked</td>
</tr>
<tr>
<td>target</td>
<td>$(&#8216;#galleryImg&#8217;)</td>
<td>The selector for the full size image</td>
</tr>
<tr>
<td>selectedClass</td>
<td>selected</td>
<td>The class for an image thumnail that is currently being displayed</td>
</tr>
<tr>
<td>nextBtn</td>
<td>$(&#8216;a#galleryNext&#8217;)</td>
<td>The selector for the next link</td>
</tr>
<tr>
<td>prevBtn</td>
<td>$(&#8216;a#galleryPrev&#8217;)</td>
<td>The selector for the previous link</td>
</tr>
<tr>
<td>highAlpha</td>
<td>1</td>
<td>The opacity of a selected / hovered thumnail</td>
</tr>
<tr>
<td>lowAlpha</td>
<td>0.5</td>
<td>The opacity of a non-selected thumbnail</td>
</tr>
<tr>
<td>scrollTime</td>
<td>500</td>
<td>The time in ms it takes to scroll left or right</td>
</tr>
<tr>
<td>interval</td>
<td>1000</td>
<td>The time in ms between automatic scrolling (set to 0 to disable auto-scrolling)</td>
</tr>
<tr>
<td>carouselClass</td>
<td>gallery</td>
<td>The class for the &lt;ul&gt; element (in case you want to style it easily)</td>
</tr>
<tr>
<td>captionTarget</td>
<td>$(&#8216;#caption&#8217;)</td>
<td>The selector for your caption container</td>
</tr>
<tr>
<td>images</td>
<td>n/a</td>
<td>A collection of images (see below)</td>
</tr>
</tbody>
</table>
<p>The following is a list of the properties for the images object:</p>
<table style="width: 100%;" border="1">
<tbody>
<tr>
<td>Property Name</td>
<td>Default</td>
<td>Description</td>
</tr>
<tr>
<td>src</td>
<td>n/a</td>
<td>URL of the full size image</td>
</tr>
<tr>
<td>thumb</td>
<td>n/a</td>
<td>URL of the thumbnail (optional)</td>
</tr>
<tr>
<td>alt</td>
<td>n/a</td>
<td>Alt tag for the thumb / full image (optional)</td>
</tr>
<tr>
<td>url</td>
<td>n/a</td>
<td>The url you want to navigate to on clicking the full image</td>
</tr>
<tr>
<td>caption</td>
<td>n/a</td>
<td>The caption you want associated with this image</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.bluearena.com/2009/06/gallery-carousel-v1-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gallery Carousel v1.0</title>
		<link>http://www.bluearena.com/2009/05/gallery-carousel-v1-0/</link>
		<comments>http://www.bluearena.com/2009/05/gallery-carousel-v1-0/#comments</comments>
		<pubDate>Sun, 24 May 2009 14:05:59 +0000</pubDate>
		<dc:creator>Maloric</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[carousel]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[slide]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://wordpress.bluearena.com/?p=54</guid>
		<description><![CDATA[Gallery Carousel does what it says on the tin. It&#8217;s part image gallery, part carousel. It provides an unordered list of images which can be scrolled horizontally. When an image is clicked or the list is scrolled, the main image is updated to the larger version of the thumb. In order to use Gallery Carousel [...]]]></description>
			<content:encoded><![CDATA[<p>Gallery Carousel does what it says on the tin.  It&#8217;s part image gallery, part carousel.  It provides an unordered list of images which can be scrolled horizontally.  When an image is clicked or the list is scrolled, the main image is updated to the larger version of the thumb. In order to use Gallery Carousel you must include jQuery 1.3.2 before you create a new carousel.  Creating a carousel requires relatively little markup, just a list of images, a couple of links to navigate and an image to represent the full size image.</p>
<p><span id="more-54"></span></p>
<p><script type="text/javascript">
	demoGallery();
</script></p>
<p><img alt="" id="featuredImg" /></p>
<table>
<tbody>
<tr>
<td><a id="prev" href="#">Prev</a></td>
<td>
<div id="featured">&nbsp;</div>
</td>
<td><a href="#" id="next">Next</a></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<hr />
<p><a href="/wp-content/themes/bluearena/includes/scripts/jQuery.galleryCarousel-1.0.pack.js">Download packed code for Gallery Carousel v1.0</a></p>
<p>Here is a stripped down version.&nbsp; First, include the galleryCarousel javascript file in the &lt;head&gt; section of your page:</p>
<pre>
&lt;script src=&quot;includes/galleryCarousel-1.0.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre>
<p>Then some simple styles to make it look nice:</p>
<pre>
&lt;style type=&quot;text/css&quot;&gt;
	img {border:0;}
	ul.gallery li {padding:0 5px;}
	ul.gallery li img {height:61px;} /* If you don't specify a thumnail image you should set the height of the scaled down image instead */
	ul.gallery li img.selected {border:2px solid #000;}
&lt;/style&gt;</pre>
<p>You&#8217;ll need some basic markup: an empty image, a next link, a previous link and a div to put our carousel into:</p>
<pre>
&lt;img id=&quot;featuredImg&quot; /&gt;
&lt;table&gt;
	&lt;tr&gt;
		&lt;td&gt;
			&lt;a id=&quot;prev&quot; href=&quot;#&quot;&gt;Prev&lt;/a&gt;
		&lt;/td&gt;
		&lt;td&gt;
			&lt;div id=&quot;galleryWrap&quot;&gt;&lt;/div&gt;
		&lt;/td&gt;
		&lt;td&gt;
			&lt;a href=&quot;#&quot; id=&quot;next&quot;&gt;Next&lt;/a&gt;
		&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;</pre>
<p>If you prefer to specify your images in the html rather than the javascript, you can also populate your target div with a ul like the following:</p>
<pre>
&lt;ul class=&quot;myGalleryClass&quot;&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image1.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb1.jpg&quot; alt=&quot;Image 1&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image2.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb2.jpg&quot; alt=&quot;Image 2&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image3.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb3.jpg&quot; alt=&quot;Image 3&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image4.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb4.jpg&quot; alt=&quot;Image 4&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;path/to/full/image5.jpg&quot;&gt;&lt;img src=&quot;/path/to/thumb5.jpg&quot; alt=&quot;Image 5&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>If you don&#8217;t create your image list manually, you can populate it as an array.&nbsp; Below I have only specified the url of the full size image.&nbsp; The alt tag (&quot;alt&quot;) and thumbnail (&quot;thumb&quot;) can also be specified, but if the thumb isn&#8217;t specified the full size url will be used instead (meaning the thumb should be resized via css instead).</p>
<pre>
&lt;script type=&quot;text/javascript&quot;&gt;
	$(document).ready(function(){
		var images = new Array();
		images[0] = {src : &quot;/images/slide1.jpg&quot;}
		images[1] = {src : &quot;/images/slide2.jpg&quot;}
		images[2] = {src : &quot;/images/slide3.jpg&quot;}
		images[3] = {src : &quot;/images/slide4.jpg&quot;}
		images[4] = {src : &quot;/images/slide5.jpg&quot;}
		images[5] = {src : &quot;/images/slide6.jpg&quot;}

		// Create a new galleryCarousel with a few config options
		$('#galleryWrap').galleryCarousel({
			target : $('#featuredImg'),
			nextBtn : $('a#next'),
			prevBtn : $('a#prev'),
			images : images
		});
	});
&lt;/script&gt;</pre>
<p>Here is a list of the configuration options and their defaults:</p>
<table border="1" width="100%">
<tbody>
<tr>
<td>Property Name</td>
<td>Default Value</td>
<td>Description</td>
</tr>
<tr>
<td>itemsShown</td>
<td>3</td>
<td>The number of images visible atany one time</td>
</tr>
<tr>
<td>step</td>
<td>1</td>
<td>The number of images to scroll past when next/prev links are clicked</td>
</tr>
<tr>
<td>target</td>
<td>$(&#8216;#galleryImg&#8217;)</td>
<td>The selector for the full size image</td>
</tr>
<tr>
<td>selectedClass</td>
<td>selected</td>
<td>The class for an image thumnail that is currently being displayed</td>
</tr>
<tr>
<td>nextBtn</td>
<td>$(&#8216;a#galleryNext&#8217;)</td>
<td>The selector for the next link</td>
</tr>
<tr>
<td>prevBtn</td>
<td>$(&#8216;a#galleryPrev&#8217;)</td>
<td>The selector for the previous link</td>
</tr>
<tr>
<td>highAlpha</td>
<td>1</td>
<td>The opacity of a selected / hovered thumnail</td>
</tr>
<tr>
<td>lowAlpha</td>
<td>0.5</td>
<td>The opacity of a non-selected thumbnail</td>
</tr>
<tr>
<td>scrollTime</td>
<td>500</td>
<td>The time in ms it takes to scroll left or right</td>
</tr>
<tr>
<td>interval</td>
<td>1000</td>
<td>The time in ms between automatic scrolling (set to 0 to disable auto-scrolling)</td>
</tr>
<tr>
<td>carouselClass</td>
<td>gallery</td>
<td>The class for the &lt;ul&gt; element (in case you want to style it easily)</td>
</tr>
<tr>
<td>images</td>
<td>n/a</td>
<td>A collection of images (see below)</td>
</tr>
</tbody>
</table>
<p>The following is a list of the properties for the images object:</p>
<table border="1" width="100%">
<tbody>
<tr>
<td>Property Name</td>
<td>Default</td>
<td>Description</td>
</tr>
<tr>
<td>src</td>
<td>n/a</td>
<td>URL of the full size image</td>
</tr>
<tr>
<td>thumb</td>
<td>n/a</td>
<td>URL of the thumbnail (optional)</td>
</tr>
<tr>
<td>alt</td>
<td>n/a</td>
<td>Alt tag for the thumb / full image (optional)</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluearena.com/2009/05/gallery-carousel-v1-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
