<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Jquery plugins &#8211; Amazing Things</title>
	<atom:link href="https://www.amazingthings.in/tag/jquery-plugins/feed" rel="self" type="application/rss+xml" />
	<link>https://www.amazingthings.in</link>
	<description>Amazing Things is for Everyone. Everything which is amazing. Amazing wallpapers, entertainment, creativity, technology updates &#38; knowledge.</description>
	<lastBuildDate>Thu, 20 Sep 2018 12:45:52 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>

<image>
	<url>https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2017/12/AmazingThings.png?fit=32%2C32&#038;ssl=1</url>
	<title>Jquery plugins &#8211; Amazing Things</title>
	<link>https://www.amazingthings.in</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">44718163</site>	<item>
		<title>Display Character Counter While Inserting Text with Twitter Bootstrap Jquery Plugin</title>
		<link>https://www.amazingthings.in/display-character-counter-while-inserting-text.html</link>
					<comments>https://www.amazingthings.in/display-character-counter-while-inserting-text.html#respond</comments>
		
		<dc:creator><![CDATA[Aakash Doshi]]></dc:creator>
		<pubDate>Sun, 14 Apr 2013 04:54:32 +0000</pubDate>
				<category><![CDATA[CSS3 and Jquery]]></category>
		<category><![CDATA[Jquery plugins]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=2621</guid>

					<description><![CDATA[<p>Ever wanted to create a threshold counter or display number of character left  in your html text field. Bootstrap-Maxlength is one of the easiest way to display threshold counter. Twitter Bootstrap-maxlength This Jquery plugin integrates by default with Twitter bootstrap using badges to display the maximum length of the field where the user is inserting text. It [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/display-character-counter-while-inserting-text.html">Display Character Counter While Inserting Text with Twitter Bootstrap Jquery Plugin</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Ever wanted to create a threshold counter or display number of character left  in your html text field. Bootstrap-Maxlength is one of the easiest way to display threshold counter.</span></p>
<p style="text-align: justify;"><span style="font-size: large;"><strong><span style="font-family: georgia, palatino;">Twitter Bootstrap-maxlength</span></strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">This Jquery plugin integrates by default with Twitter bootstrap using badges to display the maximum length of the field where the user is inserting text. It uses the HTML5 attribute &#8220;maxlength&#8221; to work.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Lets take a look at it (Wait for the animation to appear)</span></p>
<p style="text-align: justify;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CropperCapture18.gif"><img fetchpriority="high" decoding="async" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CropperCapture18.gif?resize=664%2C111" alt="Display Character Counter While Inserting Text with Twitter Bootstrap Jquery Plugin" width="664" height="111" data-recalc-dims="1" /></a></p>
<p style="text-align: center;"><a  class="vc_btn vc_btn-white vc_btn-sm vc_btn_square " target="blank" href="http://www.amazingthings.in/demo/jquery_and_css/bootstrap maxlength/index.html" ><strong>Demo</strong></a> <a  class="vc_btn vc_btn-white vc_btn-sm vc_btn_square " target="blank" href="http://www.amazingthings.in/demo/jquery_and_css/bootstrap maxlength/bootstrap maxlength.zip" ><strong>Download</strong></a> <a  class="vc_btn vc_btn-white vc_btn-sm vc_btn_square " target="blank" href="https://github.com/mimo84/bootstrap-maxlength" ><strong>Tutorial</strong></a></p>
<p style="text-align: left;"><span style="font-size: medium; font-family: georgia, palatino;">STEP 1.<br />
</span><span style="font-size: medium; font-family: georgia, palatino;">Import 2 JS Files into your HTML Header</span></p>
<pre class="lang:default decode:true">&lt;script src="jquery.min.js"&gt;&lt;/script&gt; // FOR INITIATING JQUERY
&lt;script src="bootstrap-maxlength.js"&gt;&lt;/script&gt; // FOR INITIATING COUNTER</pre>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">STEP 2.<br />
</span><span style="font-size: medium; font-family: georgia, palatino;">Add Text Field or Text Area with ID and Name Attribute. Don&#8217;t forget to specify MAXLENGTH.</span></p>
<pre class="toolbar-overlay:false lang:default decode:true">&lt;input type="text" maxlength="25" name="alloptions" id="alloptions" /&gt;

&lt;textarea id="textarea" maxlength="225" rows="2" placeholder="This textarea has a limit of 225 chars."&gt;&lt;/textarea&gt;</pre>
<p><span style="font-size: medium; font-family: georgia, palatino;">STEP 3.<br />
</span><span style="font-size: medium; font-family: georgia, palatino;">Declare Maxlength BootStrap in Header</span></p>
<pre class="toolbar-overlay:false lang:default decode:true">&lt;script&gt;
$(document).ready(function(){

Insert Different functions as per the requirement here
Click Demo Button above for CODE

$('input#YOUR ID').maxlength() //This is basic without any properties
           
});
&lt;/script&gt;</pre>
<p><span style="font-size: medium; font-family: georgia, palatino;"> If you have any difficulties implementing it, Do let me know in comments below <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/display-character-counter-while-inserting-text.html">Display Character Counter While Inserting Text with Twitter Bootstrap Jquery Plugin</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/display-character-counter-while-inserting-text.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2621</post-id>	</item>
		<item>
		<title>Smallipop &#8211; The Best Jquery Toolptip Plugin</title>
		<link>https://www.amazingthings.in/smallipop-best-jquery-toolptip-plugin.html</link>
					<comments>https://www.amazingthings.in/smallipop-best-jquery-toolptip-plugin.html#respond</comments>
		
		<dc:creator><![CDATA[Aakash Doshi]]></dc:creator>
		<pubDate>Sat, 13 Apr 2013 15:44:42 +0000</pubDate>
				<category><![CDATA[CSS3 and Jquery]]></category>
		<category><![CDATA[Jquery plugins]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=2609</guid>

					<description><![CDATA[<p>Smallipop is a customizable jQuery plugin for displaying tooltips. This is so far one of my favorite tooltip plugin using jquery. Features: Pure css for the design. Fallbacks for older browsers and no images. CSS Animations are supported. Custom themes for different use cases. The popup trigger can be positioned anywhere. The popup will be [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/smallipop-best-jquery-toolptip-plugin.html">Smallipop &#8211; The Best Jquery Toolptip Plugin</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-family: georgia, palatino;"></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Smallipop</strong> is a customizable<strong> jQuery plugin for displaying tooltips</strong>. This is so far one of my favorite<strong> tooltip plugin using jquery.</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Features:</span></p>
<ul style="text-align: justify;">
<li><span style="font-family: georgia, palatino; font-size: medium;">Pure css for the design. Fallbacks for older browsers and no images.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;">CSS Animations are supported.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;">Custom themes for different use cases.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;">The popup trigger can be positioned anywhere. The popup will be displayed at the body root, so the position won&#8217;t be affected by your layout.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;">Automatic orientation whereever the popup appears. The popup will try to stay in the visible area of the screen, even when scrolling or at the edges.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;">Only a single popup element in the document. Some plugins create a hidden popup for each trigger.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;">Custom options for each trigger. You can have 20 different popups with 20 different themes on one page if you like.</span></li>
</ul>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">[box type=&#8221;info&#8221; align=&#8221;alignleft&#8221; width=&#8221;620&#8243; ]<strong>The demo below includes Installation instructions, How to create tooltip tour, How to display mandatory field in html form using tooltip and other minute information</strong>[/box]</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><img decoding="async" data-attachment-id="2610" data-permalink="https://www.amazingthings.in/smallipop-best-jquery-toolptip-plugin.html/untitled-6" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Untitled.jpg?fit=598%2C318&amp;ssl=1" data-orig-size="598,318" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Smallipop &#8211; The Best Jquery Toolptips Plugin" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Untitled.jpg?fit=300%2C159&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Untitled.jpg?fit=598%2C318&amp;ssl=1" class="aligncenter size-full wp-image-2610" alt="The Best Jquery Toolptips Plugin" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Untitled.jpg?resize=598%2C318" width="598" height="318" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Untitled.jpg?w=598&amp;ssl=1 598w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Untitled.jpg?resize=300%2C159&amp;ssl=1 300w" sizes="(max-width: 598px) 100vw, 598px" data-recalc-dims="1" /></span></p>
<p style="text-align: center;"><span style="font-family: georgia, palatino; font-size: medium;"><a  class="vc_btn vc_btn-white vc_btn-sm vc_btn_square " target="blank" href="http://www.amazingthings.in/demo/jquery_and_css/jquery tooltip/index.html" ><strong>Demo</strong></a>&nbsp;<a  class="vc_btn vc_btn-white vc_btn-sm vc_btn_square " target="blank" href="http://www.amazingthings.in/demo/jquery_and_css/jquery tooltip/jquery tooltip.zip" ><strong>Download</strong></a>&nbsp;<a  class="vc_btn vc_btn-white vc_btn-sm vc_btn_square " target="blank" href="http://projects.sebastianhelzle.net/jquery.smallipop//" ><strong>Tutorial</strong></a></span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/smallipop-best-jquery-toolptip-plugin.html">Smallipop &#8211; The Best Jquery Toolptip Plugin</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/smallipop-best-jquery-toolptip-plugin.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2609</post-id>	</item>
		<item>
		<title>27 unforgettable Jquery Plugins Of 2012</title>
		<link>https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html</link>
					<comments>https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html#comments</comments>
		
		<dc:creator><![CDATA[Aakash Doshi]]></dc:creator>
		<pubDate>Thu, 06 Dec 2012 23:43:52 +0000</pubDate>
				<category><![CDATA[CSS3 and Jquery]]></category>
		<category><![CDATA[Jquery plugins]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=1618</guid>

					<description><![CDATA[<p>I have always work hard to get the best and freshest Jquery plugins roundup for my readers and as we come to end of year, now its a good time to share the unforgettable jquery plugins of year 2012.Previously I presented you with New Jquery plugins and my readers found it&#160;useful, so in this post [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html">27 unforgettable Jquery Plugins Of 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-size: medium; text-align: justify;">I have always work hard to get the best and freshest</span><strong style="font-size: medium; text-align: justify;"><a href="http://www.amazingthings.in/category/web-designing" target="_blank"> Jquery plugins roundup</a></strong><span style="font-size: medium; text-align: justify;"> for my readers and as we come to end of year, now its a good time to share the </span><strong style="font-size: medium; text-align: justify;">unforgettable jquery plugins of year 2012</strong><span style="font-size: medium; text-align: justify;">.Previously I presented you with </span><a style="font-size: medium; text-align: justify;" href="http://www.amazingthings.in/2012/02/new-jquery-plugins-2012.html" target="_blank"><strong>New Jquery plugins</strong></a><span style="font-size: medium; text-align: justify;"> and my readers found it&nbsp;</span><strong style="font-size: medium; text-align: justify;">useful</strong><span style="font-size: medium; text-align: justify;">, so in this post you will find even more awesome and&nbsp;</span><strong style="font-size: medium; text-align: justify;">new plugins</strong><span style="font-size: medium; text-align: justify;">. &nbsp;</span></p>
<p style="text-align: justify;"><span style="color: #ff0000; font-size: medium;"><strong><span style="color: #000000;">Note :</span> Click the screens for the Demo&#8217;s</strong></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino; color: #ff9900;"><strong>MAKISU 3D DROPDOWN MENU</strong></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;">An experimental CSS 3D dropdown concept, wrapped up in a&nbsp;<a href="http://jquery.com/" target="_blank" rel="nofollow">jQuery</a>&nbsp;plugin.</span></p>
<p><a href="http://soulwire.github.com/Makisu/" target="_blank" rel="nofollow"><img decoding="async" data-attachment-id="1698" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/makisu" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/makisu.jpg?fit=600%2C350&amp;ssl=1" data-orig-size="600,350" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="makisu" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/makisu.jpg?fit=300%2C175&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/makisu.jpg?fit=600%2C350&amp;ssl=1" class="aligncenter size-full wp-image-1698" title="makisu" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/makisu.jpg?resize=620%2C350" alt="" width="620" height="350" data-recalc-dims="1" /></a></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>WINDY: A PLUGIN FOR SWIFT CONTENT NAVIGATION</strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">This jQuery plugin can be used to swiftly navigate content items. The effect will make the items fly away like a deck of cards caught in a tiny storm.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"><a href="http://tympanus.net/codrops/2012/10/09/windy-a-plugin-for-swift-content-navigation/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1624" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/windy-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Windy1.jpg?fit=580%2C315&amp;ssl=1" data-orig-size="580,315" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Windy" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Windy1.jpg?fit=300%2C162&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Windy1.jpg?fit=580%2C315&amp;ssl=1" class="aligncenter size-full wp-image-1624" title="Windy" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Windy1.jpg?resize=620%2C315" alt="" width="620" height="315" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>UNIQUE CSS3 CONTACT FORM</strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">This is an effect of a letter sliding out from an envelope on mouse hover.It works in browsers supporting css3 transitions. In IE the envelope is not visible, I certainly could have played a bit more with jQuery to reproduce a similar effect, but it’s not a part of this tutorial.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"><a href="http://pehaa.com/2011/07/create-a-unique-contact-form-with-css3-transitions/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1623" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/preview-3" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/preview1.jpg?fit=600%2C569&amp;ssl=1" data-orig-size="600,569" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="preview" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/preview1.jpg?fit=300%2C284&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/preview1.jpg?fit=600%2C569&amp;ssl=1" class="aligncenter size-full wp-image-1623" title="preview" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/preview1.jpg?resize=620%2C569" alt="" width="620" height="569" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>EXPERIMENTAL PAGE LAYOUT INSPIRED BY FLIPBOARD</strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">An experimental page layout that let&#8217;s you navigate pages by swiping or dragging as in a booklet, inspired by Flipboard.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"><a href="http://tympanus.net/codrops/2012/05/07/experimental-page-layout-inspired-by-flipboard/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1622" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/flipboardpagelayout1-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/FlipboardPageLayout11.jpg?fit=580%2C315&amp;ssl=1" data-orig-size="580,315" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="FlipboardPageLayout1" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/FlipboardPageLayout11.jpg?fit=300%2C162&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/FlipboardPageLayout11.jpg?fit=580%2C315&amp;ssl=1" class="aligncenter size-full wp-image-1622" title="FlipboardPageLayout1" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/FlipboardPageLayout11.jpg?resize=620%2C315" alt="" width="620" height="315" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>PRODUCT COLORIZER</strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">It is a light-weight solution for users to quickly preview a product in different colors. The plugin uses only two images per product to create the effect and it is built on top of the robust and popular Javascript framework&nbsp;<a href="http://jquery.com/" target="_blank" rel="nofollow">jQuery</a>, providing you with an easy setup. The plugin works in all major browsers including IE7+ (will work with IE6 if you use a png fix)</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"><a href="http://sandbox.nikorablin.com/productColorizer/#license" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1635" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/colorizer" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/COLORIZER.jpg?fit=642%2C542&amp;ssl=1" data-orig-size="642,542" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="COLORIZER" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/COLORIZER.jpg?fit=300%2C253&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/COLORIZER.jpg?fit=642%2C542&amp;ssl=1" class="aligncenter size-full wp-image-1635" title="COLORIZER" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/COLORIZER.jpg?resize=620%2C542" alt="" width="620" height="542" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>CONTACT FORM WITH SOME FANCY 3D EFFECTS</strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">In this tutorial we will use css3 3D transforms to create a contact form that mimic a regular letter. You’ll have to flip the envelope, note your (sender’s) coordinates on its back lid, open the envelope, unfold the paper and write your message.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> We’ll also make use of the :target pseudo-class so that no javascript is necessary.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3d-contact-form1.jpg"><img loading="lazy" decoding="async" data-attachment-id="1619" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/3d-contact-form-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3d-contact-form1.jpg?fit=900%2C588&amp;ssl=1" data-orig-size="900,588" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="3d-contact-form" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3d-contact-form1.jpg?fit=300%2C196&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3d-contact-form1.jpg?fit=696%2C455&amp;ssl=1" class="aligncenter size-full wp-image-1619" title="3d-contact-form" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3d-contact-form1.jpg?resize=620%2C588" alt="" width="620" height="588" data-recalc-dims="1" /></a></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">&nbsp;<span style="color: #ff9900;"><strong>CSS3 3D TEXT ANIMATION EFFECT</strong></span></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.amazingthings.in/2012/11/css3-text-animation-effects.html" target="_blank"><img loading="lazy" decoding="async" data-attachment-id="1640" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/css3d" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CSS3D.png?fit=623%2C164&amp;ssl=1" data-orig-size="623,164" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CSS3D" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CSS3D.png?fit=300%2C78&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CSS3D.png?fit=623%2C164&amp;ssl=1" class="aligncenter size-full wp-image-1640" title="CSS3D" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CSS3D.png?resize=623%2C164" alt="" width="623" height="164" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CSS3D.png?w=623&amp;ssl=1 623w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CSS3D.png?resize=300%2C78&amp;ssl=1 300w" sizes="(max-width: 623px) 100vw, 623px" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>jQuery Destaque Plugin</strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> A slide prestentation plugin with a built in paralax effect.</span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://globocom.github.com/destaque/#" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1647" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/parallax_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax_mini.jpg?fit=963%2C441&amp;ssl=1" data-orig-size="963,441" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="parallax_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax_mini.jpg?fit=300%2C137&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax_mini.jpg?fit=696%2C319&amp;ssl=1" class="aligncenter size-full wp-image-1647" title="parallax_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax_mini.jpg?resize=696%2C319" alt="" width="696" height="319" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax_mini.jpg?w=963&amp;ssl=1 963w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax_mini.jpg?resize=300%2C137&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;">&nbsp;<strong>MLENS JQUERY PLUGIN-THE MAGNIFYING GLASS</strong></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://mlens.musings.it/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1646" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/lens_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/lens_mini.jpg?fit=648%2C426&amp;ssl=1" data-orig-size="648,426" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="lens_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/lens_mini.jpg?fit=300%2C197&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/lens_mini.jpg?fit=648%2C426&amp;ssl=1" class="aligncenter size-full wp-image-1646" title="lens_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/lens_mini.jpg?resize=648%2C426" alt="" width="648" height="426" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/lens_mini.jpg?w=648&amp;ssl=1 648w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/lens_mini.jpg?resize=300%2C197&amp;ssl=1 300w" sizes="(max-width: 648px) 100vw, 648px" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>ROUNDABOUT</strong></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;">Roundabout is a jQuery plugin that easily converts unordered lists &amp; other nested HTML structures into entertaining, interactive, turntable-like areas.</span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://fredhq.com/projects/roundabout/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1645" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/roundabout" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Roundabout.jpg?fit=600%2C459&amp;ssl=1" data-orig-size="600,459" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Roundabout" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Roundabout.jpg?fit=300%2C229&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Roundabout.jpg?fit=600%2C459&amp;ssl=1" class="aligncenter size-full wp-image-1645" title="Roundabout" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Roundabout.jpg?resize=600%2C459" alt="" width="600" height="459" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Roundabout.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Roundabout.jpg?resize=300%2C229&amp;ssl=1 300w" sizes="(max-width: 600px) 100vw, 600px" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>REAL SHADOW</strong></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;">&nbsp;jQuery Plugin that casts photorealistic shadows. Perfect for eye-catching demos and landing pages.</span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://indamix.github.com/real-shadow/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1643" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/main" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/main.jpg?fit=600%2C350&amp;ssl=1" data-orig-size="600,350" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="main" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/main.jpg?fit=300%2C175&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/main.jpg?fit=600%2C350&amp;ssl=1" class="aligncenter size-full wp-image-1643" title="main" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/main.jpg?resize=600%2C350" alt="" width="600" height="350" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/main.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/main.jpg?resize=300%2C175&amp;ssl=1 300w" sizes="(max-width: 600px) 100vw, 600px" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>&nbsp;A COOL INSTAGRAM GRAVITY GALLERY JQUERY PLUGIN</strong></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://tutorialzine.com/2012/11/instagram-gravity-gallery/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1649" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/instagram-gravity-gallery" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/instagram-gravity-gallery.jpg?fit=620%2C400&amp;ssl=1" data-orig-size="620,400" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="instagram-gravity-gallery" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/instagram-gravity-gallery.jpg?fit=300%2C193&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/instagram-gravity-gallery.jpg?fit=620%2C400&amp;ssl=1" class="aligncenter size-full wp-image-1649" title="instagram-gravity-gallery" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/instagram-gravity-gallery.jpg?resize=620%2C400" alt="" width="620" height="400" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/instagram-gravity-gallery.jpg?w=620&amp;ssl=1 620w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/instagram-gravity-gallery.jpg?resize=300%2C193&amp;ssl=1 300w" sizes="(max-width: 620px) 100vw, 620px" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>REFINESLIDE</strong></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;">RefineSlide is a simple jQuery plugin for displaying responsive, image-based content (with shiny animations).</span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://alexdunphy.github.com/refineslide/#" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1650" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/box" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/BOX.jpg?fit=875%2C446&amp;ssl=1" data-orig-size="875,446" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="BOX" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/BOX.jpg?fit=300%2C152&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/BOX.jpg?fit=696%2C355&amp;ssl=1" class="aligncenter size-full wp-image-1650" title="BOX" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/BOX.jpg?resize=620%2C446" alt="" width="620" height="446" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">&nbsp;</span><strong style="color: #ff9900; font-family: georgia, palatino; font-size: medium;">UNFOLDING 3D FOLDING CONCEPT</strong></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">The idea is to reveal thumbnails using a neat effect: the current image will be “opened” in the middle and the thumbnails view will unfold in 3D.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://tympanus.net/codrops/2012/08/23/unfolding-3d-thumbnails-concept/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1660" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/unfolding-3d-thumbnails-concept-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Unfolding-3D-Thumbnails-Concept.jpg?fit=580%2C315&amp;ssl=1" data-orig-size="580,315" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Unfolding-3D-Thumbnails-Concept" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Unfolding-3D-Thumbnails-Concept.jpg?fit=300%2C162&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Unfolding-3D-Thumbnails-Concept.jpg?fit=580%2C315&amp;ssl=1" class="aligncenter size-full wp-image-1660" title="Unfolding-3D-Thumbnails-Concept" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Unfolding-3D-Thumbnails-Concept.jpg?resize=620%2C315" alt="" width="620" height="315" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>TILT SHIFT</strong></span></p>
<div style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">A jQuery plugin that uses the CSS3 image filters to replicate the tilt-shift effect. This is a proof of concept and currently only works in Chrome &amp; Safari 6.</span></div>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.noeltock.com/tilt-shift-css3-jquery-plugin/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1658" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/tiltshift-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/tiltshift.jpg?fit=590%2C297&amp;ssl=1" data-orig-size="590,297" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="tiltshift" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/tiltshift.jpg?fit=300%2C151&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/tiltshift.jpg?fit=590%2C297&amp;ssl=1" class="aligncenter size-full wp-image-1658" title="tiltshift" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/tiltshift.jpg?resize=620%2C297" alt="" width="620" height="297" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>BUILD A PARALLAX SCROLLING EFFECT WEBSITE</strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Parallax scrolling website interfaces have been popping up all over the place recently. I didn’t want to miss out on the fun, so I have put together a parallax scrolling demo built using jQuery and CSS.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://f6design.com/journal/2011/08/06/build-a-parallax-scrolling-website-interface-with-jquery-and-css/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1657" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/parallax-screenshot-578w-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax-screenshot-578w.jpg?fit=578%2C423&amp;ssl=1" data-orig-size="578,423" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="parallax-screenshot-578w" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax-screenshot-578w.jpg?fit=300%2C219&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax-screenshot-578w.jpg?fit=578%2C423&amp;ssl=1" class="aligncenter size-full wp-image-1657" title="parallax-screenshot-578w" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/parallax-screenshot-578w.jpg?resize=620%2C423" alt="" width="620" height="423" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>IVIEW SLIDER</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">iView Slider is an easy to use jQuery image slider with animated captions, responsive layout and HTML Elements like (Video, iFrame) slider. It allows you to easily add an unlimited number of slides and captions. Use it as image slider, image gallery, banner rotator, banner ads, or even as a presentation.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://iprodev.com/2012/07/iview/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1656" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/iview-slider-4" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/iview-slider.jpg?fit=640%2C356&amp;ssl=1" data-orig-size="640,356" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="iview slider" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/iview-slider.jpg?fit=300%2C166&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/iview-slider.jpg?fit=640%2C356&amp;ssl=1" class="aligncenter size-full wp-image-1656" title="iview slider" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/iview-slider.jpg?resize=620%2C356" alt="" width="620" height="356" data-recalc-dims="1" /></a></span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;">&nbsp;</span><strong style="color: #ff9900; font-family: georgia, palatino; font-size: medium;">ImageMapster</strong></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">A jQuery plugin that activates HTML imagemaps&nbsp;so you can highlight and select them. It has lots of other features for manual control, tooltips, resizing, and more. It is designed to be compatible with every common platform, and is tested with Internet Explorer 6-10, Firefox 3.0+, Safari, Opera, and Chrome. It works on mobile devices and doesn’t use Flash.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.outsharked.com/imagemapster/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1655" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/imagemapster-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/imagemapster.jpg?fit=497%2C504&amp;ssl=1" data-orig-size="497,504" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="imagemapster" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/imagemapster.jpg?fit=295%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/imagemapster.jpg?fit=497%2C504&amp;ssl=1" class="aligncenter size-full wp-image-1655" title="imagemapster" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/imagemapster.jpg?resize=620%2C504" alt="" width="620" height="504" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>GRIDSTER DRAGGABLE LAYOUT</strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">gridster.js is a jQuery plugin that helps you to build intuitive draggable layouts from elements spanning multiple columns. You can even dynamically add and remove elements from the grid.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://gridster.net/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1654" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/grid_01-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/grid_01.jpg?fit=590%2C297&amp;ssl=1" data-orig-size="590,297" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="grid_01" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/grid_01.jpg?fit=300%2C151&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/grid_01.jpg?fit=590%2C297&amp;ssl=1" class="aligncenter size-full wp-image-1654" title="grid_01" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/grid_01.jpg?resize=620%2C297" alt="" width="620" height="297" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>BOOK BLOCK</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">BookBlock is a jQuery plugin that can be used for creating booklet-like components that allow a “page flip” navigation. Any content can be used, such as images or text. The plugin transforms the structure only when needed (i.e. when flipping a page) and uses some overlays as shadow for the pages to create more realism.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://tympanus.net/codrops/2012/09/03/bookblock-a-content-flip-plugin/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1652" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/bookblock-3" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bookblock.jpg?fit=580%2C315&amp;ssl=1" data-orig-size="580,315" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="bookblock" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bookblock.jpg?fit=300%2C162&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bookblock.jpg?fit=580%2C315&amp;ssl=1" class="aligncenter size-full wp-image-1652" title="bookblock" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bookblock.jpg?resize=620%2C315" alt="" width="620" height="315" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900; font-size: medium; font-family: georgia, palatino;"><strong>BACKGROUND STRETCHER II</strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><strong></strong>bgStretcher 2011 (Background Stretcher) is a jQuery plug-in which allows you to add a large image (or a set of images) to the background of your web page and will proportionally resize the image(s) to fill the entire window area.</span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.ajaxblender.com/bgstretcher-2-jquery-stretch-background-plugin-updated.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1668" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/bgstretcher" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bgStretcher.jpg?fit=640%2C282&amp;ssl=1" data-orig-size="640,282" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="bgStretcher" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bgStretcher.jpg?fit=300%2C132&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bgStretcher.jpg?fit=640%2C282&amp;ssl=1" class="aligncenter size-full wp-image-1668" title="bgStretcher" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bgStretcher.jpg?resize=620%2C282" alt="" width="620" height="282" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900;"><strong><span style="font-size: medium; font-family: georgia, palatino;">ANY LIST SCROLLER-JQUERY PLUGIN TO SCROLL LISTS</span></strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Any List Scroller (ALS) is the&nbsp;<strong>jQuery</strong>&nbsp;plugin&nbsp;to scroll any list, of any dimension, with any content.</span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://als.musings.it/#demo" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1667" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/anylist" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/anylist.jpg?fit=970%2C414&amp;ssl=1" data-orig-size="970,414" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Aakash Doshi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="anylist" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/anylist.jpg?fit=300%2C128&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/anylist.jpg?fit=696%2C297&amp;ssl=1" class="aligncenter size-full wp-image-1667" title="anylist" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/anylist.jpg?resize=620%2C414" alt="" width="620" height="414" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900;"><strong><span style="font-size: medium; font-family: georgia, palatino;">ADAPTIVE THUMBNAIL PILE EFFECT WITH AUTOMATIC GROUPING</span></strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">This experimental jQuery plugin allows the automatic grouping of thumbnails using a pile effect. The thumbnails will group according to their shared data-pile attribute and once clicked, the pile will disperse and its thumbnails fly to their positions. The thumbnails can be slightly rotated or positioned with a delay.</span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://tympanus.net/codrops/2012/11/21/adaptive-thumbnail-pile-effect-with-automatic-grouping/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1666" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/thumbnailpileeffect" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/ThumbnailPileEffect.jpg?fit=580%2C315&amp;ssl=1" data-orig-size="580,315" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="ThumbnailPileEffect" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/ThumbnailPileEffect.jpg?fit=300%2C162&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/ThumbnailPileEffect.jpg?fit=580%2C315&amp;ssl=1" class="aligncenter size-full wp-image-1666" title="ThumbnailPileEffect" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/ThumbnailPileEffect.jpg?resize=620%2C315" alt="" width="620" height="315" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff9900;"><strong><span style="font-size: medium; font-family: georgia, palatino;">SLIM SCROLL &#8211; PLUGIN FOR SCROLL BARS</span></strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><strong>slimScroll</strong>&nbsp;is a small jQuery plugin that transforms any div into a scrollable area with a nice scrollbar &#8211; similar to the one Facebook and Google started using in their products recently.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">slimScroll doesn&#8217;t occupy any visual space as it only appears on a user initiated mouse-over. User can drag the scrollbar or use mouse-wheel to change the scroll value.</span></p>
<p><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://rocha.la/jQuery-slimScroll" target="_blank" rel="nofollow"><img decoding="async" data-attachment-id="1665" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/slimroll" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/slimroll.jpg?fit=%2C&amp;ssl=1" data-orig-size="" data-comments-opened="1" data-image-meta="[]" data-image-title="slimroll" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/slimroll.jpg?fit=300%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/slimroll.jpg?fit=1024%2C1024&amp;ssl=1" class="aligncenter size-full wp-image-1665" title="slimroll" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/slimroll.jpg?w=696" alt="" data-recalc-dims="1" /></a></span></p>
<p><span style="color: #ff9900; font-size: medium;"><strong>&nbsp;ADAPTOR JQUERY CONTENT SLIDER</strong></span></p>
<p><a href="http://www.philparsons.co.uk/demos/box-slider/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1670" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/3dslide" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3DSLIDE.jpg?fit=863%2C522&amp;ssl=1" data-orig-size="863,522" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="3DSLIDE" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3DSLIDE.jpg?fit=300%2C181&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3DSLIDE.jpg?fit=696%2C421&amp;ssl=1" class="aligncenter size-full wp-image-1670" title="3DSLIDE" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3DSLIDE.jpg?resize=620%2C522" alt="" width="620" height="522" data-recalc-dims="1" /></a></p>
<p style="text-align: justify;"><span style="color: #ff9900;"><strong><span style="font-size: medium;">JSIGNATURE</span></strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium;"><strong>jSignature</strong>&nbsp;is a jQuery plugin that simplifies creation of a signature capture field in a browser window, allowing a user to draw a signature using mouse, pen, or finger on touch enabled devices (e.g.&nbsp;<a href="http://jquery-plugins.net/tag/iphone" target="_blank" rel="nofollow">iPhones</a>,&nbsp;<a href="http://jquery-plugins.net/tag/ipad" target="_blank" rel="nofollow">iPads</a>&nbsp;or&nbsp;<a href="http://jquery-plugins.net/tag/android" target="_blank" rel="nofollow">Android</a>&nbsp;devices).</span></p>
<p style="text-align: justify;"><span style="font-size: medium;"><a href="http://willowsystems.github.com/jSignature/#/demo/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1671" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/jsignature_shot_fade-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/jsignature_shot_fade.jpg?fit=752%2C422&amp;ssl=1" data-orig-size="752,422" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="jsignature_shot_fade" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/jsignature_shot_fade.jpg?fit=300%2C168&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/jsignature_shot_fade.jpg?fit=696%2C391&amp;ssl=1" class="aligncenter size-full wp-image-1671" title="jsignature_shot_fade" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/jsignature_shot_fade.jpg?resize=620%2C422" alt="" width="620" height="422" data-recalc-dims="1" /></a></span></p>
<p><strong><span style="color: #ff9900; font-size: medium;">CIRCLE HOVER EFFECTS WITH CSS TRANSITIONS</span></strong></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CircleHoverEffects.jpg"><img decoding="async" data-attachment-id="1673" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/circlehovereffects" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CircleHoverEffects.jpg?fit=%2C&amp;ssl=1" data-orig-size="" data-comments-opened="1" data-image-meta="[]" data-image-title="CircleHoverEffects" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CircleHoverEffects.jpg?fit=300%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CircleHoverEffects.jpg?fit=1024%2C1024&amp;ssl=1" class="aligncenter size-full wp-image-1673" title="CircleHoverEffects" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CircleHoverEffects.jpg?w=620" alt="" data-recalc-dims="1" /></a></p>
<p><span style="font-size: medium;"><strong><span style="color: #ff9900;">JQUERY WEB TICKERS</span></strong></span></p>
<p><a href="http://www.amazingthings.in/2012/02/8-great-horizontal-news-ticker-using.html" target="_blank"><img decoding="async" data-attachment-id="1675" data-permalink="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/capture-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture.jpg?fit=%2C&amp;ssl=1" data-orig-size="" data-comments-opened="1" data-image-meta="[]" data-image-title="Capture" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture.jpg?fit=300%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture.jpg?fit=1024%2C1024&amp;ssl=1" class="aligncenter size-full wp-image-1675" title="Capture" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture.jpg?w=696" alt="" data-recalc-dims="1" /></a></p>
<p style="text-align: justify;"><span style="font-size: medium;">Not enough for you ? check out &#8220;<a href="http://www.amazingthings.in/category/web-designing" target="_blank"><strong>Amazingthings Jquery Archive</strong></a>&#8220;.I hope year 2013 brings more awesome plugins for web designers.</span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html">27 unforgettable Jquery Plugins Of 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/27-unforgettable-jquery-plugins-of-2012.html/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1618</post-id>	</item>
		<item>
		<title>15 Fresh and Pure CSS3 Tutorials 2012</title>
		<link>https://www.amazingthings.in/15-fresh-and-pure-css3-tutorials-2012.html</link>
					<comments>https://www.amazingthings.in/15-fresh-and-pure-css3-tutorials-2012.html#respond</comments>
		
		<dc:creator><![CDATA[Aakash Doshi]]></dc:creator>
		<pubDate>Sun, 13 May 2012 07:41:00 +0000</pubDate>
				<category><![CDATA[CSS3 and Jquery]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[css3 menu]]></category>
		<category><![CDATA[Jquery plugins]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/2012/05/15-fresh-and-pure-css3-tutorials-2012-2.html</guid>

					<description><![CDATA[<p>1.Pure CSS3 accordion image gallery The very popular “accordion or toggle” effects can now be easily implemented using only CSS! Article Source-Speckyboy Click the Image for live Demo 2. Impressive Product Showcase with CSS3 A product page is any page on your website that showcases a product. It has to describe its features, give some screenshots, and be [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/15-fresh-and-pure-css3-tutorials-2012.html">15 Fresh and Pure CSS3 Tutorials 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="text-align: left;" dir="ltr">
<div style="text-align: left;" dir="ltr">
<div style="text-align: left;" dir="ltr">
<div style="text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;"><strong>1.Pure CSS3 accordion image gallery</strong><strong></strong><br />
The very popular “accordion or toggle” effects can now be easily implemented using only CSS!</span></div>
<div style="text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;"><br />
<em style="color: #000000; font-size: large;">Article Source-<strong><a href="http://speckyboy.com/2012/04/25/how-to-build-an-accordion-image-gallery-with-only-css/" target="_blank" rel="nofollow">Speckyboy</a></strong> Click the Image for live Demo</em></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://webstandard.kulando.de/static/css3-toggler#coffeecards" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-pBWZImYrGbU/T6YjG-QXHBI/AAAAAAAAC4g/hSBCOMOpWfU/s640/accordioncss3.jpg?resize=620%2C448" alt="" width="620" height="448" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: left;"><strong style="font-family: georgia, palatino; font-size: large;"><br />
2. Impressive Product Showcase with CSS3</strong></div>
<div style="clear: both; text-align: left;">
<p><span style="font-size: large; font-family: georgia, palatino;">A product page is any page on your website that showcases a product. It has to describe its features, give some screenshots, and be descriptive.Now its possible with only css3.</span></p>
<p><em style="text-align: justify;">Article Source-<strong><a href="http://tutorialzine.com/2012/02/css3-product-showcase/" target="_blank" rel="nofollow">TutorialZine</a></strong> Click the Image for live Demo</em></p>
</div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://demo.tutorialzine.com/2012/02/css3-product-showcase/#/intro" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/2.bp.blogspot.com/-aAPkctG0bR8/T6Ym4NmEO8I/AAAAAAAAC4w/7bpes0aTqog/s640/productcss3.jpg?resize=620%2C260" alt="" width="620" height="260" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: left;"><strong style="color: #e69138; font-family: georgia, palatino; font-size: large;"><br />
<span style="color: #000000;">3.Flux Slider using CSS3</span></strong></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;">Experimental attempt to enable Nivo style image transitions but instead of using the traditional Javascript timer based animations to utilise the newer, more powerful CSS3 animations.</span></div>
<div style="clear: both; text-align: justify;"><em style="text-align: justify;"><br />
Article Source-<strong><a href="http://blog.joelambert.co.uk/2011/05/05/flux-slider-css3-animation-based-image-transitions/" target="_blank" rel="nofollow">Joelambert</a></strong> Click the Image for live Demo</em></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://www.joelambert.co.uk/flux" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-356SFb_KJeY/T642nLOYstI/AAAAAAAAC7Q/Byqkmxs0ETM/s640/flux.jpg?resize=620%2C354" alt="" width="620" height="354" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;"> </span></div>
<div style="clear: both; text-align: left;"><span style="color: #e69138; font-size: large; font-family: georgia, palatino;"><strong>4.A Pure CSS3 Cycling Slideshow</strong></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;">Thanks to CSS3, we can create effects and animations without using JavaScript, which will facilitate the work of many designers.</span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"> </span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><em style="text-align: justify;">Article Source-<a href="http://coding.smashingmagazine.com/2012/04/25/pure-css3-cycling-slideshow/" target="_blank" rel="nofollow">Smashingmagazine</a> Click the Image for live Demo</em></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://www.alessioatzeni.com/CSS3-Cycle-Image-Slider/" target="_blank" rel="nofollow"><img decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-gZjV8JdGJYI/T6YnuvJ09KI/AAAAAAAAC44/He_BxDPoMv0/s1600/stop_slider.jpg?w=696" alt="" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><em style="text-align: justify;"><br />
</em></span></div>
<div style="clear: both; text-align: left;"><span style="text-align: justify; font-size: large; font-family: georgia, palatino;"><span style="color: #e69138;"><strong>5.CSS3 3D Unfolding Menu</strong></span></span></div>
<div style="clear: both; text-align: left;"><span style="text-align: justify; font-size: large; font-family: georgia, palatino;">This menu has 3D unfolding sub list with animation. Just hover the top level link to see this in Firefox, Safari and Chrome.</span></div>
<div style="clear: both; text-align: left;"><span style="text-align: justify; font-size: large; font-family: georgia, palatino;"><br />
</span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><em style="text-align: justify;">Article Source-<a href="http://www.cssplay.co.uk/menus/cssplay-3d-unfolding-menu.html" target="_blank" rel="nofollow">cssplay</a> Click the Image for live Demo</em></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://www.cssplay.co.uk/menus/cssplay-3d-unfolding-menu.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/1.bp.blogspot.com/-kFZyn6LxuFU/T6YpPPPwK9I/AAAAAAAAC5A/ZduK90krXg4/s640/3d.png?resize=620%2C408" alt="" width="620" height="408" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><em style="text-align: justify;"><br />
</em></span></div>
<div style="clear: both; text-align: left;"><span style="text-align: justify; font-size: large; font-family: georgia, palatino;"><strong><span style="color: #e69138;">6.CSS3 3D Flipdown Menu</span></strong></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;">This menu has 3D flip down sub lists with animation. Just hover the top level links to see this in Firefox, Safari and Chrome.</span></div>
<div style="clear: both; text-align: left;"><span style="text-align: justify; font-size: large; font-family: georgia, palatino;"><strong><span style="color: #e69138;"><br />
</span></strong></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;"><em>Article Source-<a href="http://www.cssplay.co.uk/menus/cssplay-3d-flip-down.html" target="_blank" rel="nofollow">cssplay</a> Click the Image for live Demo</em></span></div>
<div style="clear: both; font-size: x-large; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://www.cssplay.co.uk/menus/cssplay-3d-flip-down.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/4.bp.blogspot.com/-i4vQbjZoA34/T6YqTVJVopI/AAAAAAAAC5I/X1Pr-s3pNWI/s640/menu.png?resize=620%2C240" alt="" width="620" height="240" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; font-size: x-large; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"> </span></div>
<div style="clear: both; text-align: justify;"><span style="color: #e69138; font-size: large; font-family: georgia, palatino;"><strong>7.<span style="text-align: left;">A Bunch of Soft, Customizable Pressure Buttons in CSS3</span></strong></span></div>
<div style="clear: both; text-align: justify;"><span style="text-align: left; font-size: large; font-family: georgia, palatino;">You can use or edit these as much as you like without any credit. They’re compatible with the latest version of all the major browsers.</span></div>
<div style="clear: both; text-align: justify;"><span style="text-align: left; font-size: large; font-family: georgia, palatino;"><br />
</span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;"><em>Article Source-<a href="http://www.inserthtml.com/2012/01/soft-pressure-buttons-css/" target="_blank" rel="nofollow">inserthtm</a>l Click the Image for live Demo</em></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://inserthtml.com/demo/buttons/index.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-AXfdi49wGzY/T6YsX0iN4NI/AAAAAAAAC5Q/eKQ8Zn2iMN8/s640/buttons1.jpg?resize=620%2C151" alt="" width="620" height="151" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"> </span></div>
<div style="clear: both; text-align: left;"><span style="color: #e69138; font-size: large; font-family: georgia, palatino;"><strong>8.Content Navigator with CSS3</strong></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;">Responsive content navigation using CSS3 transitions and :target pseudo-class.</span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;"> </span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;"><em>Article Source-<a href="http://tympanus.net/codrops/2012/03/23/responsive-content-navigator-with-css3/" target="_blank" rel="nofollow">codrops</a> Click the Image for live Demo</em></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://tympanus.net/Tutorials/CSS3ContentNavigator/index5.html#slide-main" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/4.bp.blogspot.com/-2FeeKQBxPlc/T6YttKWDa1I/AAAAAAAAC5o/5JHjJN2rV7Y/s640/menu.jpg?resize=620%2C302" alt="" width="620" height="302" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><strong style="text-align: left; font-size: large;"><br />
9.CSS3 ordered list styles</strong></div>
<div style="clear: both;"><span style="font-size: large;"><span style="font-family: georgia, palatino;">In this article you’ll learn how to add some CSS3 fine tuning to your ordered lists, using a semantic approach.<br />
</span><span style="font-family: georgia, palatino; font-style: italic;">Article Source-</span><strong><a style="font-style: italic;" href="http://www.red-team-design.com/css3-ordered-list-styles" target="_blank" rel="nofollow">redteamdesign</a></strong><span style="font-family: georgia, palatino; font-style: italic;"> Click the Image for live Demo</span></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://www.red-team-design.com/wp-content/uploads/2012/02/css3-ordered-list-styles-demo.html" target="_blank" rel="nofollow"><img decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-oB2nujL1_xc/T6Yu_QksjrI/AAAAAAAAC5w/0fhMg3VhRbo/s1600/css3-ordered-list-styles.png?w=696" alt="" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-family: georgia, palatino; font-size: large;"><br />
<strong></strong><strong>10.Fancy Social Menu with CSS3!</strong><br />
Today we’ll learn how to code a fancy social networks menu with HTML5 and CSS3 and absolutely no images. Yup, that’s right! No images at all. We’ll also learn how to convert a normal font to a web-font.</span></div>
<div style="clear: both;"><span style="font-size: large; font-family: georgia, palatino;"><em><br />
Article Source-<strong><a href="http://dirtekdesigns.com/tutorial/fancy-social-menu-with-html5-and-css3/" target="_blank" rel="nofollow">dirtekdesigns</a></strong> Click the Image for live Demo</em></span><a style="font-family: georgia, palatino; font-size: large;" href="http://dirtekdesigns.com/demo/circular-social-menu/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-xkklSQUW5QE/T6Yv2khXemI/AAAAAAAAC54/M3BkBcVUS-c/s640/Untitled.jpg?resize=620%2C186" alt="" width="620" height="186" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both;"><em style="font-family: georgia, palatino; font-size: large; text-align: left;"><br />
</em><span style="font-size: large;"><strong>11.Stylish Image Content Slider in Pure CSS3</strong></span><br />
<span style="font-size: large;">Yet another image content slider using pure css3.This will work in chrome and firefox.<em style="font-family: georgia, palatino; font-size: large; text-align: left;"><br />
Article Source-<strong><a href="http://designmodo.com/slider-css3/" target="_blank" rel="nofollow">Designmodo</a></strong> Click the Image for live Demo</em></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://designmodo.com/demo/css3slider/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/2.bp.blogspot.com/-PtoPnjtCHRU/T6YyqYvDg1I/AAAAAAAAC6E/Bz4nY-sAlXM/s640/preview.png?resize=620%2C480" alt="" width="620" height="480" border="0" data-recalc-dims="1" /><br />
</a></span><span style="font-family: georgia, palatino; font-size: large;"><strong>12.CSS3 Image hover effects</strong><br />
Five examples of hover effects using different CSS properties compared to the old tutorial posted on </span><strong><a style="font-family: georgia, palatino; font-size: large;" href="http://tympanus.net/codrops/2011/11/02/original-hover-effects-with-css3/" target="_blank" rel="nofollow">Codrops</a></strong><span style="font-family: georgia, palatino; font-size: large;">.</span></div>
<div style="clear: both; text-align: justify;"><span style="text-align: left; font-size: large; font-family: georgia, palatino;"><br />
</span><em style="font-family: georgia, palatino; font-size: large; text-align: left;">Article Source-<strong><a href="http://www.alessioatzeni.com/blog/css3-hover-effects/" target="_blank" rel="nofollow">alessioatzeni </a></strong>Click the Image for live Demo</em></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://www.alessioatzeni.com/wp-content/tutorials/html-css/CSS3-Hover-Effects/index.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/2.bp.blogspot.com/-x_nKVbEq3RY/T645N-nWMqI/AAAAAAAAC7c/MLXaYlTZmaI/s640/Untitled.jpg?resize=620%2C430" alt="" width="620" height="430" border="0" data-recalc-dims="1" /><br />
</a></span><em style="font-family: georgia, palatino; font-size: large;"><br />
<strong>13.CSS3 Skill Bar Animation</strong><br />
Article Source-<a href="http://www.alessioatzeni.com/blog/css3-skill-bar-animation/" target="_blank" rel="nofollow"><span><span>alessioatzeni</span></span> </a>Click the Image for live Demo</em></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://www.alessioatzeni.com/wp-content/tutorials/html-css/CSS3-Skill-Bar-Animation/index.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/1.bp.blogspot.com/-01ZftzhrDTw/T648Y_ZL7cI/AAAAAAAAC7o/c8TTeka_Pk4/s640/css3-skill-bar-animation.gif?resize=620%2C315" alt="" width="620" height="315" border="0" data-recalc-dims="1" /><br />
</a></span><span style="font-family: georgia, palatino; font-size: large; text-align: justify;"><strong>14.Cross browser pure CSS3 buttons</strong><br />
The result is this set of buttons created entirely from CSS (no images used at all).</span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large; font-family: georgia, palatino;"><br />
</span><em style="text-align: left;">Article Source-<strong><a href="http://www.midwinter-dg.com/permalink-cross-browser-pure-css3-button-demo-2011-07-21.html" target="_blank" rel="nofollow">midwinter </a></strong>Click the Image for live Demo</em></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://www.midwinter-dg.com/blog_demos/css3-buttons/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/2.bp.blogspot.com/-HrNb6ZOtIF0/T69VYhPehHI/AAAAAAAAC8A/nEJLp1dISlE/s640/Untitled.jpg?resize=620%2C258" alt="" width="620" height="258" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: left;"><span style="font-family: georgia, palatino; font-size: large; text-align: justify;"><br />
</span><span style="font-size: large;"><span style="font-family: georgia, palatino; text-align: justify;"><strong>15.Sliding image panels with CSS3</strong></span><span style="font-family: georgia, palatino; text-align: justify;"><br />
Some neat sliding image panels with CSS only. The idea is to use background images for the panels and animate them when clicking on a label.</span></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;"><span style="font-family: georgia, palatino;"><br />
</span><em style="text-align: left;">Article Source-<strong><a href="http://tympanus.net/codrops/2012/01/17/sliding-image-panels-with-css3/" target="_blank" rel="nofollow">tympanus</a></strong> Click the Image for live Demo</em></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; font-family: georgia, palatino;"><a href="http://tympanus.net/Tutorials/CSS3SlidingImagePanels/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/2.bp.blogspot.com/-YKOOcGKyC-4/T0j1lAktRKI/AAAAAAAACW8/HIrzYvmNKFc/s640/Sliding+Image+Panels+with+CSS3.jpg?resize=620%2C428" alt="" width="620" height="428" border="0" data-recalc-dims="1" /><br />
</a></span><span style="font-family: georgia, palatino; font-size: large; text-align: justify;">Thats all folks for now.Do leave me a comment if possible <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span></div>
</div>
</div>
</div>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/15-fresh-and-pure-css3-tutorials-2012.html">15 Fresh and Pure CSS3 Tutorials 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/15-fresh-and-pure-css3-tutorials-2012.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">570</post-id>	</item>
		<item>
		<title>New Jquery Plugins 2012</title>
		<link>https://www.amazingthings.in/new-jquery-plugins-2012.html</link>
					<comments>https://www.amazingthings.in/new-jquery-plugins-2012.html#respond</comments>
		
		<dc:creator><![CDATA[Aakash Doshi]]></dc:creator>
		<pubDate>Sat, 25 Feb 2012 17:56:00 +0000</pubDate>
				<category><![CDATA[CSS3 and Jquery]]></category>
		<category><![CDATA[Jquery plugins]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/2012/02/new-jquery-plugins-2012-2.html</guid>

					<description><![CDATA[<p>After my last article&#160;17 Unforgettable Jquery plugin Round Ups 2011&#160;, let us&#160;take a look at some of the best and innovative jQuery plugins of 2012 probably. &#160; New version of unforgettable Jquery plugins is available.Click here to open in new tab while to check out this one. Creating “Next Level” Search Form Using jQuery &#38; [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/new-jquery-plugins-2012.html">New Jquery Plugins 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="text-align: left;" dir="ltr">
<div style="text-align: left;" dir="ltr">
<div style="clear: both; text-align: justify;"><span style="font-size: large;">After my last article&nbsp;<span style="text-align: left;"><a href="http://www.amazingthings.in/2012/01/17-unforgettable-jquery-plugin-round.html" target="_blank">17 Unforgettable Jquery plugin Round Ups 2011&nbsp;</a>, let us&nbsp;</span><span style="text-align: left;">take a look at some of the best and innovative jQuery plugins of 2012 probably.</span></span></div>
<div style="clear: both; text-align: justify;">&nbsp;</div>
<div style="clear: both; text-align: justify;"><span style="font-family: georgia, palatino; font-size: large;">New version of <span style="color: #ff6600;">unforgettable Jquery plugins</span> is available.<strong><a title="Jquery plugins 2012" href="http://www.amazingthings.in/2012/12/27-unforgettable-jquery-plugins-of-2012.html" target="_blank">Click here</a> to open in new tab </strong>while to check out this one.</span></div>
<div style="clear: both; text-align: justify;"><strong style="font-size: large; text-align: left;"><br />
Creating “Next Level” Search Form Using jQuery &amp; CSS3</strong></div>
<div style="clear: both; text-align: left;"><span style="text-align: left; font-size: large;"><span style="text-align: justify;">Lately we found ton of new style search form crafted beautifully using CSS3 and JavaScript. Apple’s for example, widen the input field when it receive focus from user. The question is “how far we can go for styling search form?”</span></span></div>
<div style="clear: both; text-align: left;">
<p><span style="text-align: left;"><span style="font-size: large;"><a href="http://www.webstuffshare.com/2012/02/creating-next-level-search-form-using-jquery-css3/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/4.bp.blogspot.com/-rjvPJ6baGFs/T4E4IzSEgCI/AAAAAAAACuk/7vW2x9VZLt0/s640/1333554911.jpg?resize=620%2C334" alt="" width="620" height="334" border="0" data-recalc-dims="1" /></a></span></span></p>
<p><span style="font-size: large;"><strong style="font-family: inherit; font-size: large; text-align: justify;">jQuery and CSS3 Sliding Horizontal Parallax</strong></span></p>
</div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;">Sequence is the jQuery slider plugin with infinite style. It provides the complete functionality for a website slider without forcing you to use a set theme. In fact, Sequence has no in-built theme, leaving you complete creative control to build a unique slider using only CSS3 &#8212; no jQuery knowledge required!</span></div>
<div style="clear: both; text-align: left;"><a href="http://www.sequencejs.com/themes/sliding-horizontal-parallax/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-2hs6M8t0VpY/T0jqCJIKekI/AAAAAAAACWE/kd_8o5-mgBI/s640/jquery2012.jpg?resize=620%2C335" alt="" width="620" height="335" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: left;"><strong><span style="font-size: large;"><br />
</span></strong></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; text-align: justify;"><strong>Slide wooden blocks into place to fill letters</strong></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large; text-align: justify;">It’s the digital version of a puzzle that allows you to slide wooden blocks into place to fill letters. When you click on a block it slides down, and if you click it again it slides back up.</span></div>
<div style="clear: both; text-align: left;"><a href="http://www.netmagazine.com/files/tutorials/demos/2012/03/get-more-out-of-your-css-transitions-with-jquery/demo/demo.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/4.bp.blogspot.com/-OQf9h1okkzc/T3GVoXr-qzI/AAAAAAAAClo/3AFARImOvOs/s640/screengrab01.jpg?resize=620%2C338" alt="" width="620" height="338" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;"><br />
</span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;"><strong>Isometric interactive interior guide</strong></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;">During browsing internet, I have noticed new interesting thing – it looked like isometric guide. Today I will show you how you can create something similar. We will create isometric interactive interior guide with CSS3 and jQuery.</span><span style="text-align: center;">&nbsp;</span></div>
<div style="clear: both; text-align: left;"><a href="http://www.script-tutorials.com/isometric-interactive-interior-guide/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/1.bp.blogspot.com/-Ht_pikVfMEk/T3GX7WiCmxI/AAAAAAAACl4/ny5oI_fBuF8/s640/Isometric+interactive+interior+guide+with+CSS3+and+jQuery+%7C+Script+Tutorials.jpg?resize=620%2C354" alt="" width="620" height="354" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;"><strong><br />
</strong></span></div>
<div style="clear: both; text-align: left;"><strong><span style="font-size: large;">Jmpress.js to build a website on the infinite canvas</span></strong></div>
<div style="text-align: justify;"><span style="font-size: large;">A jQuery port of impress.js based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com.</span></div>
<div style="clear: both; text-align: left;"><a href="http://shama.github.com/jmpress.js/#/home" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-ARbLfSdMj_s/T0jrRZVhYNI/AAAAAAAACWU/dVInI4h_BFg/s640/jquery2.jpg?resize=620%2C354" alt="" width="620" height="354" border="0" data-recalc-dims="1" /><br />
</a></div>
<div style="clear: both; text-align: left;">&nbsp;</div>
<div style="clear: both; text-align: justify;"><span style="text-align: justify; font-size: large;"><span style="font-family: inherit;"><strong><br />
Jquery Scroll Path</strong><br />
It lets you define a custom path for the window to follow when scrolling up and down, and you can also throw rotations into the mix. You draw the path with methods that work exactly the same way as the canvas methods for drawing lines and arcs.</span></span></div>
<div style="clear: both; text-align: left;"><span style="text-align: justify;"><span style="font-family: inherit; font-size: large;"><a href="http://joelb.me/scrollpath/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/2.bp.blogspot.com/-6fhIW3_h5G8/T0oFw0-uEiI/AAAAAAAACYc/IQY1g9LCVxU/s640/scrollpath.png?resize=620%2C279" alt="" width="620" height="279" border="0" data-recalc-dims="1" /><br />
</a></span></span></div>
<div style="text-align: justify;"><span style="font-size: large;"><br />
<strong>PromptuMenu</strong><br />
A jQuery plugin that allows you to display list items in a similar way like a iPhone home screen. If item count exceeds the displayed items on one screen, users can swipe through screens.</span></div>
<div style="clear: both; text-align: left;"><a href="http://natrixnatrix89.github.com/promptu-menu/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/4.bp.blogspot.com/-l5-IFzxsh5w/T0jsuZ6WMII/AAAAAAAACWc/7-yqEXPSRmU/s640/3.jpg?resize=620%2C302" alt="" width="620" height="302" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: left;"><strong style="font-size: large;"><br />
Slabtext</strong></div>
<div><span style="font-size: large;">The script splits headlines into rows before resizing each row to fill the available horizontal space. The ideal number of characters to set on each row is calculated by dividing the available width by the CSS font-size – the script then uses this ideal character count to split the headline into word combinations that are displayed as separate rows of text.</span><a style="font-size: x-large; text-align: left;" href="http://www.frequency-decoder.com/demo/slabText/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/1.bp.blogspot.com/-qbPNPOWz0LU/T0jtirpMndI/AAAAAAAACWk/3gWf-5o6UtI/s640/slabText+–+a+jQuery+plugin+for+creating+big,+bold+&#038;+responsive+headlines.jpg?resize=620%2C446" alt="" width="620" height="446" border="0" data-recalc-dims="1" /><br />
</a><strong style="font-family: inherit; font-size: large; text-align: justify;"><br />
Minimit Gallery<br />
</strong><span style="font-size: large;">It is a highly customizable, library agnostic plugin that does galleries, slideshows, carousels, slides… pratically everything that has multiple states, in less than 10KB.</span><a style="font-size: x-large;" href="http://www.minimit.com/mg/demo.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-c5nYWOcBg6M/T0jvfDk_DJI/AAAAAAAACWs/1zQCYS1OjAQ/s640/minimit-gallery.jpg?resize=620%2C213" alt="" width="620" height="213" border="0" data-recalc-dims="1" /></a><span style="font-family: 'Droid Sans', sans-serif; text-align: -webkit-auto; font-size: large;"><span style="line-height: 24px;"><strong>rcarousel – a continuous jQuery UI carousel</strong></span></span><a style="text-align: -webkit-auto;" href="http://ryrych.github.com/rcarousel/#examples" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/1.bp.blogspot.com/-c3CrAKzxM0Y/T0jxKXfoAhI/AAAAAAAACW0/K_1lzyA6mR0/s640/rcarousel+–+continuous+jQuery+UI+carousel.png?resize=620%2C169" alt="" width="620" height="169" border="0" data-recalc-dims="1" /></a></div>
<div style="text-align: -webkit-auto;"><span style="font-family: 'Droid Sans', sans-serif; font-size: large;"><span style="line-height: 24px;"><strong>Examples</strong></span></span></div>
<ul>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><span style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; font-family: inherit; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/simple.html" target="_blank" rel="nofollow">simple carousel</a></span></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/margin.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">carousel with margin between elements</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/vertical.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">vertical carousel</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/custom_step_and_visible.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">carousel with custom step and visible elements</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/auto_reverse.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">carousel with the auto mode</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/ajax.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">elements loaded on demand</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/multi.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">multiple carousels on one page</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/gotopage.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">carousel with custom navigation</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/links.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">carousel wrapped with links</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/html.html" target="_blank" rel="nofollow"><span style="font-family: inherit;">carousel with HTML content</span></a></li>
<li style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; line-height: 24px; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;"><span style="font-family: inherit;"><a style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-color: initial; border-image: initial; border-style: initial; color: #ff2019; outline-color: initial; outline-style: initial; outline-width: 0px; vertical-align: baseline; border-width: 0px; padding: 0px; margin: 0px;" href="http://ryrych.github.com/rcarousel/examples/lightbox.html" target="_blank" rel="nofollow">carousel + lightbox</a></span></li>
</ul>
<div style="clear: both; text-align: left;"><a href="http://tympanus.net/Tutorials/CSS3SlidingImagePanels/index4.html" target="_blank" rel="nofollow"><span style="font-size: large; color: #000000;"><strong>Sliding Image Panels</strong></span><br />
<img decoding="async" src="https://i0.wp.com/2.bp.blogspot.com/-YKOOcGKyC-4/T0j1lAktRKI/AAAAAAAACW8/HIrzYvmNKFc/s1600/Sliding+Image+Panels+with+CSS3.jpg?w=696" alt="" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: left;"><strong style="font-size: x-large; text-align: justify;"><br />
</strong></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;"><span style="text-align: justify;"><span style="font-family: inherit;"><strong>Page Scroller<br />
</strong></span></span><span style="text-align: justify;">It is a powerful JavaScript based smooth scrolling navigation system that utilizes the robust jQuery library. Created entirely with ease of use in mind, the plugin will work on any website.&nbsp;</span></span></div>
<div style="clear: both; text-align: left;"><a href="http://pagescroller.com/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-GP0poifes6k/T0j18OvP8WI/AAAAAAAACXE/p4lH0OrH0ZA/s640/pagescroller.jpg?resize=620%2C242" alt="" width="620" height="242" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: left;"><strong style="text-align: justify;"><span style="font-size: large;"><br />
</span></strong></div>
<div style="clear: both; text-align: left;"><span style="font-size: large;"><strong style="text-align: justify;">Hover Card</strong></span></div>
<div style="text-align: justify;"><span style="font-size: large;">A free light weight jQuery plugin that enables you to display related information with the hovered label, link, or any html element of your choice.</span></div>
<div style="clear: both; text-align: left;"><a href="http://designwithpc.com/Plugins/Hovercard#demo" target="_blank" rel="nofollow"><img decoding="async" src="https://i0.wp.com/1.bp.blogspot.com/-dB4o6571CWY/T0kMJhnmXoI/AAAAAAAACXM/Gkh61xgV9BA/s1600/inplace-preview.png?w=696" alt="" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: left;"><strong style="font-family: inherit; font-size: large; text-align: justify;"><br />
Layer Slider&nbsp;The Parallax Effect Slider (Must check effects)</strong></div>
<div style="text-align: justify;"><span style="font-size: large;">This is a jQuery content slider using the parallax-effect. You can create as many layers and sublayers as you want. You can use images or any other HTML elements, including Flash movies as layers. The script is very user-friendly, you can add global settings or local (per slide) settings to each layer or sublayer. You can change delay times, easing types, durations and much more.</span></div>
<div style="clear: both; text-align: left;"><a href="http://codecanyon.net/item/layerslider-the-parallax-effect-slider/full_screen_preview/922100?ref=themespotters" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-YMISd7UEVwM/T0kOD48w6UI/AAAAAAAACXU/xchqd1eLNro/s640/kickass.jpg?resize=620%2C337" alt="" width="620" height="337" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: left;"><strong style="font-family: inherit; font-size: large;"><br />
Turn.js</strong></div>
<div style="font-family: inherit;"><span style="font-size: large;">is a plugin for jQuery that adds a beautiful transition similar to real pages in a book or magazine for HTML5.</span></div>
<div style="clear: both; font-family: inherit; text-align: left;"><span style="font-size: large;"><a href="http://www.turnjs.com/#home" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/4.bp.blogspot.com/-ETVUPFljN34/T0kQjEXGH5I/AAAAAAAACXc/mgpSx842LVY/s640/page.jpg?resize=620%2C576" alt="" width="620" height="576" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; font-family: inherit; text-align: left;"><strong style="font-family: inherit; font-size: large;"><br />
<span style="font-size: large;">Color Thief</span><br />
</strong><span style="font-size: large;">A script for grabbing the dominant color or color palette from an image. Uses Javascript and the canvas tag to make it happen.</span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large;"><a href="http://lokeshdhakar.com/projects/color-thief/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/4.bp.blogspot.com/-A0ygn1QRr2w/T0kTdDOQSqI/AAAAAAAACXk/EGSBGBXLADg/s640/Color+Thief.jpg?resize=620%2C240" alt="" width="620" height="240" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: left;"><strong style="font-family: inherit; font-size: large;"><br />
<span style="font-size: large;">youRhere jQuery plugin – Help your readers read!</span><br />
</strong><span style="font-size: large;">&#8220;youRhere&#8221; is a great Chrome extension which give you a chance to mark your article reading- progress by just clicking it.</span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large;"><a href="http://yourhere.gandtblog.com/#demo" target="_blank" rel="nofollow"><img decoding="async" src="https://i0.wp.com/1.bp.blogspot.com/-Ds7gIaemSHU/T0kWETAZC7I/AAAAAAAACXs/VeSE5E0xCig/s1600/mark.jpg?w=696" alt="" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: left;"><strong style="font-size: large; text-align: justify;"><br />
<span style="font-size: large;">Fast and Simple Links Box Navigation Menu: BoxyMenu</span></strong></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;">BoxyMenu is a simple and fast navigation menu plugin that renders smoothly in all major web browsers. It is simple to customize and can be plugged in to any website or web application.</span></div>
<div style="clear: both; text-align: left;"><a href="http://www.egrappler.com/boxymenu/index.htm" target="_blank" rel="nofollow"><img decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-DrEnP8woKVE/T0k-1DUU9bI/AAAAAAAACX0/RdcWTEz3JyY/s1600/jqueryplugins2.jpg?w=696" alt="" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: left;"><strong style="font-size: large;"><br />
Blur (Must Check)</strong></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;">blur.js is a jQuery plugin that produces psuedo-transparent &nbsp;blurred elements over other elements.</span></div>
<div style="clear: both; text-align: left;"><a href="http://blurjs.com/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-bW2eQZZK7NA/T1tQh0iGtRI/AAAAAAAACaQ/ZdGyUO5RzHs/s640/Screen-shot-2012-03-06-at-2.38.32-PM-e1331025000309.png?resize=620%2C416" alt="" width="620" height="416" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: justify;"><strong style="font-size: large;"><br />
<span style="font-size: large;">Metro JS</span></strong></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;">Metro JS is a JavaScript plugin for jQuery developed to easily enable Metro interfaces on the web. This release focuses on Live Tiles, the Application Bar and Theming. It’s early in the development phase, but all features should work on at least IE7+(Win/WinPhone), Firefox, Chrome, Android, Opera, and Safari(OSX/iOS).</span></div>
<div style="clear: both; text-align: left;"><a href="http://www.drewgreenwell.com/projects/metrojs#liveTileBasicExample" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" src="https://i0.wp.com/2.bp.blogspot.com/-VAzvVAQyAmk/T1tQ0tU6j8I/AAAAAAAACaY/bHJKW5TKcgI/s640/Metro+JS+-+Metro+Live+Tiles+and+More+for+jQuery+-+Drew+Greenwell+-+Professional+Developer.png?resize=620%2C154" alt="" width="620" height="154" border="0" data-recalc-dims="1" /></a></div>
<div style="clear: both; text-align: justify;"><strong style="font-size: large;"><br />
<span style="font-size: large;">Adipoli jQuery Image Hover Plugin</span></strong></div>
<div style="clear: both; text-align: justify;"><span style="font-size: large;">Adipoli is a simple jQuery plugin used to bring stylish image hover effects.</span></div>
<div style="clear: both; text-align: left;"><a href="http://jobyj.in/adipoli/" target="_blank" rel="nofollow"><img decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-i_jMWan1OJU/T2RibEkiN5I/AAAAAAAACjU/ykT0O_3kHgs/s1600/adipoli_full.jpg?w=696" alt="" border="0" data-recalc-dims="1" /></a></div>
</div>
</div>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/new-jquery-plugins-2012.html">New Jquery Plugins 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/new-jquery-plugins-2012.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">580</post-id>	</item>
		<item>
		<title>8 Great Horizontal News Ticker Using Jquery and CSS3</title>
		<link>https://www.amazingthings.in/8-great-horizontal-news-ticker-using.html</link>
					<comments>https://www.amazingthings.in/8-great-horizontal-news-ticker-using.html#comments</comments>
		
		<dc:creator><![CDATA[Aakash Doshi]]></dc:creator>
		<pubDate>Thu, 23 Feb 2012 13:01:00 +0000</pubDate>
				<category><![CDATA[CSS3 and Jquery]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Jquery plugins]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/2012/02/8-great-horizontal-news-ticker-using-jquery-and-css3-2.html</guid>

					<description><![CDATA[<p>Today we are going to have a look at different Horizontal News Ticker&#8217;s using css3 And Jquery that can be implemented straight on your blog.News ticker&#8217;s are also referred as Scrolling text or Marquee text effects.For people wondering what are they check out below they are very familiar to all of us.I have collected some of the best News [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/8-great-horizontal-news-ticker-using.html">8 Great Horizontal News Ticker Using Jquery and CSS3</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;">
<div dir="ltr" style="text-align: left;">
<div dir="ltr" style="text-align: left;">
<div style="text-align: left;">
<div style="text-align: justify;"><span style="font-size: large;">Today we are going to have a look at different <a href="http://www.amazingthings.in/2012/02/8-great-horizontal-news-ticker-using.html" target="_blank" rel="noopener">Horizontal News Ticker&#8217;s using css3 And Jquery</a> that can be implemented straight on your blog.News ticker&#8217;s are also referred as Scrolling text or Marquee text effects.For people wondering what are they check out below they are very familiar to all of us.</span><span style="font-size: large;">I have collected some of the best News Tickers available with their Sources And Download Files.</span></div>
<div style="text-align: justify;"><span style="font-size: large;"><br />
</span></div>
<div style="text-align: center;">
<div style="text-align: justify;"><span style="font-size: large;">Please allow some time for the live demo&#8217;s to load completely </span><span style="font-size: large;">Google Chrome User&#8217;s Preferred</span></div>
</div>
<div style="text-align: center;">
<div style="text-align: justify;"><span style="font-size: large;"><em><br />
</em></span></div>
</div>
<p><span style="font-size: large;">1.<strong>Smooth CSS3 ticker jQuery plugin</strong> is a beautiful News ticker inherited from 24 Hour news channel.</span></p>
<ul style="text-align: left;">
<li><span style="font-size: large;">Check out the <a href="http://assanka.net/content/tech/2010/03/14/smooth-css3-ticker-jquery-plugin/" target="_blank" rel="noopener nofollow">original Tutorial</a> for different options available and an interesting story about this ticker.</span></li>
</ul>
<p><iframe loading="lazy" width="600" height="80" src="http://www.amazingthings.in/demo/jquerycss/news.html" frameborder="0" scrolling="no"></iframe></p>
<p><del><span style="font-size: large;">2.<strong>Javascript News Ticker (outdated)</strong></span></del></p>
<p><span style="font-size: large;">3.<strong>News Ticker in 4 lines of jQuery</strong></span><br />
<span style="font-size: large;">There are a lot of different jQuery News Ticker plugins with lot of options that you can use. Do you want to learn how to create one on your own in only 4 lines od jQuery code ? </span><br />
<span style="font-size: large;">Check out the <a href="http://workshop.rs/2011/09/news-ticker-in-4-lines-of-jquery/" target="_blank" rel="noopener nofollow">original article</a> for more Demo&#8217;s and Downloads</span></p>
<div style="text-align: center;"><iframe loading="lazy" width="520" height="70" src="http://www.amazingthings.in/demo/jquerycss/ticker3.html" frameborder="0" scrolling="no"></iframe></div>
<div style="text-align: justify;"><span style="font-size: large;">4.</span><span style="text-align: left;"><span style="font-size: large;"><strong>Featurify Marquee jQuery plugin!</strong></span></span></div>
<div style="text-align: justify;"><span style="font-size: large;">Extremely easy to use jquery plugin that allows you to create simple slider with auto playing and hover managing.</span></div>
<div style="text-align: justify;"></div>
<ul>
<li><span style="font-size: large;">My Favorite so far.</span></li>
<li><span style="font-size: large;"><span style="text-align: left;">Check out the </span><a style="text-align: left;" href="http://spreadthesource.com/sandbox/featurify/" target="_blank" rel="noopener nofollow">original article</a><span style="text-align: left;"> for more Demo&#8217;s and Download</span></span><iframe loading="lazy" width="520" height="70" src="http://www.amazingthings.in/demo/jquerycss/ticker4.html" frameborder="0" scrolling="no"></iframe></li>
</ul>
<p><span style="font-size: large;">5.<strong>Simple Jquery Ticker using Jquery</strong></span></p>
<div style="text-align: justify;"><span style="font-size: large;">This plugin is very simple, all it does is takes an unordered list with child li’s and hide all but the first list item and then rotate each list item on a set interval of time</span></div>
<div style="text-align: justify;"><span style="font-size: large;">Check Out <a href="http://alexefish.com/post/15965696558/simple-jquery-ticker" target="_blank" rel="noopener nofollow">Original article</a></span></div>
<p><iframe loading="lazy" width="640" height="400" src="http://www.amazingthings.in/demo/jquerycss/ticker2.html" frameborder="0" scrolling="no"></iframe></p>
</div>
<div style="text-align: left;"></div>
<div style="text-align: left;"><span style="font-size: large;">6.<strong>CSS3 Marquee Ticker</strong></span></div>
<div style="text-align: justify;"><span style="font-size: large;">This one is purely done with just css3 styling, but only for Safari, Chrome and Firefox 5+ at the moment.</span></div>
<ul style="text-align: left;">
<li><span style="font-size: large;">Check out the <span style="font-family: inherit;"><a href="http://www.cssplay.co.uk/menu/css3-marquee.html" target="_blank" rel="noopener nofollow">Original article</a></span></span></li>
</ul>
<div style="text-align: left;"><iframe loading="lazy" width="600" height="80" src="http://www.amazingthings.in/demo/jquerycss/ticker5.html" frameborder="0" scrolling="no"></iframe></div>
<div style="text-align: left;"><span style="font-size: large;">7.<strong>Code Canyon Javascript Scrolling Ticker</strong></span></div>
<div style="text-align: justify;"></div>
<div style="text-align: left;"><span style="font-size: large;">A jQuery based scrolling ticker for displaying real time updates from a twitter account.</span></div>
<div style="text-align: left;"><span style="font-size: large;">Scalable width for easy integration with your specific application.</span></div>
<div style="text-align: left;"><span style="font-size: large;">Includes a sleek, low-profile default style. Easily customizable by enabling the the “tickerOnly” option.</span><br />
<span style="font-size: large;"><a href="http://codecanyon.net/item/scrolling-tweet-ticker/full_screen_preview/103951" target="_blank" rel="noopener nofollow">Live Preview</a></span></div>
<div style="clear: both; text-align: left;"><span style="font-size: large;"><img decoding="async" src="https://i0.wp.com/1.bp.blogspot.com/-KbXPq5u8K8Q/T0YqqWz49-I/AAAAAAAACVs/DQ5kKfKPqEc/s1600/Scrolling+Tweet+Ticker+-+CodeCanyon+Previewer.jpg?w=696" alt="" border="0" data-recalc-dims="1" /></span></div>
<div style="text-align: left;"><strong style="font-size: x-large;"><br />
</strong><strong><span style="font-size: large;">7.1 Jnews Ticker<br />
</span></strong><span style="font-size: large; text-align: justify;">jNewsticker is about giving you choice. Out of the box, it comes with three styles of news ticker:Fade between news items (one is displayed at a time)Continuously scroll between news items Reveal news items, one character at a time (also known as the typewriter effect)And if you understand Javascript and jQuery, you can create your own news ticker styles to sit on top of jNewsticker.</span></p>
<div style="text-align: justify;"><span style="font-size: large;"><a href="http://codecanyon.net/item/jnewsticker-jquery-news-ticker/full_screen_preview/2137525" target="_blank" rel="noopener nofollow">Live Preview</a></span></div>
<div style="clear: both; text-align: left;"><img loading="lazy" decoding="async" src="https://i0.wp.com/3.bp.blogspot.com/-ayJB_Nh90no/UCn1FIzopdI/AAAAAAAADqE/mmJfwVq9FtE/s640/screenshot2.png?resize=640%2C276" alt="" width="640" height="276" border="0" data-recalc-dims="1" /></div>
<div style="text-align: justify;"><span style="text-align: left; font-size: large;"><br />
8.</span><strong style="text-align: left; font-size: large;">Other Resources</strong></div>
</div>
<ul style="text-align: left;">
<li><span style="font-size: large;"><a href="http://www.jquerynewsticker.com/" target="_blank" rel="noopener nofollow">Jquery News Ticker</a></span></li>
<li><span style="font-size: large;"><a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/jq-liscroll/scrollanimate.html" target="_blank" rel="noopener nofollow">Jquery</a></span></li>
<li><span style="font-size: large;"><a href="http://www.givainc.com/labs/marquee_example.htm" target="_blank" rel="noopener nofollow">Marquee jQuery Plug-in</a></span></li>
</ul>
<div style="text-align: left;"><a  class="vc_btn vc_btn-white vc_btn-sm vc_btn_square " target="blank" href="http://www.amazingthings.in/demo/jquerycss/amazingthings%20newsticker.rar" >Download Ticker&#8217;s</a></div>
<div style="text-align: left;"></div>
<div style="text-align: left;"><span style="font-family: inherit; font-size: large; text-align: justify;">Any help or confusion regarding implementation,you can surely drop down a comment with your queries <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span></div>
</div>
</div>
</div>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/8-great-horizontal-news-ticker-using.html">8 Great Horizontal News Ticker Using Jquery and CSS3</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/8-great-horizontal-news-ticker-using.html/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">581</post-id>	</item>
		<item>
		<title>17 Unforgettable Jquery plugin Round Ups</title>
		<link>https://www.amazingthings.in/17-unforgettable-jquery-plugin-round.html</link>
					<comments>https://www.amazingthings.in/17-unforgettable-jquery-plugin-round.html#respond</comments>
		
		<dc:creator><![CDATA[Aakash Doshi]]></dc:creator>
		<pubDate>Thu, 05 Jan 2012 07:42:00 +0000</pubDate>
				<category><![CDATA[CSS3 and Jquery]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Jquery plugins]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/2012/01/17-unforgettable-jquery-plugin-round-ups-2.html</guid>

					<description><![CDATA[<p>Jquery is being one of my&#160;favorite&#160;inspirations when it comes to animations.Jquery was the one which made me create&#160;amazing things&#160;blog which later drived me through CSS3 Blogger HTML5 and so on..since then I have became a big fan of Jquery. It is truly said that &#8220;The only limitation is your imagination !&#8221;&#160; Check out the Jquery [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/17-unforgettable-jquery-plugin-round.html">17 Unforgettable Jquery plugin Round Ups</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Jquery is being one of my&nbsp;favorite&nbsp;inspirations when it comes to animations.Jquery was the one which made me create&nbsp;</span><a style="font-size: large; text-align: justify;" href="http://amazingthings.in/" target="_blank" rel="nofollow">amazing things</a><span style="font-size: medium; font-family: georgia, palatino;">&nbsp;blog which later drived me through CSS3 Blogger HTML5 and so on..since then I have became a big fan of Jquery. It is truly said that </span><em style="font-size: large; text-align: justify;">&#8220;The only limitation is your imagination !&#8221;</em><span style="font-size: medium; font-family: georgia, palatino;">&nbsp;</span></p>
<div dir="ltr" style="text-align: left;">
<div dir="ltr" style="text-align: left;">
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Check out the Jquery demo&#8217;s below and i am pretty sure that it will inspire you or surprise you in every aspect of your imagination.The demo are the most downloaded and appreciated jquery plugins world-wide make sure you dont miss any of them.</span></div>
<div style="clear: both; text-align: justify;">&nbsp;</div>
<div style="clear: both; text-align: justify;">[box type=&#8221;shadow&#8221; ] &nbsp; &nbsp; &nbsp;<span style="font-size: large;"><strong>Recommended Reading :&nbsp;<a style="font-family: georgia, palatino; font-size: medium;" title="Permalink to 27 unforgettable Jquery Plugins Of 2012" href="http://www.amazingthings.in/2012/12/27-unforgettable-jquery-plugins-of-2012.html" rel="bookmark">27 unforgettable Jquery Plugins Of 2012</a></strong></span>[/box]</div>
<div style="clear: both; text-align: justify;">&nbsp;</div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><strong>Firefox and Chrome users are&nbsp;preferred&nbsp;</strong></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Just <strong>click the image and it will open a demo page</strong> for you <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span></div>
<div style="clear: both; text-align: justify;">&nbsp;</div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.idangero.us/cs/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/1.bp.blogspot.com/-0ALstb_QfWE/TwSqiilCAdI/AAAAAAAABuQ/V_ZqGcMIMw4/s640/4_mini.jpg?resize=600%2C346" width="600" height="346" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.jscraft.net/demo/plugins/scroller/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/1.bp.blogspot.com/-Q3jgKM2_vuo/TwSqju22uGI/AAAAAAAABuY/_1zcRdfRIgM/s640/4eff7d2b9d29c958a0000055_mini.jpeg?resize=600%2C419" width="600" height="419" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://tympanus.net/Development/MergingImageBoxes/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/1.bp.blogspot.com/-uQoDel1KhSc/TwSqoBEsU8I/AAAAAAAABuw/5XElZPDZTtw/s640/4f0007f5f92ea1355f000001_mini.jpeg?resize=600%2C406" width="600" height="406" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://thiagosf.net/projects/jquery/skitter/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/2.bp.blogspot.com/-rGRTBt8n6rA/TwSqqFfvLCI/AAAAAAAABvA/rDkwExZeaXM/s640/15-skitter_mini.jpg?resize=600%2C240" width="600" height="240" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://pushingpixels.at/experiments/dynamic_shadow/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/3.bp.blogspot.com/-CSbLXETKBNY/TwSquHkq3ZI/AAAAAAAABvU/T0DypXsfKtQ/s640/preview-create-nifty-dynamic-shadow-jquery_mini.jpg?resize=600%2C336" width="600" height="336" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.amazingthings.in/2011/06/jquery-plug-in-for-lens-effect-image.html" target="_blank"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/3.bp.blogspot.com/-O9TKI39CcZI/TwSqsQt0-YI/AAAAAAAABvQ/9g8Z5g8QtH0/s640/lens_mini.jpg?resize=600%2C408" width="600" height="408" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://24ways.org/examples/2010/real-animation/demo4/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/1.bp.blogspot.com/-mgAFfKN1QHw/TwSqpfdLsvI/AAAAAAAABu0/PF6m2UG1-zE/s640/4f0138a8f92ea1254d00000b_mini.jpeg?resize=600%2C482" width="600" height="482" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://kiro.me/textualizer/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/2.bp.blogspot.com/-j6rT3KoRaMI/TwSqlNtw65I/AAAAAAAABug/echKA4QnkYk/s640/4eff7d67d535cf33d0000047_mini.jpeg?resize=600%2C304" width="600" height="304" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.kudoswebsolutions.com/blog/jquery_scrolling_background/demos.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/2.bp.blogspot.com/-VnZbFlJoyEA/TwSqmzDPabI/AAAAAAAABuo/HcXy09uz0zo/s640/4f000f68d535cf0540000004_mini.jpeg?resize=600%2C256" width="600" height="256" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://playground.mobily.pl/jquery/mobily-blocks/demo.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/3.bp.blogspot.com/-L95pgJnJ8PA/TwSqvTnARHI/AAAAAAAABvg/NAZen6yfNGY/s640/Screenshot-3_mini.jpg?resize=600%2C368" width="600" height="368" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.script-tutorials.com/demos/48/index.html" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/2.bp.blogspot.com/-F56Z2-SavNY/TwSqrZ6hv5I/AAAAAAAABvE/jDzfs5gAhPQ/s640/bouncing_mini.jpg?resize=600%2C406" width="600" height="406" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;">&nbsp;</div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://johnpolacek.github.com/scrollorama/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/2.bp.blogspot.com/-_safvSIIfUU/TwVFXEgWbuI/AAAAAAAABvw/zTAU-MbqnQ8/s640/scrollable.jpg?resize=600%2C314" width="600" height="314" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;">&nbsp;</div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.catchmyfame.com/2009/06/25/jquery-beforeafter-plugin/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/2.bp.blogspot.com/-tDWZ4elecmA/TwVGDUX9sFI/AAAAAAAABwA/rgP1zxdm4EQ/s640/beforeafter.JPG?resize=600%2C374" width="600" height="374" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://webdesigncrowd.com/demo/Animated-CSS3-Button-5.25.11/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/4.bp.blogspot.com/-rg7zDEzjtL0/TwVG5bRu1BI/AAAAAAAABwM/t2706pVyAlU/s640/main_image5.jpg?resize=600%2C234" width="600" height="234" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.addyosmani.com/resources/3dstack/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" alt="" src="https://i0.wp.com/4.bp.blogspot.com/-T66jPxtI5JQ/TwVG6BMMLaI/AAAAAAAABwU/9uIgDHv9JuM/s640/snake.jpg?resize=600%2C318" width="600" height="318" border="0" data-recalc-dims="1" /></a></span></div>
<div style="clear: both; text-align: justify;">&nbsp;</div>
<div style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Thats it&#8230; I hope you enjoyed it.Any problems or reviews , Drop me a comment and i will come back to you <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span><span style="font-size: medium; font-family: georgia, palatino;"></p>
<p></span></div>
</div>
</div>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/17-unforgettable-jquery-plugin-round.html">17 Unforgettable Jquery plugin Round Ups</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/17-unforgettable-jquery-plugin-round.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">592</post-id>	</item>
		<item>
		<title>Cloud Zoom jQuery image zoom plugin</title>
		<link>https://www.amazingthings.in/cloud-zoom-jquery-image-zoom-plugin.html</link>
					<comments>https://www.amazingthings.in/cloud-zoom-jquery-image-zoom-plugin.html#comments</comments>
		
		<dc:creator><![CDATA[Aakash Doshi]]></dc:creator>
		<pubDate>Thu, 30 Jun 2011 23:11:00 +0000</pubDate>
				<category><![CDATA[CSS3 and Jquery]]></category>
		<category><![CDATA[Jquery plugins]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/2011/07/cloud-zoom-jquery-image-zoom-plugin-2.html</guid>

					<description><![CDATA[<p>Cloud Zoom is a popular fly-out jQuery zoom plugin used on many high profile retail sites. Originally developed by Professor Cloud, this new version (from V2.0) has been completely re-engineered to fulfil the demands of modern websites and touch-enabled devices. Now fully touch-enabled, more features, faster, smoother, WC3 valid, and with a developer&#8217;s API. Click [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/cloud-zoom-jquery-image-zoom-plugin.html">Cloud Zoom jQuery image zoom plugin</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="http://www.starplugins.com/sites/starplugins/images/logo2.png" target="_blank" rel="nofollow"><strong>Cloud Zoom</strong></a> is a popular fly-out jQuery zoom plugin used on many high profile retail sites.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Originally developed by Professor Cloud, <strong>this new version (from V2.0) has been completely re-engineered</strong> to fulfil the demands of modern websites and touch-enabled devices.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Now fully touch-enabled, more features, faster, smoother, WC3 valid, and with a developer&#8217;s API.</span></p>
<p style="text-align: justify;"><strong><span style="font-size: medium;">Click the images for live examples and get stunned..</span></strong></p>
<div style="text-align: left;" dir="ltr">
<div style="text-align: left;" dir="ltr">
<div style="text-align: left;" dir="ltr">
<div style="text-align: left;" dir="ltr">
<div style="text-align: left;" dir="ltr">
<div style="text-align: left;">
<div style="text-align: justify;"><a href="http://www.starplugins.com/cloudzoom/examples" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1693" data-permalink="https://www.amazingthings.in/cloud-zoom-jquery-image-zoom-plugin.html/home3" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home3.jpg?fit=900%2C298&amp;ssl=1" data-orig-size="900,298" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="home3" data-image-description="" data-image-caption="&lt;p&gt;JN&lt;/p&gt;
" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home3.jpg?fit=300%2C99&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home3.jpg?fit=696%2C230&amp;ssl=1" class="aligncenter size-full wp-image-1693" title="home3" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home3.jpg?resize=696%2C230" alt="" width="696" height="230" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home3.jpg?resize=300%2C99&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a><a href="http://www.starplugins.com/jetzoom/examples" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="1692" data-permalink="https://www.amazingthings.in/cloud-zoom-jquery-image-zoom-plugin.html/home2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home2.jpg?fit=900%2C298&amp;ssl=1" data-orig-size="900,298" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="home2" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home2.jpg?fit=300%2C99&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home2.jpg?fit=696%2C230&amp;ssl=1" class="aligncenter size-full wp-image-1692" title="home2" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home2.jpg?resize=696%2C230" alt="" width="696" height="230" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home2.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home2.jpg?resize=300%2C99&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a><a href="http://www.starplugins.com/starzoom/examples" target="_blank" rel="nofollow"><img decoding="async" data-attachment-id="1691" data-permalink="https://www.amazingthings.in/cloud-zoom-jquery-image-zoom-plugin.html/home1" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home1.jpg?fit=%2C&amp;ssl=1" data-orig-size="" data-comments-opened="1" data-image-meta="[]" data-image-title="home1" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home1.jpg?fit=300%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home1.jpg?fit=1024%2C1024&amp;ssl=1" class="aligncenter size-full wp-image-1691" title="home1" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2011/07/home1.jpg?w=696" alt="" data-recalc-dims="1" /></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/cloud-zoom-jquery-image-zoom-plugin.html">Cloud Zoom jQuery image zoom plugin</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/cloud-zoom-jquery-image-zoom-plugin.html/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">610</post-id>	</item>
	</channel>
</rss>
