<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Ajax Finder [Ajax探索者]</title>
	
	<link>http://codeindex.cn</link>
	<description>Ajax Finder</description>
	<lastBuildDate>Fri, 04 Jun 2010 10:06:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Codeindex" /><feedburner:info uri="codeindex" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Codeindex</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>cometchat – 网站访客IM</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/RWHfOxQVzgA/</link>
		<comments>http://codeindex.cn/10958/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 10:06:29 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[聊天 [IM]]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[cometchat]]></category>
		<category><![CDATA[im]]></category>
		<category><![CDATA[聊天]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/10958/</guid>
		<description><![CDATA[IM大家一定很熟习吧，不过是一款用在网站上的IM，访客可以在线聊天，并且支持群组，cometchat是商业软件，不过本站继续提供源码下载，要保密哟～，cometchat支持多款开源CMS（Joomla）或Blog（WordPress）等。支持插件功能，通过插件实现传文件，视频等功能。不错，赶快试试吧～ Livedemo Download Homepage]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2010/06/cometchat/cometcht.jpg" class="alignnone" width="540"></p>
<p>IM大家一定很熟习吧，不过是一款用在网站上的IM，访客可以在线聊天，并且支持群组，cometchat是商业软件，不过本站继续提供源码下载，要保密哟～，cometchat支持多款开源CMS（Joomla）或Blog（WordPress）等。支持插件功能，通过插件实现传文件，视频等功能。不错，赶快试试吧～</p>
<p><span id="more-10958"></span></p>
<ul class="boxlink">
<li><a href="http://www.cometchat.com/" target="_blank">Livedemo</a></li>
<li><a href="/wp-content/uploads/2010/06/cometchat/cometchat_1.5.94_jomsocial_nulled.zip" target="_blank">Download</a></li>
<li><a href="http://www.cometchat.com/" target="_blank">Homepage</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10958/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10958/</feedburner:origLink></item>
		<item>
		<title>uchome二次开发笔记(不断更新)</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/IACSHeH4pfQ/</link>
		<comments>http://codeindex.cn/10953/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 07:44:22 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[其它日志]]></category>
		<category><![CDATA[uchome]]></category>
		<category><![CDATA[二次开发]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/10953/</guid>
		<description><![CDATA[当前工作中一个项目是基于uchome的二次开发，一些常用的功能在此做个记录。 全部变量$_SGLOBAL 1 2 3 4 5 6 7 //$_SGLOBAL存放了一些全局变量的数组，包括用户登录信息和站内常用变量 $userid= $_SGLOBAL&#91;&#34;session&#34;&#93;&#91;&#34;uid&#34;&#93;; //登录用户ID $credit=$_SGLOBAL&#91;member&#93;&#91;credit&#93;; //登录用户积分 $gold=$_SGLOBAL&#91;member&#93;&#91;gold&#93;; //登录用户金币 &#160; //查看更多请使用 var_dump&#40;$_SGLOBAL&#41;; 判断用户是否登录 1 checklogin&#40;&#41;; 消息提示 1 2 3 4 //do_success在language目录下lang_showmessage.php定义或直接写文字。 //$URL是跳转地址，为空则为后退 //$S为停留秒数，为空等用户点击 showmessage&#40;'do_success', '$URL',$S&#41;; 特殊字符过滤 1 $name=getstr&#40;$_POST&#91;'name'&#93;, 200, 1, 1, 1&#41;; 表单提交验证 1 2 3 submitcheck&#40;'submitok'&#41; //submitok一个HTML元素，如 &#60;input type=&#34;hidden&#34; name=&#34;submitok&#34; value=&#34;true&#34; /&#62; 模版.HTM中使用 调用PHP函数 1 &#60;!--{eval [...]]]></description>
			<content:encoded><![CDATA[<p>当前工作中一个项目是基于uchome的二次开发，一些常用的功能在此做个记录。</p>
<h5>全部变量$_SGLOBAL</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//$_SGLOBAL存放了一些全局变量的数组，包括用户登录信息和站内常用变量</span>
<span style="color: #000088;">$userid</span><span style="color: #339933;">=</span> <span style="color: #000088;">$_SGLOBAL</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;session&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;uid&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//登录用户ID</span>
<span style="color: #000088;">$credit</span><span style="color: #339933;">=</span><span style="color: #000088;">$_SGLOBAL</span><span style="color: #009900;">&#91;</span>member<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span>credit<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//登录用户积分</span>
<span style="color: #000088;">$gold</span><span style="color: #339933;">=</span><span style="color: #000088;">$_SGLOBAL</span><span style="color: #009900;">&#91;</span>member<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span>gold<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//登录用户金币</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//查看更多请使用</span>
<span style="color: #990000;">var_dump</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SGLOBAL</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h5>判断用户是否登录</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">checklogin<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><span id="more-10953"></span></p>
<h5>消息提示</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//do_success在language目录下lang_showmessage.php定义或直接写文字。</span>
<span style="color: #666666; font-style: italic;">//$URL是跳转地址，为空则为后退</span>
<span style="color: #666666; font-style: italic;">//$S为停留秒数，为空等用户点击</span>
showmessage<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'do_success'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'$URL'</span><span style="color: #339933;">,</span><span style="color: #000088;">$S</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h5>特殊字符过滤</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$name</span><span style="color: #339933;">=</span>getstr<span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">200</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h5>表单提交验证</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">submitcheck<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'submitok'</span><span style="color: #009900;">&#41;</span>
<span style="color: #666666; font-style: italic;">//submitok一个HTML元素，如</span>
<span style="color: #339933;">&lt;</span>input type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;hidden&quot;</span> name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;submitok&quot;</span> value<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;true&quot;</span> <span style="color: #339933;">/&gt;</span></pre></td></tr></table></div>

<h3>模版.HTM中使用</h3>
<h5>调用PHP函数</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--{eval echo getUserName($value[userid])}--&gt;</span></pre></td></tr></table></div>

<h5>时间显示</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--格式：Y-m-d H:i可以是Y-m-d等--&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--{date('Y-m-d H:i',$value[date],1)}--&gt;</span></pre></td></tr></table></div>

<h5>显示用户头像</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--{avatar($value[userid],small)}--&gt;</span></pre></td></tr></table></div>

<h5>表单验证，通过submitcheck验证</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;formhash&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&lt;!--{eval echo formhash();}--&gt;</span></span>&quot; /&gt;</pre></td></tr></table></div>

<h5>上一URL地址，常用于提交后转回</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;refer&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;$_SGLOBAL[refer]&quot;</span>&gt;</span></pre></td></tr></table></div>

<h5>AJAX使用</h5>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--在space_***的链接里写--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cp.php?***&quot;</span> <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ajaxmenu(event, this.id, 99999);&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;*&quot;</span>&gt;</span>删除<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--上面链接在ID一定是唯一--&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--在cp_***里模版代码--&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--{if $_GET['op'] == 'delete'}--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>删除记录<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;javascript:hideMenu();&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;float_del&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;关闭&quot;</span>&gt;</span>关闭<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;popupmenu_inner&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;_form1&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;post&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;form1&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;form&quot;</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cp.php?*&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span>&gt;</span>确定删除该记录吗？<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;btn_line&quot;</span>&gt;</span>
		<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">button</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;deletesubmit&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;true&quot;</span>&gt;</span>确定<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">button</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;formhash&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&lt;!--{eval echo formhash();}--&gt;</span></span>&quot; /&gt;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--{/if}--&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--{有些浏览器提交会失败，直接显示模版，如GOOGLE CHROM浏览器}--&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--{上面的确定应改成以下写法}--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">button</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submitok&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;true&quot;</span>  <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ajaxpost('form1',  2000)&quot;</span>&gt;</span>确定<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">button</span>&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--{注意以上各ID的命名}--&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10953/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10953/</feedburner:origLink></item>
		<item>
		<title>40多个令人惊讶的Iphone软件应用网站</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/e4APLathKNE/</link>
		<comments>http://codeindex.cn/10951/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 02:11:10 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Iphone]]></category>
		<category><![CDATA[创意,灵感]]></category>
		<category><![CDATA[界面设计]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/10951/</guid>
		<description><![CDATA[自2008年以来，Iphone已超过200 000个被认可并且可以正常使用的软件应用，下面展示了最独特的设计，他们看起来非常精彩！ Foobi Snow Reports Billings Touch Tapmates HQUEUE Deaxon Eight OverCommited Kodu Bills &#8211; On your table Here File File PanelFly Key Point Barista Cellar Get Concentrating Tea Round Thermometer Source Bits Future Tap Tap Bots Robocat Spoon Juice Mock Draft Wheel of Tea Ecoki Buzz App Bible Verse Amble Joypad What`s on TV? [...]]]></description>
			<content:encoded><![CDATA[<p>自2008年以来，Iphone已超过200 000个被认可并且可以正常使用的软件应用，下面展示了最独特的设计，他们看起来非常精彩！</p>
<h2><a rel="nofollow" target="_blank" href="http://www.tapplox.com/"> Foobi </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.tapplox.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2830" title="meet-foobi" alt="meet-foobi" src="/wp-content/uploads/2010/06/43iphoneapps/meet-foobi.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/meet-foobi.jpg"><br /> </a></p>
<p><span id="more-10951"></span></p>
<h2><a rel="nofollow" target="_blank" href="http://www.eddit.com/snow_reports/"> Snow Reports </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.eddit.com/snow_reports/"><br /> <img width="540"  class="alignnone size-full wp-image-2831" title="snow-reports" alt="snow-reports" src="/wp-content/uploads/2010/06/43iphoneapps/snow-reports.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/snow-reports.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.marketcircle.com/billings/iphone/"> Billings Touch </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.marketcircle.com/billings/iphone/"><br /> <img width="540"  class="alignnone size-full wp-image-2832" title="billings-touch" alt="billings-touch" src="/wp-content/uploads/2010/06/43iphoneapps/billings-touch.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/billings-touch.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.tapmates.com/"> Tapmates </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.tapmates.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2833" title="tapmates" alt="tapmates" src="/wp-content/uploads/2010/06/43iphoneapps/tapmates.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/tapmates.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.hqueueapp.com/"> HQUEUE </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.hqueueapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2834" title="hqueue" alt="hqueue" src="/wp-content/uploads/2010/06/43iphoneapps/hqueue.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/hqueue.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://deaxon.com/"> Deaxon </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://deaxon.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2835" title="deaxon" alt="deaxon" src="/wp-content/uploads/2010/06/43iphoneapps/deaxon.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/deaxon.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://8interactive.com/"> Eight </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://8interactive.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2836" title="eight" alt="eight" src="/wp-content/uploads/2010/06/43iphoneapps/eight.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/eight.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://overcommittedapps.com/tripmix/"> OverCommited </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://overcommittedapps.com/tripmix/"><br /> <img width="540"  class="alignnone size-full wp-image-2837" title="over-commited" alt="over-commited" src="/wp-content/uploads/2010/06/43iphoneapps/over-commited.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/over-commited.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.kodu.co.uk/"> Kodu </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.kodu.co.uk/"><br /> <img width="540"  class="alignnone size-full wp-image-2838" title="kodu" alt="kodu" src="/wp-content/uploads/2010/06/43iphoneapps/kodu.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/kodu.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.powerybase.com/bills/"> Bills &ndash; On your table </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.powerybase.com/bills/"><br /> <img width="540"  class="alignnone size-full wp-image-2839" title="bills" alt="bills" src="/wp-content/uploads/2010/06/43iphoneapps/bills.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/bills.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.herefilefile.com/"> Here File File </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.herefilefile.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2840" title="here-file-file" alt="here-file-file" src="/wp-content/uploads/2010/06/43iphoneapps/here-file-file.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/here-file-file.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.panelfly.com/"> PanelFly </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.panelfly.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2841" title="panelfly" alt="panelfly" src="/wp-content/uploads/2010/06/43iphoneapps/panelfly.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/panelfly.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.keypointapp.com/"> Key Point </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.keypointapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2842" title="keypoint" alt="keypoint" src="/wp-content/uploads/2010/06/43iphoneapps/keypoint.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/keypoint.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://baristaapp.com/"> Barista </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://baristaapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2843" title="barista" alt="barista" src="/wp-content/uploads/2010/06/43iphoneapps/barista.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/barista.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://cellar-app.com/"> Cellar </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://cellar-app.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2844" title="cellar" alt="cellar" src="/wp-content/uploads/2010/06/43iphoneapps/cellar.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/cellar.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.getconcentrating.com/"> Get Concentrating </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.getconcentrating.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2848" title="eliminate-distraction" alt="eliminate-distraction" src="/wp-content/uploads/2010/06/43iphoneapps/eliminate-distraction.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/eliminate-distraction.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.tearoundapp.com/"> Tea Round </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.tearoundapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2849" title="tea-round" alt="tea-round" src="/wp-content/uploads/2010/06/43iphoneapps/tea-round.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/tea-round.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.thermometerapp.com/"> Thermometer </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.thermometerapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2850" title="thermometer" alt="thermometer" src="/wp-content/uploads/2010/06/43iphoneapps/thermometer.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/thermometer.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.sourcebits.com/"> Source Bits </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.sourcebits.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2851" title="source-bits" alt="source-bits" src="/wp-content/uploads/2010/06/43iphoneapps/source-bits.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/source-bits.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.futuretap.com/home/whereto-en/"> Future Tap </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.futuretap.com/home/whereto-en/"><br /> <img width="540"  class="alignnone size-full wp-image-2852" title="future-tap" alt="future-tap" src="/wp-content/uploads/2010/06/43iphoneapps/future-tap.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/future-tap.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://tapbots.com/"> Tap Bots </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://tapbots.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2853" title="tap-bots" alt="tap-bots" src="/wp-content/uploads/2010/06/43iphoneapps/tap-bots.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/tap-bots.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.robocatapps.com/"> Robocat </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.robocatapps.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2854" title="robocat" alt="robocat" src="/wp-content/uploads/2010/06/43iphoneapps/robocat.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/robocat.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.spoonjuice.com/"> Spoon Juice </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.spoonjuice.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2855" title="spoon-juice" alt="spoon-juice" src="/wp-content/uploads/2010/06/43iphoneapps/spoon-juice.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/spoon-juice.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.taptapas.com/mock_draft.php"> Mock Draft </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.taptapas.com/mock_draft.php"><br /> <img width="540"  class="alignnone size-full wp-image-2858" title="tap-tapas" alt="tap-tapas" src="/wp-content/uploads/2010/06/43iphoneapps/tap-tapas.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/tap-tapas.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.wheeloftea.com/"> Wheel of Tea </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.wheeloftea.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2859" title="wheel-of-tea" alt="wheel-of-tea" src="/wp-content/uploads/2010/06/43iphoneapps/wheel-of-tea.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/wheel-of-tea.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://ecoki.com/iphone/"> Ecoki </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://ecoki.com/iphone/"><br /> <img width="540"  class="alignnone size-full wp-image-2860" title="ecoki" alt="ecoki" src="/wp-content/uploads/2010/06/43iphoneapps/ecoki.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/ecoki.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://buzapp.com/"> Buzz App </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://buzapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2861" title="buz-app" alt="buz-app" src="/wp-content/uploads/2010/06/43iphoneapps/buz-app.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/buz-app.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.moomp.com/bibleverse/"> Bible Verse </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.moomp.com/bibleverse/"><br /> <img width="540"  class="alignnone size-full wp-image-2862" title="bible-verse" alt="bible-verse" src="/wp-content/uploads/2010/06/43iphoneapps/bible-verse.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/bible-verse.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://ambleapp.com/"> Amble </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://ambleapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2863" title="amble" alt="amble" src="/wp-content/uploads/2010/06/43iphoneapps/amble.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/amble.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://getjoypad.com/"> Joypad </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://getjoypad.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2864" title="joypad" alt="joypad" src="/wp-content/uploads/2010/06/43iphoneapps/joypad.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/joypad.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.whatsonapp.com/"> What`s on TV? </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.whatsonapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2865" title="what-s-on" alt="what-s-on" src="/wp-content/uploads/2010/06/43iphoneapps/what-s-on.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/what-s-on.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.meetemplates.com/"> Mee Templates </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.meetemplates.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2866" title="mee-templates" alt="mee-templates" src="/wp-content/uploads/2010/06/43iphoneapps/mee-templates.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/mee-templates.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.task-this.com/en/"> Task This </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.task-this.com/en/"><br /> <img width="540"  class="alignnone size-full wp-image-2867" title="task-this" alt="task-this" src="/wp-content/uploads/2010/06/43iphoneapps/task-this.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/task-this.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.trackdebt.com/"> Track Debt </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.trackdebt.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2868" title="track-debt" alt="track-debt" src="/wp-content/uploads/2010/06/43iphoneapps/track-debt.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/track-debt.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.motionoto.com/"> Motionoto </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.motionoto.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2869" title="motionoto" alt="motionoto" src="/wp-content/uploads/2010/06/43iphoneapps/motionoto.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/motionoto.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.diet2goapp.com/"> Diet to Go </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.diet2goapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2870" title="dite-2-go" alt="dite-2-go" src="/wp-content/uploads/2010/06/43iphoneapps/dite-2-go.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/dite-2-go.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.confessapp.com/"> Confess App </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.confessapp.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2871" title="confess-app" alt="confess-app" src="/wp-content/uploads/2010/06/43iphoneapps/confess-app.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/confess-app.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.goinnutty.com/"> Goinnutty </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.goinnutty.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2872" title="goinnutty" alt="goinnutty" src="/wp-content/uploads/2010/06/43iphoneapps/goinnutty.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/goinnutty.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.appstemplates.com/"> Apps Templates </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.appstemplates.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2873" title="apps-templates" alt="apps-templates" src="/wp-content/uploads/2010/06/43iphoneapps/apps-templates.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/apps-templates.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://whisper-app.com/"> Whisper </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://whisper-app.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2874" title="whisper" alt="whisper" src="/wp-content/uploads/2010/06/43iphoneapps/whisper.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/whisper.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.quickmobile.com/sundance2010/"> Sundance Twenty Ten </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.quickmobile.com/sundance2010/"><br /> <img width="540"  class="alignnone size-full wp-image-2875" title="sundance-twenty-ten" alt="sundance-twenty-ten" src="/wp-content/uploads/2010/06/43iphoneapps/sundance-twenty-ten.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/sundance-twenty-ten.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://iphone.broadersheet.com/"> BroaderSheet </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://iphone.broadersheet.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2876" title="broader-sheet" alt="broader-sheet" src="/wp-content/uploads/2010/06/43iphoneapps/broader-sheet.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/broader-sheet.jpg" style="display: inline;"><br /> </a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.iphoneappls.com/"> Iphone Apps </a></h2>
<p class="tut_image"><a rel="nofollow" target="_blank" href="http://www.iphoneappls.com/"><br /> <img width="540"  class="alignnone size-full wp-image-2877" title="iphone-apps" alt="iphone-apps" src="/wp-content/uploads/2010/06/43iphoneapps/iphone-apps.jpg" original="/wp-content/uploads/2010/06/43iphoneapps/iphone-apps.jpg" style="display: inline;"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10951/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10951/</feedburner:origLink></item>
		<item>
		<title>3d图片旋转展示插件 – cloud-carousel</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/9Pph57KMliw/</link>
		<comments>http://codeindex.cn/10949/#comments</comments>
		<pubDate>Fri, 28 May 2010 06:07:52 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Jquery plugins]]></category>
		<category><![CDATA[图形，图像]]></category>
		<category><![CDATA[相册 [gallery]]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[图片旋转]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/10949/</guid>
		<description><![CDATA[这是一款基于jQuery的图片3D旋转播放插件，具有Flash的效果. Livedemo Download Homepage]]></description>
			<content:encoded><![CDATA[<p><img src="/demo/20100528/cloud-carousel.1.0.3/p.jpg" class="alignnone" width="530"/><br />
这是一款基于jQuery的图片3D旋转播放插件，具有Flash的效果.<br />
<span id="more-10949"></span></p>
<ul class="boxlink">
<li><a href="/demo/20100528/cloud-carousel.1.0.3/index.html" target="_blank">Livedemo</a></li>
<li><a href="/demo/20100528/cloud-carousel.1.0.3/cloud-carousel.1.0.3.zip" target="_blank">Download</a></li>
<li><a href="http://www.professorcloud.com/mainsite/carousel.htm" target="_blank">Homepage</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10949/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10949/</feedburner:origLink></item>
		<item>
		<title>灵活强大的图片放大工具 – Cloud Zoom</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/hasfxhXKqJE/</link>
		<comments>http://codeindex.cn/10947/#comments</comments>
		<pubDate>Fri, 28 May 2010 06:00:35 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Jquery plugins]]></category>
		<category><![CDATA[图形，图像]]></category>
		<category><![CDATA[jQuery plugin]]></category>
		<category><![CDATA[Zoom]]></category>
		<category><![CDATA[图片放大]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/10947/</guid>
		<description><![CDATA[Cloud Zoom 是一个 jQuery plugin, 可以跟商业的同类产品相比，如 Magic Zoom等. Cloud Zoom 小巧但功能齐全，兼容性强。 Livedemo Download Homepage]]></description>
			<content:encoded><![CDATA[<p><img src="/demo/20100528/cloud-zoom.1.0.1/p.jpg" class="alignnone" width="530"/>
</p>
<p>Cloud Zoom 是一个 jQuery plugin, 可以跟商业的同类产品相比，如 Magic Zoom等.  Cloud Zoom 小巧但功能齐全，兼容性强。<br />
<span id="more-10947"></span></p>
<ul class="boxlink">
<li><a href="/demo/20100528/cloud-zoom.1.0.1/index.html" target="_blank">Livedemo</a></li>
<li><a href="/demo/20100528/cloud-zoom.1.0.1/cloud-zoom.1.0.1.zip" target="_blank">Download</a></li>
<li><a href="http://www.professorcloud.com/mainsite/cloud-zoom.htm#" target="_blank">Homepage</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10947/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10947/</feedburner:origLink></item>
		<item>
		<title>Improved Micro Image Gallery: A jQuery Plugin</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/syGW_zn3M8A/</link>
		<comments>http://codeindex.cn/10943/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 08:00:28 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Jquery plugins]]></category>
		<category><![CDATA[相册 [gallery]]]></category>
		<category><![CDATA[image gallery]]></category>
		<category><![CDATA[jQuery plugin]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10943</guid>
		<description><![CDATA[Livedemo Download Homepage]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2010/04/igv2.png" alt="igv2" title="igv2" width="540" class="alignnone size-full wp-image-10942" /><br />
<span id="more-10943"></span></p>
<ul class="boxlink">
<li><a href="/demo/201004/MicroGalleryImproved/index.html" target="_blank">Livedemo</a></li>
<li><a href="/demo/201004/MicroGalleryImproved/MicroGalleryImproved.rar" target="_blank">Download</a></li>
<li><a href="http://tympanus.net/codrops/2010/04/26/improved-micro-image-gallery-a-jquery-plugin/" target="_blank">Homepage</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10943/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10943/</feedburner:origLink></item>
		<item>
		<title>分享一款PSDTemplate，觉得不错</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/Z6tHusv0Lo8/</link>
		<comments>http://codeindex.cn/10937/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 14:27:39 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[website templates]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10937</guid>
		<description><![CDATA[orange_template.rar]]></description>
			<content:encoded><![CDATA[<p><a href="http://ajaxfinder.com/wp-content/uploads/2009/11/Orange_by_PSDTemplate_by_psdtemplate.png"><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/Orange_by_PSDTemplate_by_psdtemplate-300x281.png" alt="Orange_by_PSDTemplate_by_psdtemplate" title="Orange_by_PSDTemplate_by_psdtemplate" width="300" height="281" class="alignnone size-medium wp-image-10939" /></a></p>
<ul>
<li><a href="/wp-content/uploads/0911/11/orange_template.rar">orange_template.rar</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10937/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10937/</feedburner:origLink></item>
		<item>
		<title>Create a Realistic Hover Effect With jQuery</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/JK0xOxMTTc8/</link>
		<comments>http://codeindex.cn/10932/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:27:03 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[scripts]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10932</guid>
		<description><![CDATA[鼠标动画效果.基于jQuery， demo download create-a-realistic-hover-effect-with-jquery-ui]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/jquery-rising-hover-3.jpg" alt="jquery-rising-hover-3" title="jquery-rising-hover-3" width="438" height="150" class="alignnone size-full wp-image-10933" /></p>
<p>鼠标动画效果.基于jQuery，</p>
<ul>
<li><a href="/demo/200911/hovereffectwithjquery/">demo</a></li>
<li><a href="/demo/200911/hovereffectwithjquery/demo.zip">download</a></li>
<li><a href="http://www.adrianpelletier.com/2009/05/31/create-a-realistic-hover-effect-with-jquery-ui/">create-a-realistic-hover-effect-with-jquery-ui</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10932/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10932/</feedburner:origLink></item>
		<item>
		<title>CKEditor v3.0 – 完全重写FCKeditor的编辑器</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/0P7heK9nOFg/</link>
		<comments>http://codeindex.cn/10927/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:05:33 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[编辑器]]></category>
		<category><![CDATA[CKEditor]]></category>
		<category><![CDATA[FCKeditor]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10927</guid>
		<description><![CDATA[CKEditor is a text editor to be used inside web pages. It&#8217;s a WYSIWYG editor, which means that the text being edited on it looks as similar as possible to the results users have when publishing it. It brings to the web common editing features found on desktop editing applications like Microsoft Word and OpenOffice. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ckeditor.com/demo" target="_blank"><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/ckeditor.jpg" alt="ckeditor" title="ckeditor" width="480" height="228" class="alignnone size-full wp-image-10928" /></a></p>
<p>CKEditor is a text editor to be used inside web pages. It&#8217;s a WYSIWYG editor, which means that the text being edited on it looks as similar as possible to the results users have when publishing it. It brings to the web common editing features found on desktop editing applications like Microsoft Word and OpenOffice.</p>
<p>Because CKEditor is licensed under flexible Open Source and commercial licenses, you&#8217;ll be able to integrate and use it inside any kind of application. This is the ideal editor for developers, created to provide easy and powerful solutions to their users.</p>
<ul>
<li><a href="http://ckeditor.com/demo" target="_blank">http://ckeditor.com/demo</a></li>
<li><a href="http://ckeditor.com/download" target="_blank">http://ckeditor.com/download</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10927/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10927/</feedburner:origLink></item>
		<item>
		<title>EyeOS – 1.8.7.1</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/2ZUazDmG-U8/</link>
		<comments>http://codeindex.cn/10924/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 07:40:46 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[eyeos]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10924</guid>
		<description><![CDATA[eyeos is an open source web desktop following the cloud computing concept. It is mainly written in PHP, XML, and Javascript. It acts as a platform for web applications written using the eyeos Toolkit. It includes a Desktop environment with 67 applications and system utilities. It is accessible by portable devices via its mobile front [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/eyeos.jpg" alt="eyeos" title="eyeos" width="480" height="250" class="alignnone size-full wp-image-10925" /><br />
<span id="more-10924"></span></p>
<p>eyeos is an open source web desktop following the cloud computing concept. It is mainly written in PHP, XML, and Javascript. It acts as a platform for web applications written using the eyeos Toolkit. It includes a Desktop environment with 67 applications and system utilities. It is accessible by portable devices via its mobile front edu. eyeos lets you upload your files and work with them no matter where you are. It contains applications like Word Processor, Address Book, PDF reader, and many more developed by the community.</p>
<ul>
<li><a href="http://eyeos.org/" target="_blank">http://eyeos.org/</a></li>
<li><a href="http://eyeos.info" target="_blank">eyeos demo</a></li>
<li><a href="http://eyeos.org/en/downloads" target="_blank">http://eyeos.org/en/downloads</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10924/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10924/</feedburner:origLink></item>
		<item>
		<title>Hzhost 6.5，Hzhost2008 破解版</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/zwAUPnOPhHc/</link>
		<comments>http://codeindex.cn/10920/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 06:48:26 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[hzhost]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10920</guid>
		<description><![CDATA[这是华众6.5破解版包括风格文件，本人没有测试，之前在服务器上安装过可以正常使用，含有官方的全部功能，若有解压密码是ajaxfinder.com。 Hzhost 6.5 hzhost2008]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/hzhost.jpg" alt="hzhost" title="hzhost" width="500" height="158" class="alignnone size-full wp-image-10921" /></p>
<p>这是华众6.5破解版包括风格文件，本人没有测试，之前在服务器上安装过可以正常使用，含有官方的全部功能，若有解压密码是ajaxfinder.com。</p>
<p><span id="more-10920"></span></p>
<ul>
<li><a href="/wp-content/uploads/0911/11/hzhost6.5_cracked.rar">Hzhost 6.5</a></li>
<li><a href="/wp-content/uploads/0911/11/hzhost2008.rar">hzhost2008</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10920/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10920/</feedburner:origLink></item>
		<item>
		<title>推荐一个免费漂亮的字体下载站</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/cR0YGfo-kco/</link>
		<comments>http://codeindex.cn/10910/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 18:52:06 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[字体 [fonts]]]></category>
		<category><![CDATA[Font]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10910</guid>
		<description><![CDATA[字体众多且全部免费. http://www.webpagepublicity.com/free-fonts-v.html]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/fonts.jpg" alt="fonts" title="fonts" width="423" height="22" class="alignnone size-full wp-image-10911" /></p>
<p>字体众多且全部免费.</p>
<ul>
<li><a href="http://www.webpagepublicity.com/free-fonts-v.html" target="_blank">http://www.webpagepublicity.com/free-fonts-v.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10910/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10910/</feedburner:origLink></item>
		<item>
		<title>推荐一款PHP开源WEB Analytics</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/Ko8r-UkSL34/</link>
		<comments>http://codeindex.cn/10917/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 18:51:51 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[scripts]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10917</guid>
		<description><![CDATA[Open Web Analytics (OWA) 是用PHP编写的开源PHP WEB Analytics 框架. OWA 功能全面使用容易.可集成于WordPress 和 MediaWiki等APP. http://www.openwebanalytics.com/]]></description>
			<content:encoded><![CDATA[<p><a href="http://ajaxfinder.com/wp-content/uploads/2009/11/owa_dash.jpg"><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/owa_dash-300x156.jpg" alt="owa_dash" title="owa_dash" width="300" height="156" class="alignnone size-medium wp-image-10918" /></a></p>
<p>Open Web Analytics (OWA) 是用PHP编写的开源PHP WEB Analytics 框架. OWA 功能全面使用容易.可集成于WordPress 和 MediaWiki等APP.</p>
<p><a href="http://www.openwebanalytics.com/">http://www.openwebanalytics.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10917/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10917/</feedburner:origLink></item>
		<item>
		<title>27 Circular Social Media Icons in 3 Sizes</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/Q_NY0GykEw8/</link>
		<comments>http://codeindex.cn/10913/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 18:50:55 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[icons]]></category>
		<category><![CDATA[Icon Set]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10913</guid>
		<description><![CDATA[27个3种尺寸的LOGO. social-icons]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/free-socia-media-icons.jpg" alt="free-socia-media-icons" title="free-socia-media-icons" width="520" height="273" class="alignnone size-full wp-image-10914" /></p>
<p>27个3种尺寸的LOGO.</p>
<p><a href='http://ajaxfinder.com/wp-content/uploads/2009/11/social-icons.rar'>social-icons</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10913/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10913/</feedburner:origLink></item>
		<item>
		<title>jquery-week-calendar</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/poyLNC4b5Mk/</link>
		<comments>http://codeindex.cn/10908/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 18:42:45 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Jquery plugins]]></category>
		<category><![CDATA[日期选择 [Date Picker]]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10908</guid>
		<description><![CDATA[一款仿GOOGLE日历的calendar events，基于JQuery，其特点有： Display of calendar events within a weekly grid Calendar events can be supplied as an array, url or function returning json Calendar events can be dragged, dropped and resized Lots of callbacks for customizing the way events are rendered plus callbacks for drag, drop, resize, mouseover, click etc Automatically scrolls to current time [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/weekly-calendar.jpg" alt="weekly-calendar" title="weekly-calendar" width="479" height="213" class="alignnone size-full wp-image-10907" /></p>
<p>一款仿GOOGLE日历的calendar events，基于JQuery，其特点有：</p>
<p><span id="more-10908"></span></p>
<ul>
<li>Display of calendar events within a weekly grid</li>
<li>Calendar events can be supplied as an array, url or function returning json</li>
<li>Calendar events can be dragged, dropped and resized</li>
<li>Lots of callbacks for customizing the way events are rendered plus callbacks for drag, drop, resize, mouseover, click etc</li>
<li>Automatically scrolls to current time</li>
<li>Extend the core calendar event data structure with your own data</li>
<li>Highly configurable, enabling variable timeslots, readonly calendars, display of partial days, custom date formatting, direct manipulation of individual events for create, update, delete of events and much more.</li>
</ul>
<ul>
<li><a href="http://jquery-week-calendar.googlecode.com/svn/trunk/jquery.weekcalendar/full_demo/weekcalendar_full_demo.html">jquery-week-calendar演示</a></li>
<li><a href="http://code.google.com/p/jquery-week-calendar/">项目主页</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10908/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10908/</feedburner:origLink></item>
		<item>
		<title>64位IIS运行32位.NET程序</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/QQNv_kIzTik/</link>
		<comments>http://codeindex.cn/10902/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 16:50:49 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[其它日志]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[iis]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10902</guid>
		<description><![CDATA[以前一个系统是在32位操作系统下做的，前几天安装了windows7，64位的，今天要运行一下，配置好IIS后怎么也运行不起来，报的错也搞不懂，莫名其妙的说什么“无效的或无法识别DLL文件”，搞了半天也不行，最后看到ISAPI里有32和64的两个版本的.net才感觉到应该是64位操作系统搞的鬼，于是问了下GOOGLE发现真是这么回事，不过么方面的资料不多，最后看到一位高人给了的一张图片让我解决了问题， 留此一笔以作后用或给将来可能遇到的朋友一个记忆。]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/4-150x108.jpg"  width="150" height="108" class="alignleft size-thumbnail wp-image-10903" />以前一个系统是在32位操作系统下做的，前几天安装了windows7，64位的，今天要运行一下，配置好IIS后怎么也运行不起来，报的错也搞不懂，莫名其妙的说什么“无效的或无法识别DLL文件”，搞了半天也不行，最后看到ISAPI里有32和64的两个版本的.net才感觉到应该是64位操作系统搞的鬼，于是问了下GOOGLE发现真是这么回事，不过么方面的资料不多，最后看到一位高人给了的一张图片让我解决了问题，<br />
<span id="more-10902"></span><br />
<img src="http://ajaxfinder.com/wp-content/uploads/2009/11/4.jpg"    class="alignnone size-thumbnail wp-image-10903" /></p>
<p>留此一笔以作后用或给将来可能遇到的朋友一个记忆。</p>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10902/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10902/</feedburner:origLink></item>
		<item>
		<title>密码印像 – hashmask</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/XKKKmJLWUnQ/</link>
		<comments>http://codeindex.cn/10899/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 13:21:36 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Jquery plugins]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Password]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10899</guid>
		<description><![CDATA[用户密码印像小工具，大概意思是让用户看到这个图片就能回忆起自己所输入的密码是否正确了，这个图片是根据你输入字符变换的，基于JQ。 hashmask演示 下载hashmask]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/passyx.jpg" alt="passyx" title="passyx" width="482" height="256" class="alignnone size-full wp-image-10900" /></p>
<p>用户密码印像小工具，大概意思是让用户看到这个图片就能回忆起自己所输入的密码是否正确了，这个图片是根据你输入字符变换的，基于JQ。</p>
<ul>
<li><a href="http://lab.arc90.com/experiments/hashmask/demo.html" target="_blank">hashmask演示</a></li>
<li><a href="http://code.google.com/p/hashmask/downloads/list" target="_blank">下载hashmask</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10899/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10899/</feedburner:origLink></item>
		<item>
		<title>一款简单的左右滑动窗口制作</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/A0V3pITK-cE/</link>
		<comments>http://codeindex.cn/10896/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 13:08:50 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[slideshow]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[滑动窗口]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10896</guid>
		<description><![CDATA[效果还不错，基于JQ. 效果演示]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/09123433.jpg" alt="09123433" title="09123433" width="413" height="132" class="alignnone size-full wp-image-10897" /></p>
<p>效果还不错，基于JQ.</p>
<p><span id="more-10896"></span></p>
<ul>
<li><a href="/demo/200911/infinite-carousel/">效果演示</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10896/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10896/</feedburner:origLink></item>
		<item>
		<title>秀一款相当漂亮的WP THTME – hypowired</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/VoKW0DNl4UA/</link>
		<comments>http://codeindex.cn/10894/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 12:42:33 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[wordpress templates]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10894</guid>
		<description><![CDATA[漂亮吧，可惜不是免费的，售价$30，只好欣赏一下了:). demo http://www.wpmonk.com/demo/hypowired/ homepage http://www.wpmonk.com/]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/wpmonk.jpg" alt="wpmonk" title="wpmonk" width="516" height="251" class="alignnone size-full wp-image-10893" /></p>
<p>漂亮吧，可惜不是免费的，售价$30，只好欣赏一下了:).</p>
<p><span id="more-10894"></span></p>
<ul>
<li>demo <a href="http://www.wpmonk.com/demo/hypowired/" target="_blank">http://www.wpmonk.com/demo/hypowired/</a></li>
<li>homepage <a href="http://www.wpmonk.com/" target="_blank">http://www.wpmonk.com/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10894/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10894/</feedburner:origLink></item>
		<item>
		<title>Claros – inTouch, inTouch Devel,Chat,Mini</title>
		<link>http://feedproxy.google.com/~r/Codeindex/~3/IStTd7-qjps/</link>
		<comments>http://codeindex.cn/10887/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 06:39:33 +0000</pubDate>
		<dc:creator>Feng</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[聊天 [IM]]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[Claros]]></category>
		<category><![CDATA[inTouch]]></category>

		<guid isPermaLink="false">http://ajaxfinder.com/?p=10887</guid>
		<description><![CDATA[Claros是一个开发免费开源高质量WEB应用的团队，开发的产品包括Claros inTouch 2.1，Claros inTouch Devel 2.2 Beta，Claros Chat 1.0，Claros Mini 1.0等，支持多语言，有中文。 Claros In Touch 当前版本2.1，是一款网络电子邮件,地址簿,日历和笔记本应用软件.该软件的目的是实现稳定,全功能的信息应用软件的需要.主要功能是:叶贝斯垃圾邮件保护,信息顾虑, 用于 POP3 协议的文件夹支持,不需要数据库安装,与任何标准的 POP3 和 SMTP 服务器相兼容,独立的操作系统,发送 HTML 电子邮件的支持,以及完全的 MIME 兼容性. Claros Chat 当前版本1.0，是一个完全基于Ajax的web即时消息Jabber客户端。界面简洁，漂亮看起来像一个桌面应用程序，兼容任何Jabber服务器包括 Google Talk。支持主流的浏览器比如：Explorer,Firefox,Safari,Mozilla等。你可以利用这个客户端与Jabber服务器来架设自己的聊天网络。如果你的Jabber服务器有安装相应的网关，它还可以连到MSN,AOL,ICQ,Yahoo的聊天网络。Claros Chat还提供在线Demo，如果你有Google Talk账号可以试一下它的功能。 Claros Mini 当前版本1.0，支持多协议的webmail手机客户端, PDA&#8217;s, smart phones etc等，利用GPRS登录到浏览器收发邮件. 项目主页：http://www.claros.org 下载地址：http://www.claros.org/web/download.do]]></description>
			<content:encoded><![CDATA[<p><img src="http://ajaxfinder.com/wp-content/uploads/2009/11/cit2.jpg" alt="cit2" title="cit2" width="530" class="alignnone size-full wp-image-10888" /><br/><br />
<strong>Claros</strong>是一个开发免费开源高质量WEB应用的团队，开发的产品包括Claros inTouch 2.1，Claros inTouch Devel 2.2 Beta，Claros Chat 1.0，Claros Mini 1.0等，支持多语言，有中文。<br />
<span id="more-10887"></span> <strong>Claros In Touch</strong> 当前版本2.1，是一款网络电子邮件,地址簿,日历和笔记本应用软件.该软件的目的是实现稳定,全功能的信息应用软件的需要.主要功能是:叶贝斯垃圾邮件保护,信息顾虑, 用于 POP3 协议的文件夹支持,不需要数据库安装,与任何标准的 POP3 和 SMTP 服务器相兼容,独立的操作系统,发送 HTML 电子邮件的支持,以及完全的 MIME 兼容性.<br />
<strong>Claros Chat</strong> 当前版本1.0，是一个完全基于Ajax的web即时消息Jabber客户端。界面简洁，漂亮看起来像一个桌面应用程序，兼容任何Jabber服务器包括 Google Talk。支持主流的浏览器比如：Explorer,Firefox,Safari,Mozilla等。你可以利用这个客户端与Jabber服务器来架设自己的聊天网络。如果你的Jabber服务器有安装相应的网关，它还可以连到MSN,AOL,ICQ,Yahoo的聊天网络。Claros Chat还提供在线Demo，如果你有Google Talk账号可以试一下它的功能。<br />
<strong>Claros Mini</strong> 当前版本1.0，支持多协议的webmail手机客户端, PDA&#8217;s, smart phones etc等，利用GPRS登录到浏览器收发邮件.</p>
<ul>
<li>项目主页：<a href="http://www.claros.org">http://www.claros.org</a></li>
<li>下载地址：<a href="http://www.claros.org/web/download.do">http://www.claros.org/web/download.do</a></li>
</ul>
<p><!--more--></p>
]]></content:encoded>
			<wfw:commentRss>http://codeindex.cn/10887/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://codeindex.cn/10887/</feedburner:origLink></item>
	</channel>
</rss>

