<?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>Pixellica: Creativity Blooms &#187; Web</title>
	<atom:link href="http://www.pixellica.com/category/web/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pixellica.com</link>
	<description>Inspiration &#38; Design Blog</description>
	<lastBuildDate>Tue, 29 Jun 2010 12:50:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Free WordPress Script for Custom Post Images</title>
		<link>http://www.pixellica.com/web/free-wordpress-script-for-custom-post-images</link>
		<comments>http://www.pixellica.com/web/free-wordpress-script-for-custom-post-images#comments</comments>
		<pubDate>Fri, 30 Oct 2009 16:21:24 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[php script]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.pixellica.com/?p=837</guid>
		<description><![CDATA[Blogs look very nice with a&#160;flashy image above each post on&#160;the&#160;index page. The&#160;problem is when a&#160;WordPress theme comes configured like this you have to&#160;use complicated pre-coded Custom Fields in&#160;each post or&#160;go without the&#160;image altogether. There’s no allowing for&#160;those times when it would be so much easier to&#160;have the&#160;index page grab the&#160;first image in&#160;the&#160;post&#160;&#8212; or&#160;even for&#160;those [...]]]></description>
			<content:encoded><![CDATA[<p class="big">Blogs look very nice with a&nbsp;flashy image above each post on&nbsp;the&nbsp;index page. The&nbsp;problem is when a&nbsp;WordPress theme comes configured like this you have to&nbsp;use complicated pre-coded Custom Fields in&nbsp;each post or&nbsp;go without the&nbsp;image altogether. There’s no allowing for&nbsp;those times when it would be so much easier to&nbsp;have the&nbsp;index page grab the&nbsp;first image in&nbsp;the&nbsp;post&nbsp;&#8212; or&nbsp;even for&nbsp;those rare times when you don’t have any image and&nbsp;just want a&nbsp;default one put up there.</p>
<p><span id="more-837"></span></p>
<p><a href="#download">Download</a> | <a href="#installing">Installing</a> | <a href="#using">Using</a> | <a href="#customizing">Customizing</a> | <a href="#filters">Filters</a></p>
<p>A&nbsp;while ago I&nbsp;was developing a&nbsp;theme for&nbsp;giving away (actually, for&nbsp;using when I&nbsp;launched Pixellica but I’ve since used a&nbsp;third-party them for&nbsp;different reasons)&nbsp;&#8212; and&nbsp;in&nbsp;the&nbsp;process of&nbsp;developing it I&nbsp;realized there was no easy way to&nbsp;solve the&nbsp;problem above. Either you are forced to&nbsp;use a&nbsp;weird Custom Field or&nbsp;hard-code some image in&nbsp;place.</p>
<p>Here&#8217;s the&nbsp;solution I&nbsp;came up with. It utilizes Darren Hoyt’s fantastic <a href="http://www.darrenhoyt.com/2008/04/02/timthumb-php-script-released/" title="TimThumb site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.darrenhoyt.com/2008/04/02/timthumb-php-script-released/?referer=');">Tim Thumb</a> resizing script (which I&nbsp;include in&nbsp;the&nbsp;download package, unabridged, linked and&nbsp;credited. Altogether: Darren is cool.)</p>
<p>It involves a&nbsp;simple amendment to&nbsp;the&nbsp;index page of&nbsp;your WordPress theme, and&nbsp;uploading no more than three files to&nbsp;no more than three directories. It’s very simple.</p>
<p><a name="download"></a><br />
<center><a href="/downloads/GetImage-1.0.2.zip" title="download the package" class="download"><img src="/images/downloadicon.png" height="24" width="22" alt="download" border="0" />Download the&nbsp;Package</a></center></p>
<h3>What It Does</h3>
<p>The&nbsp;function works on&nbsp;a&nbsp;three-test basis, like this:</p>
<ul class="bullet">
<li><strong>First:</strong> Check to&nbsp;see if the&nbsp;author <em>has specified a&nbsp;Custom Field image</em>. If so, it means there is a&nbsp;specific image the&nbsp;author wants to&nbsp;use, so it better use ie</li>
<li><strong>Second:</strong> If no Custom Field image is specified, then grab the&nbsp;first image from the&nbsp;post in&nbsp;question</li>
<li><strong>Third:</strong> If there are no images in&nbsp;the&nbsp;post itself, then use a&nbsp;fail-safe image already on&nbsp;the&nbsp;server (If desired. You can toggle this option off)</li>
</ul>
<p>Got that? Check for&nbsp;a&nbsp;Custom Image. If not, check for&nbsp;a&nbsp;post image. If not, use a&nbsp;default image. Simple.</p>
<p><a name="installing"></a></p>
<h3>Installing GetImage</h3>
<p>Here’s the&nbsp;script in&nbsp;all it’s beauty (a&nbsp;commented version is in&nbsp;the&nbsp;download package)</p>
<pre name="code" class="php">
function getImage($h,$w,$filter) {

$customIMG = "image-featured";

 global $post, $posts;
 ob_start();
 ob_end_clean();
 $output = preg_match_all('/<img.+src=['"]([^'"]+)['"].*>/i', $post->post_content, $matches);

 $values = get_post_custom_values($customIMG);
 $checkValues = get_post_meta($post->ID, $customIMG, true);

 $echoIMG = "images/default-image.jpg";

 if ($checkValues) {

 $echoIMG = "images/$values[0]";

 } elseif ($output) {

 $echoIMG = $matches [1] [0];

 }

 if ($filter) $filter = "&#038;f=$filter";

 return "<img src="".get_bloginfo('template_url')."/scripts/timthumb.php?src=$echoIMG&#038;h=$h&#038;w=$w&#038;zc=1&#038;$filter" alt="" height="$h" width="$w" />";

}
</pre>
<p><a name="using"></a></p>
<h3>Using GetImage</h3>
<h4>Installing</h4>
<p>Upload the&nbsp;TimThumb file to&nbsp;your theme&#8217;s &#8220;scripts&#8221; directory (create it if it doesn&#8217;t exist).</p>
<p>Upload &#8220;default-image.jpg&#8221; to&nbsp;your theme&#8217;s &#8220;images&#8221; folder (again, create it if it&#8217;s not there).</p>
<p>Open your theme&#8217;s &#8220;functions.php&#8221; file and&nbsp;paste in&nbsp;the&nbsp;contents of&nbsp;the&nbsp;&#8221;GetImage.php&#8221; file.</p>
<h4>Using</h4>
<p>Here’s the&nbsp;code you insert into your theme wherever you want the&nbsp;image to&nbsp;appear:</p>
<pre name="code" class="php">
&lt;? php echo getImage( height, width, "" );?&gt;
</pre>
<p>Replace height and&nbsp;width with the&nbsp;dimensions you want for&nbsp;the&nbsp;image. For&nbsp;example, here on&nbsp;Pixellica I&nbsp;use this function to&nbsp;display images on&nbsp;the&nbsp;index, category and&nbsp;archives pages. I&nbsp;want the&nbsp;image to&nbsp;be 250 pixels high and&nbsp;570 pixels wide. So the&nbsp;code I&nbsp;use is this:</p>
<pre name="code" class="php">
&lt;? php echo getImage(250,570,"");?&gt;
</pre>
<p>The&nbsp;function operates inside the&nbsp;WordPress loop&nbsp;&#8212; and&nbsp;grabs whatever image is attached to&nbsp;each post as&nbsp;a&nbsp;Custom Field, or, Grabs the&nbsp;first image from each respective post.</p>
<p>To&nbsp;use GetImage for&nbsp;a&nbsp;Custom Field, add a&nbsp;Custom Field on&nbsp;each post called &#8220;image-featured&#8221; and&nbsp;give it an&nbsp;absolute path to&nbsp;the&nbsp;image you want to&nbsp;use.</p>
<p><a name="customizing"></a></p>
<h3>Customizing GetImage</h3>
<h4>The&nbsp;Custom Field Name</h4>
<p>By default the&nbsp;Custom Field name for&nbsp;GetImage to&nbsp;use is “image-featured”&nbsp;&#8212; but this is easily customized. If you want to&nbsp;change the&nbsp;name of&nbsp;the&nbsp;Custom Field, go into the&nbsp;GetImage function and&nbsp;find this line:</p>
<pre name="code" class="php">
$customIMG = "image-featured";
</pre>
<p>And&nbsp;change the&nbsp;value of&nbsp;the&nbsp;variable (“image-featured”) to&nbsp;whatever you want. You can call it LateForDinner for&nbsp;all I&nbsp;care.:)</p>
<h4>Styling the&nbsp;Image</h4>
<p>GetImage attaches a&nbsp;unique class to&nbsp;each image tag in&nbsp;the&nbsp;output HTML, so you can style them specifically. The&nbsp;unique class name is</p>
<pre name="code" class="php">
featuredIMG
</pre>
<p>You can use CSS to&nbsp;do whatever you want with the&nbsp;image. I&nbsp;use it to&nbsp;apply a&nbsp;slight rounded corners effect.</p>
<p><a name="filter"></a></p>
<h3>Filters</h3>
<p>Notice there’s an&nbsp;empty string variable in&nbsp;the&nbsp;function call. This is where you can use the&nbsp;filters from the&nbsp;TimThumb script. A&nbsp;list of&nbsp;all filters can be found on&nbsp;line 30 (or&nbsp;thereabouts) in&nbsp;the&nbsp;TimThumb.php file. The&nbsp;only ones I&nbsp;use are “greyscale”, “blur” and&nbsp;“smooth” for&nbsp;which the&nbsp;codes are “2”, “8” and&nbsp;“11” respectively. So to&nbsp;make the&nbsp;image greyscale, for&nbsp;example, use this:</p>
<pre name="code" class="php">
&lt;? php echo getImage(250,570,"2");?&gt;
</pre>
<p>&#8230;and&nbsp;the&nbsp;image will be resized to&nbsp;250 pixels high by 570 pixels wide and&nbsp;display in&nbsp;black and&nbsp;white.</p>
<h3>Using the&nbsp;Function</h3>
<p>I&nbsp;don’t care who downloads the&nbsp;function. I&nbsp;would ask you don’t use it on&nbsp;any website that glorifies porn or&nbsp;violence. And&nbsp;also, it took me a&nbsp;few hours of&nbsp;my&nbsp;life to&nbsp;code and&nbsp;troubleshoot this script, so I’d appreciate it greatly if you’d leave the&nbsp;credit in&nbsp;place.</p>
<p>Does it work for&nbsp;you? Do you have any thoughts or&nbsp;suggestions, or&nbsp;even a&nbsp;way to&nbsp;make it work better? Comment and&nbsp;share your ideas!</p>
<div id="crp_related"><h4 class="related">Related Posts:</h4><ul><li><a href="http://www.pixellica.com/inspiration/an-update-on-the-server-errors" rel="bookmark">An Update on the Server Errors</a></li><li><a href="http://www.pixellica.com/inspiration/focus-on-shane-devries" rel="bookmark">Focus on Shane Devries</a></li><li><a href="http://www.pixellica.com/inspiration/very-cool-bird-photography-by-andrew-zuckerman" rel="bookmark">Very Cool Bird Photography by Andrew Zuckerman</a></li><li><a href="http://www.pixellica.com/wallpaper/awesome-wallpaper-love-in-a-cage" rel="bookmark">Awesome Wallpaper: Love In a Cage</a></li><li><a href="http://www.pixellica.com/inspiration/video-rooftop-scene-from-the-matrix-in-legos%e2%84%a2" rel="bookmark">Video: Rooftop Scene from The Matrix in Legos™</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.pixellica.com/web/free-wordpress-script-for-custom-post-images/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>14 Great Minimal-Designed Websites</title>
		<link>http://www.pixellica.com/web/14-great-minimal-designed-websites</link>
		<comments>http://www.pixellica.com/web/14-great-minimal-designed-websites#comments</comments>
		<pubDate>Fri, 02 Oct 2009 12:10:48 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[minimal]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.pixellica.com/uncategorized/14-great-minimal-designed-websites/</guid>
		<description><![CDATA[Sometimes it seems almost too easy to design something that&#8217;s flashy &#8211; in truth, websites that look real nice, use lots of graphics, and have smooth Javascript animations or effects are getting to be a dime a dozen. As Far Side cartoonist Gary Larson once said about it, &#8220;that single panel was the best teacher [...]]]></description>
			<content:encoded><![CDATA[<p class="big">Sometimes it seems almost too easy to design something that&#8217;s flashy &#8211; in truth, websites that look real nice, use lots of graphics, and have smooth Javascript animations or effects are getting to be a dime a dozen. As Far Side cartoonist Gary Larson once said about it, &#8220;that single panel was the best teacher I ever had.&#8221; When you take away everything else, what&#8217;s left really has to do it&#8217;s job well.</p>
<p><span id="more-298"></span></p>
<h4><a href="http://www.odigy.com/mucho/" title="Ivaylo Nikolov" target="_Blank" onclick="pageTracker._trackPageview('/outgoing/www.odigy.com/mucho/?referer=');">Ivaylo Nikolov</a></h4>
<p><a href="http://www.odigy.com/mucho/" title="Ivaylo Nikolov" target="_Blank" onclick="pageTracker._trackPageview('/outgoing/www.odigy.com/mucho/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-1.jpg" width="570" height="342" alt="Example 1" /></a></p>
<h4><a href="http://www.workwithjob.com/" title="Tyler Thompson" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.workwithjob.com/?referer=');">Tyler Thompson</a></h4>
<p><a href="http://www.workwithjob.com/" title="Tyler Thompson" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.workwithjob.com/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-2.jpg" width="570" height="372" alt="Example 2" /></a></p>
<h4><a href="http://www.yootaehan.com/" title="Yoo Tae Han" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.yootaehan.com/?referer=');">Yoo Tae Han</a></h4>
<p><a href="http://www.yootaehan.com/" title="Yoo Tae Han" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.yootaehan.com/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-3.jpg" width="570" height="341" alt="Example 3" /></a></p>
<h4><a href="http://lucas.gr/" title="Lucas Tsolakian" target="_blank" onclick="pageTracker._trackPageview('/outgoing/lucas.gr/?referer=');">Lucas Tsolakian</a></h4>
<p><a href="http://lucas.gr/" title="Lucas Tsolakian" target="_blank" onclick="pageTracker._trackPageview('/outgoing/lucas.gr/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-4.jpg" width="570" height="329" alt="Example 4" /></a></p>
<h4><a href="http://magpie-studio.com/index.php" title="Magpie Studio" target="_blank" onclick="pageTracker._trackPageview('/outgoing/magpie-studio.com/index.php?referer=');">Magpie Studio</a></h4>
<p><a href="http://magpie-studio.com/index.php" title="Magpie Studio" target="_blank" onclick="pageTracker._trackPageview('/outgoing/magpie-studio.com/index.php?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-5.jpg" width="570" height="336" alt="Example 5" /></a></p>
<h4><a href="http://www.alexafalcone.com/" title="Alexa Falcone" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.alexafalcone.com/?referer=');">Alexa Falcone</a></h4>
<p><a href="http://www.alexafalcone.com/" title="Alexa Falcone" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.alexafalcone.com/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-6.jpg" width="570" height="330" alt="Example 6" /></a></p>
<h4><a href="http://www.whambook.com/" title="Will Hammond" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.whambook.com/?referer=');">Will Hammond</a></h4>
<p><a href="http://www.whambook.com/" title="Will Hammond" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.whambook.com/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-7.jpg" width="570" height="353" alt="Example 7" /></a></p>
<h4><a href="http://www.emmadupille.co.uk/" title="Emma du Pille" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.emmadupille.co.uk/?referer=');">Emma du Pille</a></h4>
<p><a href="http://www.emmadupille.co.uk/" title="Emma du Pille" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.emmadupille.co.uk/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-8.jpg" width="570" height="324" alt="Example 8" /></a></p>
<h4><a href="http://www.weareyoung.co.uk/" title="Young" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.weareyoung.co.uk/?referer=');">Young</a></h4>
<p><a href="http://www.weareyoung.co.uk/" title="Young" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.weareyoung.co.uk/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-9.jpg" width="570" height="369" alt="Example 9" /></a></p>
<h4><a href="http://www.marquecreative.com/" title="Marque Creative" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.marquecreative.com/?referer=');">Marque Creative</a></h4>
<p><a href="http://www.marquecreative.com/" title="Marque Creative" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.marquecreative.com/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-10.jpg" width="570" height="333" alt="Example 10" /></a></p>
<h4><a href="http://www.tonyhung.co.uk/" title="Tony Hung" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.tonyhung.co.uk/?referer=');">Tony Hung</a></h4>
<p><a href="http://www.tonyhung.co.uk/" title="Tony Hung" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.tonyhung.co.uk/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-11.jpg" width="570" height="329" alt="Example 11" /></a></p>
<h4><a href="http://www.justinmarcusdesign.com/" title="Justin Marcus" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.justinmarcusdesign.com/?referer=');">Justin Marcus</a></h4>
<p><a href="http://www.justinmarcusdesign.com/" title="Justin Marcus" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.justinmarcusdesign.com/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-12.jpg" width="570" height="396" alt="Example 12" /></a></p>
<h4><a href="http://www.joshuadistler.com/" title="Joshua Distler" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.joshuadistler.com/?referer=');">Joshua Distler</a></h4>
<p><a href="http://www.joshuadistler.com/" title="Joshua Distler" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.joshuadistler.com/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-13.jpg" width="570" height="368" alt="Example 13" /></a></p>
<h4><a href="http://www.no-do.ch/" title="No-Do" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.no-do.ch/?referer=');">No-Do</a></h4>
<p><a href="http://www.no-do.ch/" title="No-Do" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.no-do.ch/?referer=');"><img src="http://www.pixellica.com/wp-content/uploads/2009/10/Example-14.jpg" width="570" height="389" alt="Example 14" /></a></p>
<div id="crp_related"><h4 class="related">Related Posts:</h4><ul><li><a href="http://www.pixellica.com/muse/monday-muse-010" rel="bookmark">Monday Muse #010</a></li><li><a href="http://www.pixellica.com/wallpaper/15-great-apple-wallpapers" rel="bookmark">Weekend Wallpapers: 15 Great Apple Wallpapers</a></li><li><a href="http://www.pixellica.com/inspiration/1-mind-boggling-examples-trompe-loeil" rel="bookmark">15 Mind-Boggling Examples Trompe l'Oeil</a></li><li><a href="http://www.pixellica.com/inspiration/skateboard-art-that-makes-you-not-want-to-actually-do-an-olly" rel="bookmark">Skateboard Art that Makes You NOT Want to Actually Do An Olly</a></li><li><a href="http://www.pixellica.com/muse/monday-muse-011" rel="bookmark">Monday Muse #011</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.pixellica.com/web/14-great-minimal-designed-websites/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 Great jQuery &amp; MooTools Tune Ups</title>
		<link>http://www.pixellica.com/web/20-great-jquery-mootools-tune-ups</link>
		<comments>http://www.pixellica.com/web/20-great-jquery-mootools-tune-ups#comments</comments>
		<pubDate>Mon, 31 Aug 2009 13:01:23 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mootools]]></category>

		<guid isPermaLink="false">http://www.pixellica.com/?p=197</guid>
		<description><![CDATA[Bloggers come in all shapes, sizes and styles. Pixellica comes dangerously close to jumping on the WordPress bandwagon by publishing a short list of some of the snappiest tune-ups you can implement on your website or blog &#8211; a little technical know-how and copy/paste is all you need.

I&#8217;ve taken the liberty of separating the items [...]]]></description>
			<content:encoded><![CDATA[<p class="big">Bloggers come in all shapes, sizes and styles. Pixellica comes dangerously close to jumping on the WordPress bandwagon by publishing a short list of some of the snappiest tune-ups you can implement on your website or blog &#8211; a little technical know-how and copy/paste is all you need.</p>
<p><span id="more-197"></span></p>
<p>I&#8217;ve taken the liberty of separating the items by what AJAX library they utilize.</p>
<h3>MooTools Tune Ups</h3>
<h4>Form Validation</h4>
<p>Validate forms on the fly, without any unnecessary page loads or clunky javascript or server-side coding.<br />
<a href="http://mootools.floor.ch/en/demos/formcheck/" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/mootools.floor.ch/en/demos/formcheck/?referer=');">See how it works</a> &rarr; | <a href="http://mootools.floor.ch/en/download/" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/mootools.floor.ch/en/download/?referer=');">Download</a> &rarr;</p>
<h4>Moosture</h4>
<p>Provide your visitors with gesture-based navigation. It can be overkill when it&#8217;s used too much, but in the right place it can be great.<br />
<a href="http://neofreeman.freepgs.com/Moousture/" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/neofreeman.freepgs.com/Moousture/?referer=');">Visit the site</a> &rarr; | <a href="http://github.com/maxpert/moousture/tree/master" title="Download" target="_blank" onclick="pageTracker._trackPageview('/outgoing/github.com/maxpert/moousture/tree/master?referer=');">Download</a> &rarr;</p>
<h4>Using Opacity to Focus</h4>
<p>Allow visitors to focus only on what element they&#8217;re currently reading.<br />
<a href="http://davidwalsh.name/opacity-focus" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/davidwalsh.name/opacity-focus?referer=');">Visit the site &amp; Download</a> &rarr; | <a href="http://davidwalsh.name/dw-content/fade-except.php" title="see how it work" target="_blank" onclick="pageTracker._trackPageview('/outgoing/davidwalsh.name/dw-content/fade-except.php?referer=');">See how it works</a> &rarr;</p>
<h4>Product Highlighter</h4>
<p>Give people browsing your site a very smooth popup to display more information. Once you see it, you&#8217;ll recognize it.<br />
<a href="http://net.tutsplus.com/tutorials/javascript-ajax/create-a-simple-powerful-product-highlighter-with-mootools/" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/net.tutsplus.com/tutorials/javascript-ajax/create-a-simple-powerful-product-highlighter-with-mootools/?referer=');">Visit the site</a> &rarr; | <a href="http://nettuts.s3.amazonaws.com/022_Mootools/example.html" title="View demo" target="_blank" onclick="pageTracker._trackPageview('/outgoing/nettuts.s3.amazonaws.com/022_Mootools/example.html?referer=');">See how it works</a> &rarr; | <a href="http://nettuts.s3.amazonaws.com/022_Mootools/Archive.zip" title="download" target="_blank" onclick="pageTracker._trackPageview('/outgoing/nettuts.s3.amazonaws.com/022_Mootools/Archive.zip?referer=');">Download</a> &rarr;</p>
<h4>MooFlow Gallery</h4>
<p>If you use Macintosh, you&#8217;ll get this one right away. Give your photo gallery the CoverFlow treatment. It also loads additional galleries on the fly.<br />
<a href="http://www.outcut.de/MooFlow/Documentation.html" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.outcut.de/MooFlow/Documentation.html?referer=');">Visit the site</a> &rarr; | <a href="http://www.outcut.de/MooFlow/example-fullsize-viewer.html" title="view demo" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.outcut.de/MooFlow/example-fullsize-viewer.html?referer=');">See how it works</a> &rarr; | <a href="http://www.outcut.de/MooFlow/Download.html" title="download" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.outcut.de/MooFlow/Download.html?referer=');">Download</a> &rarr;</p>
<h3>jQuery Tune Ups</h3>
<h4>Password Input, iPhone Style</h4>
<p>The problem with password inputs is that every character is an asterisk. This tuneup changes each character on a delay, giving folks filling in a form the chance to correct typos as they go.<br />
<a href="http://css-tricks.com/better-password-inputs-iphone-style/" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/css-tricks.com/better-password-inputs-iphone-style/?referer=');">Visit the site</a> &rarr; | <a href="http://css-tricks.com/examples/iPhonePassword/" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/css-tricks.com/examples/iPhonePassword/?referer=');">See how it works</a> &rarr; | <a href="http://css-tricks.com/examples/iPhonePassword.zip" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/css-tricks.com/examples/iPhonePassword.zip?referer=');">Download</a> &rarr;</p>
<h4>Dynamic Breadcrumbs</h4>
<p>Breadcrumbs are an excellent way of showing hierarchy navigation, giving visitors a sense of place. But they don&#8217;t have to take up much space.<br />
<a href="http://www.comparenetworks.com/developers/jqueryplugins/jbreadcrumb.html" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.comparenetworks.com/developers/jqueryplugins/jbreadcrumb.html?referer=');">See how it works</a> &rarr; | <a href="http://www.comparenetworks.com/developers/jqueryplugins/jBreadCrumb.zip" title="download" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.comparenetworks.com/developers/jqueryplugins/jBreadCrumb.zip?referer=');">Download</a> &rarr;</p>
<h4>Infinite Carousel</h4>
<p>Carousels and slide galleries are great, except they always reset to the the beginning image if you scroll too many times. Infinite Carousel just keeps it going.<br />
<a href="http://jqueryfordesigners.com/jquery-infinite-carousel/" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/jqueryfordesigners.com/jquery-infinite-carousel/?referer=');">Visit the site</a> &rarr; | <a href="http://jqueryfordesigners.com/demo/infinite-carousel.html" title="visit the demo" target="_blank" onclick="pageTracker._trackPageview('/outgoing/jqueryfordesigners.com/demo/infinite-carousel.html?referer=');">See how it works</a> &rarr;</p>
<h4>Highlight Tabular Data</h4>
<p>Tables are notoriously hard to read, and the more data the worse it is. One way to ease the difficulty is by providing a highlight on each row, column, and cell so the eye has something to follow.<br />
<a href="http://css-tricks.com/video-screencasts/66-table-styling-2-fixed-header-and-highlighting/" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/css-tricks.com/video-screencasts/66-table-styling-2-fixed-header-and-highlighting/?referer=');">Visit the site</a> &rarr; | <a href="http://css-tricks.com/examples/FixedHeaderTable/" title="see how it works" target="_blank" onclick="pageTracker._trackPageview('/outgoing/css-tricks.com/examples/FixedHeaderTable/?referer=');">See how it works</a> &rarr; | <a href="http://css-tricks.com/examples/FixedHeaderTable.zip" title="download" target="_blank" onclick="pageTracker._trackPageview('/outgoing/css-tricks.com/examples/FixedHeaderTable.zip?referer=');">Download</a> &rarr;</p>
<h4>Custom Missing Image</h4>
<p>How many times have you had a broken image? This tuneup provides a custom image in the event an image path doesn&#8217;t work.<br />
<a href="http://davidwalsh.name/custom-missing-image-jquery" title="visit the site" target="_blank" onclick="pageTracker._trackPageview('/outgoing/davidwalsh.name/custom-missing-image-jquery?referer=');">Visit the site</a> &rarr; | <a href="http://davidwalsh.name/dw-content/image-error-jquery.php" title="see how it works" target="_blank" onclick="pageTracker._trackPageview('/outgoing/davidwalsh.name/dw-content/image-error-jquery.php?referer=');">See how it works</a> &rarr;</p>
<h3>Coming Soon</h3>
<p>Part Two will be following soon; check back in a few days!</p>
<div id="crp_related"><h4 class="related">Related Posts:</h4><ul><li><a href="http://www.pixellica.com/print/22-free-fonts-suitable-for-wedding-invitations" rel="bookmark">22 (Free) Fonts Suitable for Wedding Invitations</a></li><li><a href="http://www.pixellica.com/inspiration/id-love-to-play-that-gaming-environments" rel="bookmark">I'd Love to Play That! Gaming Environments</a></li><li><a href="http://www.pixellica.com/inspiration/21-amazing-dual-screen-wallpapers-from-mando-gomez" rel="bookmark">21 Amazing Dual-Screen Wallpapers from Mando Gomez</a></li><li><a href="http://www.pixellica.com/inspiration/20-awesome-photographs-of-funerary-statues" rel="bookmark">20 Awesome Photographs of Funerary Statues</a></li><li><a href="http://www.pixellica.com/inspiration/25-conceptual-environments-of-dystopian-cities" rel="bookmark">24 Conceptual Futuristic &amp; Dystopian Cities</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.pixellica.com/web/20-great-jquery-mootools-tune-ups/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
