<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IInterest &#187; jQuery</title>
	<atom:link href="http://www.iinterest.net/category/javascript/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iinterest.net</link>
	<description>Design &#38; Develope 关注用户体验,追求以用户为中心的设计.</description>
	<lastBuildDate>Thu, 26 Aug 2010 15:17:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>jQuery图片放大预览插件 cloud-zoom</title>
		<link>http://www.iinterest.net/2010/06/11/jquery-image-zoom-cloud-zoom/</link>
		<comments>http://www.iinterest.net/2010/06/11/jquery-image-zoom-cloud-zoom/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 08:27:03 +0000</pubDate>
		<dc:creator>Bell</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.iinterest.net/?p=877</guid>
		<description><![CDATA[table {
	
	border-collapse:collapse;
	border:1px solid #CCC;
	margin-bottom:20px;
}
td , th{
	padding:10px;
	vertical-align:top;	
	border:1px dotted #CCC;
}
th {
	background-color:#eee;	
}
td.noWrap {
	white-space:nowrap;	
} <a href="http://www.iinterest.net/2010/06/11/jquery-image-zoom-cloud-zoom/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iinterest.net/wp-content/uploads/2010/06/cloud-zoom.jpg"><img class="alignnone size-full wp-image-878" title="cloud-zoom" src="http://www.iinterest.net/wp-content/uploads/2010/06/cloud-zoom.jpg" alt="" width="514" height="257" /></a></p>
<p>分享一个jquery的图片放大预览插件:cloud-zoom.</p>
<p><a href="http://www.iinterest.net/demo/cloud-zoom.html" target="_blank"><strong>cloud-zoom DEMO</strong></a></p>
<p>部署步骤:</p>
<p>1.加载jquery-1.4.js 和 cloud-zoom.1.0.2.min.js</p>
<p>2.加入样式表(DEMO中&lt;style&gt;部分)</p>
<p>3.为需要放大预览效果的缩略图添加超链接<span style="color: #888888;">&lt;a&gt;</span>并将类命名为&#8221;cloud-zoom&#8221; <span style="color: #888888;">class=&#8221;cloud-zoom&#8221;</span></p>
<p>4.在超链接<span style="color: #888888;">&lt;a&gt;</span>的rel属性中加入需要的参数实现不同的效果<br />
<span id="more-877"></span><br />
实例:</p>
<blockquote><p>&lt;a href=&#8221;images/大图.jpg&#8221; class=&#8221;cloud-zoom&#8221; rel=&#8221;position:&#8217;inside&#8217; ,showTitle:false, adjustX:-2, adjustY:-2&#8243;&gt;&lt;img src=&#8221;images/缩略图.jpg&#8221; title=&#8221;iinterest&#8221; /&gt;&lt;/a&gt;</p></blockquote>
<p>cloud-zoom参数说明:</p>
<table border="1" cellpadding="2" width="100%">
<tbody>
<tr>
<th>Parameter</th>
<th>Description (from V1.0.0)</th>
<th>Default Value</th>
</tr>
<tr>
<td>zoomWidth</td>
<td>The width of the zoom window in pixels. If &#8216;auto&#8217; is specified, the width will be the same as the small image.</td>
<td class="noWrap">&#8216;auto&#8217;</td>
</tr>
<tr>
<td>zoomHeight</td>
<td>The height of the zoom window in pixels. If &#8216;auto&#8217; is specified, the height will be the same as the small image.</td>
<td><span class="noWrap">&#8216;auto&#8217;</span></td>
</tr>
<tr>
<td>position</td>
<td>Specifies the position of the zoom window relative to the small image. Allowable values are &#8216;left&#8217;, &#8216;right&#8217;, &#8216;top&#8217;, &#8216;bottom&#8217;, &#8216;inside&#8217; or you can specifiy the id of an html element to place the zoom window in e.g. position: &#8216;element1&#8242;</td>
<td>&#8216;right&#8217;</td>
</tr>
<tr>
<td>adjustX</td>
<td>Allows you to fine tune the x-position of the zoom window in pixels.</td>
<td>0</td>
</tr>
<tr>
<td>adjustY</td>
<td>Allows you to fine tune the y-position of the zoom window in pixels.</td>
<td>0</td>
</tr>
<tr>
<td>tint</td>
<td>Specifies a tint colour which will cover the small image. Colours should be specified in hex format, e.g. &#8216;#aa00aa&#8217;. Does not work with softFocus.</td>
<td>false</td>
</tr>
<tr>
<td>tintOpacity</td>
<td>Opacity of the tint, where 0 is fully transparent, and 1 is fully opaque.</td>
<td class="noWrap">0.5</td>
</tr>
<tr>
<td>lensOpacity</td>
<td>Opacity of the lens mouse pointer, where 0 is fully transparent, and 1 is fully opaque. In tint and soft-focus modes, it will always be transparent.</td>
<td>0.5</td>
</tr>
<tr>
<td>softFocus</td>
<td>Applies a subtle blur effect to the small image. Set to true or false. Does not work with tint.</td>
<td>false</td>
</tr>
<tr>
<td>smoothMove</td>
<td>Amount of smoothness/drift of the zoom image as it moves. The higher the number, the smoother/more drifty the movement will be. 1 = no smoothing.</td>
<td>3</td>
</tr>
<tr>
<td>showTitle</td>
<td>Shows the title tag of the image. True or false.</td>
<td>true</td>
</tr>
<tr>
<td>titleOpacity</td>
<td>Specifies the opacity of the title if displayed,  where 0 is fully transparent, and 1 is fully opaque.</td>
<td>0.5</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.iinterest.net/2010/06/11/jquery-image-zoom-cloud-zoom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery插件:实现类twitter的文本字数限制效果</title>
		<link>http://www.iinterest.net/2010/01/29/jquery-plugin-charcount/</link>
		<comments>http://www.iinterest.net/2010/01/29/jquery-plugin-charcount/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 07:59:49 +0000</pubDate>
		<dc:creator>Bell</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.iinterest.net/?p=723</guid>
		<description><![CDATA[之前也介绍过一个类似效果的JQ插件jQuery文本字数限制插件-maxlength,不过这次的charcount部署更简单,而且有超出数字提示的功能. 看看DEMO 简单的部署: 1.载入js: &#60;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.iinterest.net/demo/js/jquery.js&#8221;&#62;&#60;/script&#62; &#60;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.iinterest.net/demo/js/charCount.js&#8221;&#62;&#60;/script&#62; 2.Html结构: &#60;form id=&#8221;form&#8221; method=&#8221;post&#8221; action=&#8221;"&#62; &#60;h2&#62;Default Usage&#60;/h2&#62; &#60;div&#62; &#60;label for=&#8221;message&#8221;&#62;Type your message&#60;/label&#62; &#60;textarea id=&#8221;message1&#8243; name=&#8221;message1&#8243;&#62;&#60;/textarea&#62; &#60;/div&#62; &#60;h2&#62;Custom Usage&#60;/h2&#62; &#60;div&#62; &#60;label for=&#8221;message&#8221;&#62;Another message (limited to 30, warning at 10)&#60;/label&#62; &#60;textarea id=&#8221;message2&#8243; &#8230; <a href="http://www.iinterest.net/2010/01/29/jquery-plugin-charcount/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>之前也介绍过一个类似效果的JQ插件<a href="http://www.iinterest.net/2009/01/31/jquery-plugin-maxlength/">jQuery文本字数限制插件-maxlength</a>,不过这次的charcount部署更简单,而且有超出数字提示的功能.</p>
<p><strong><a href="http://www.iinterest.net/demo/charCount(twitter).html" target="_blank">看看DEMO</a></strong></p>
<p>简单的部署:</p>
<div>1.载入js:</div>
<blockquote>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.iinterest.net/demo/js/jquery.js&#8221;&gt;&lt;/script&gt;</div>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.iinterest.net/demo/js/charCount.js&#8221;&gt;&lt;/script&gt;</div>
</blockquote>
<p><!-- --></p>
<div>2.Html结构:</div>
<div>
<blockquote>
<div>&lt;form id=&#8221;form&#8221; method=&#8221;post&#8221; action=&#8221;"&gt;</div>
<div>&lt;h2&gt;Default Usage&lt;/h2&gt;</div>
<div>&lt;div&gt;</div>
<div>&lt;label for=&#8221;message&#8221;&gt;Type your message&lt;/label&gt;</div>
<div>&lt;textarea id=&#8221;message1&#8243; name=&#8221;message1&#8243;&gt;&lt;/textarea&gt;</div>
<div>&lt;/div&gt;</div>
<div>&lt;h2&gt;Custom Usage&lt;/h2&gt;</div>
<div>&lt;div&gt;</div>
<div>&lt;label for=&#8221;message&#8221;&gt;Another message (limited to 30, warning at 10)&lt;/label&gt;</div>
<div>&lt;textarea id=&#8221;message2&#8243; name=&#8221;message2&#8243;&gt;&lt;/textarea&gt;</div>
<div>&lt;/div&gt;</div>
<div>&lt;/form&gt;</div>
</blockquote>
</div>
<p><span id="more-723"></span></p>
<div>3.charCount插件设置:</div>
<div>
<blockquote>
<div>&lt;script type=&#8221;text/javascript&#8221;&gt;</div>
<div><span style="white-space: pre;"> </span>$(document).ready(function(){<span style="white-space: pre;"> </span></div>
<div><span style="white-space: pre;"> </span>//default usage</div>
<div><span style="white-space: pre;"> </span>$(&#8220;#message1&#8243;).charCount();</div>
<div><span style="white-space: pre;"> </span>//custom usage</div>
<div><span style="white-space: pre;"> </span>$(&#8220;#message2&#8243;).charCount({</div>
<div><span style="white-space: pre;"> </span>allowed: 30,<span style="white-space: pre;"> </span></div>
<div><span style="white-space: pre;"> </span>warning: 10,</div>
<div><span style="white-space: pre;"> </span>counterText: &#8216;剩余字数: &#8216;<span style="white-space: pre;"> </span></div>
<div><span style="white-space: pre;"> </span>});</div>
<div><span style="white-space: pre;"> </span>});</div>
<div>&lt;/script&gt;</div>
</blockquote>
</div>
<p>搞定:)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iinterest.net/2010/01/29/jquery-plugin-charcount/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery in 15 minutes [快速入门]</title>
		<link>http://www.iinterest.net/2009/12/24/jquery-in-15-minutes/</link>
		<comments>http://www.iinterest.net/2009/12/24/jquery-in-15-minutes/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 02:12:03 +0000</pubDate>
		<dc:creator>Bell</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.iinterest.net/?p=642</guid>
		<description><![CDATA[jQuery in 15 minutes View more documents from simon.]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_88304"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/simon/jquery-in-15-minutes" title="jQuery in 15 minutes">jQuery in 15 minutes</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=jquery-in-15-minutes1421&#038;rel=0&#038;stripped_title=jquery-in-15-minutes" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=jquery-in-15-minutes1421&#038;rel=0&#038;stripped_title=jquery-in-15-minutes" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/simon">simon</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.iinterest.net/2009/12/24/jquery-in-15-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2009 年度最佳 jQuery 插件</title>
		<link>http://www.iinterest.net/2009/12/14/2009-best-jquery-plug/</link>
		<comments>http://www.iinterest.net/2009/12/14/2009-best-jquery-plug/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 02:53:34 +0000</pubDate>
		<dc:creator>Bell</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.iinterest.net/?p=659</guid>
		<description><![CDATA[jQuery 是个宝库，而 jQuery 的插件体系是个取之不竭的宝库，众多开发者在 jQuery 框架下，设计了数不清的插件，jQuery  的特长是网页效果，因此，它的插件库也多与 UI 有关。本文是 webdesignledger.com 网站推选的2009年度最佳 jQuery 插件。 拉洋片 在一个固定区域，循环显示几段内容，这种方式很像旧时的拉洋片，2009年，这种 Web 效果大行其道，jQuery 有大量与此有关的插件，以下插件无疑是最佳的。 AnythingSlider 由 CSS-Tricks 的 Chris Coyier 设计，功能齐全，应用十分广泛。 Easy Slider 这个 Content Slider 插件既包含传统“前后”导航模式，又包含页码式导航。 Coda-Slider 2.0 Coda-Slider 2.0 是对 Panic Coda 网站上对应效果的模仿。 图片库 &#8230; <a href="http://www.iinterest.net/2009/12/14/2009-best-jquery-plug/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>jQuery 是个宝库，而 jQuery 的插件体系是个取之不竭的宝库，众多开发者在 jQuery 框架下，设计了数不清的插件，jQuery  的特长是网页效果，因此，它的插件库也多与 UI 有关。本文是 <a href="http://www.webdesignledger.com/">webdesignledger.com</a> 网站推选的2009年度最佳 jQuery 插件。</p>
<h3>拉洋片</h3>
<p>在一个固定区域，循环显示几段内容，这种方式很像旧时的拉洋片，2009年，这种 Web 效果大行其道，jQuery 有大量与此有关的插件，以下插件无疑是最佳的。</p>
<h3><a href="http://css-tricks.com/anythingslider-jquery-plugin/" target="_blank">AnythingSlider</a></h3>
<p><a href="http://css-tricks.com/anythingslider-jquery-plugin/" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_1.jpg" alt="jquery plugins" /></a><br />
<span id="more-659"></span><br />
由 CSS-Tricks 的 Chris Coyier 设计，功能齐全，应用十分广泛。</p>
<h3><a href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider" target="_blank">Easy Slider</a></h3>
<p><a href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_3.jpg" alt="jquery plugins" /></a></p>
<p>这个 Content Slider 插件既包含传统“前后”导航模式，又包含页码式导航。</p>
<h3><a href="http://www.ndoherty.biz/tag/coda-slider/" target="_blank">Coda-Slider 2.0</a></h3>
<p><a href="http://www.ndoherty.biz/tag/coda-slider/" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_7.jpg" alt="jquery plugins" /></a></p>
<p>Coda-Slider 2.0 是对 Panic Coda 网站上对应效果的模仿。</p>
<h3>图片库</h3>
<p>那些需要借助 Flash 实现滑动与渐入渐出效果图片库的日子已经去过，借助 jQuery，这种效果已经可以在本地实现，以下是本年度备受欢迎的几个 jQuery 图片库插件。</p>
<h3><a href="http://devkick.com/lab/galleria/" target="_blank">Galleria</a></h3>
<p><a href="http://devkick.com/lab/galleria/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_4.jpg" alt="jquery plugins" /></a></p>
<p>这是一个基于 jQuery 的图片库，可以逐个加载图片并显示缩略图。</p>
<h3><a href="http://www.catchmyfame.com/2009/08/13/jquery-panel-gallery-1-1-plugin-released/" target="_blank">jQuery Panel Gallery</a></h3>
<p><a href="http://www.catchmyfame.com/2009/08/13/jquery-panel-gallery-1-1-plugin-released/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_5.jpg" alt="jquery plugins" /></a></p>
<p>一个可以高度定义的图片库插件，无需对单个图片进行任何处理，这个插件会帮你完成一切。</p>
<h3><a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html" target="_blank">slideViewer</a></h3>
<p><a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_10.jpg" alt="jquery plugins" /></a></p>
<p>slideViewer 会检查你的图片列表中的编号，动态创建各个图片的页码浏览导航。</p>
<h3><a href="http://www.buildinternet.com/project/supersized/" target="_blank">Supersized</a></h3>
<p><a href="http://www.buildinternet.com/project/supersized/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_6.jpg" alt="jquery plugins" /></a></p>
<p>一个令人惊讶的图片循环展示插件，包含各种变换效果和预加载选项，会对图片自动改变尺寸以适应浏览器窗口。</p>
<h3>导航</h3>
<p>我们相信，作为网站的导航系统，应该越简单，越易用越好，然而，假如你确实希望实现一些更炫的效果，jQuery 就是最好的选项，以下插件是09年最好的 jQuery  导航插件。</p>
<h3><a href="http://pupunzi.open-lab.com/mb-jquery-components/mb-_menu/" target="_blank">jquery mb.menu</a></h3>
<p><a href="http://pupunzi.open-lab.com/mb-jquery-components/mb-_menu/" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_8.jpg" alt="jquery plugins" /></a></p>
<h3><a href="http://www.queness.com/post/256/horizontal-scroll-menu-with-jquery-tutorial" target="_blank">Horizontal Scroll Menu with jQuery </a></h3>
<p><a href="http://www.queness.com/post/256/horizontal-scroll-menu-with-jquery-tutorial" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_16.jpg" alt="jquery plugins" /></a></p>
<h3><a href="http://www.newmediacampaigns.com/page/autosprites-jquery-menu-plugin" target="_blank">AutoSprites</a></h3>
<p><a href="http://www.newmediacampaigns.com/page/autosprites-jquery-menu-plugin" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_9.jpg" alt="jquery plugins" /></a></p>
<h3>表单和表格</h3>
<p>在 Web 设计中，表单和表格都是不是很讨人喜欢的东西，但你不得不面对，本年度出现几个不错的 jQuery  插件帮你完成这些任务。</p>
<h3><a href="http://www.unwrongest.com/projects/password-strength/" target="_blank">Password Strength</a></h3>
<p><a href="http://www.unwrongest.com/projects/password-strength/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_12.jpg" alt="jquery plugins" /></a></p>
<p>这个插件帮你评估用户输入的密码是否足够强壮。</p>
<h3><a href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" target="_blank">Ajax Fancy Capcha</a></h3>
<p><a href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_13.jpg" alt="jquery plugins" /></a></p>
<p>顾名思义，一个支持 Ajax 又很炫的 jQuery Captcha 插件，它使用了很人性化的验证机制。</p>
<h3><a href="http://www.chromaloop.com/posts/chromatable-jquery-plugin" target="_blank">Chromatable</a></h3>
<p><a href="http://www.chromaloop.com/posts/chromatable-jquery-plugin" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/11/jquery_tables_10.jpg" alt="jquery tables" /></a></p>
<p>这个插件可以帮助你在表格上实现滚动条。</p>
<h3><a href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/" target="_blank">jqTransform</a></h3>
<p><a href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_14.jpg" alt="jquery plugins" /></a></p>
<p>一个式样插件，帮助你对表单中的控件进行式样控制。</p>
<h3><a href="http://www.uploadify.com/" target="_blank">Uploadify</a></h3>
<p><a href="http://www.uploadify.com/" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/12/jquery_2009_15.jpg" alt="jquery plugins" /></a></p>
<p>实现多个文件同时上传。</p>
<h3><a href="http://www.jankoatwarpspeed.com/post/2009/07/20/Expand-table-rows-with-jQuery-jExpand-plugin.aspx" target="_blank">jExpand </a></h3>
<p><a href="http://www.jankoatwarpspeed.com/post/2009/07/20/Expand-table-rows-with-jQuery-jExpand-plugin.aspx" target="_blank"><img style="BORDER-RIGHT: #c0c0c0 1px solid; BORDER-TOP: #c0c0c0 1px solid; BORDER-LEFT: #c0c0c0 1px solid; BORDER-BOTTOM: #c0c0c0 1px solid" src="http://webdesignledger.com/wp-content/uploads/2009/11/jquery_tables_1.jpg" alt="jquery tables" /></a></p>
<p>一个很轻量的 jQuery 插件，使你的表格可以扩展，在一些商业应用中，可以让表格更容易组织其中的内容。</p>
<p>本文来源：<a href="http://webdesignledger.com/resources/the-best-jquery-plugins-of-2009">http://webdesignledger.com/resources/the-best-jquery-plugins-of-2009</a><br />
中文翻译来源：<a href="http://www.iinterest.net/">COMSHARP CMS 企业网站内容管理系统官方站</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iinterest.net/2009/12/14/2009-best-jquery-plug/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>IxEdit:可视化jQuery开发工具</title>
		<link>http://www.iinterest.net/2009/11/14/ixedit-jquery-develop/</link>
		<comments>http://www.iinterest.net/2009/11/14/ixedit-jquery-develop/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 13:31:48 +0000</pubDate>
		<dc:creator>Bell</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.iinterest.net/?p=592</guid>
		<description><![CDATA[IxEdit是一款基于jQuery的,专门面向Web程序员和设计师量身定制的可视化交互设计工具. 官方网站:http://www.ixedit.com/ 虽然目前IxEdit还处于beta阶段,但功能已经非常强大了. IxEdit的界面: IxEdit功能介绍: IxEdit配置步骤: 1.安装Gears. [Gears 百度百科] 2.下载IxEdit 1.0 Public Beta 5 3.在需要启用IxEdit的html文档中载入IxEdit所需的JS,CSS和图片(你可以在readme.html中找到相应的代码) 4.开始使用~ 注:测试中发现IxEdit不支持gb2312编码,所以使用前请将你的HTML文档编码改为UTF-8. IxEdit具体功能目前还在体验中~]]></description>
			<content:encoded><![CDATA[<p>IxEdit是一款基于jQuery的,专门面向Web程序员和设计师量身定制的可视化交互设计工具.<br />
官方网站:<a href="http://www.ixedit.com/" target="_blank">http://www.ixedit.com/</a><br />
虽然目前IxEdit还处于beta阶段,但功能已经非常强大了.</p>
<p><strong>IxEdit的界面:</strong><br />
<img src="http://image215.poco.cn/mypoco/myphoto/20091114/20/51737245200911142054432398251664427_000.jpg" alt="IxEdit" /><br />
<span id="more-592"></span><br />
<strong>IxEdit功能介绍:</strong><br />
<object width="420" height="363"><param name="movie" value="http://www.tudou.com/v/U3E0vObMnkE"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="opaque"></param><embed src="http://www.tudou.com/v/U3E0vObMnkE" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="opaque" width="420" height="363"></embed></object></p>
<p><strong>IxEdit配置步骤:</strong><br />
1.安装<a href="http://gears.google.com/" target="_blank">Gears</a>. [<a href="http://baike.baidu.com/view/1028127.htm?fr=ala0" target="_blank">Gears 百度百科</a>]<br />
2.下载<a href="http://www.ixedit.com/assets/downloads/ixedit-1.0pb5.packed.zip" target="_blank">IxEdit 1.0 Public Beta 5</a><br />
3.在需要启用IxEdit的html文档中载入IxEdit所需的JS,CSS和图片(你可以在readme.html中找到相应的代码)<br />
<img src="http://image215.poco.cn/mypoco/myphoto/20091114/21/5173724520091114211409075.jpg" alt="" /><br />
4.开始使用~<br />
<img src="http://image215.poco.cn/mypoco/myphoto/20091114/21/517372452009111421222605.jpg" alt="" /></p>
<p><span style="color:#ff0000">注:测试中发现IxEdit不支持gb2312编码,所以使用前请将你的HTML文档编码改为UTF-8.</span></p>
<p>IxEdit具体功能目前还在体验中~</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iinterest.net/2009/11/14/ixedit-jquery-develop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
