﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-gembin-随笔分类-Javascript</title><link>http://www.blogjava.net/gembin/category/31133.html</link><description>&lt;font color="red"&gt;OSGi, Eclipse Equinox, ECF, Virgo, Gemini,  Apache Felix, Karaf, Aires, Camel, Eclipse RCP&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;
&lt;font color="green"&gt;HBase, Hadoop, ZooKeeper, Cassandra&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;

&lt;font color="blue"&gt;Flex4, AS3, Swiz framework, GraniteDS, BlazeDS etc.&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;
&lt;font color="black"&gt;
There is nothing that software can't fix. Unfortunately, there is also nothing that software can't completely fuck up. That gap is called talent.&lt;/font&gt;
&lt;br/&gt;&lt;br/&gt;

&lt;a href="http://about.me/gembin"&gt;About Me&lt;/a&gt;

&lt;script type="text/javascript" src="http://platform.linkedin.com/in.js"&gt;&lt;/script&gt;&lt;script type="in/share" data-counter="right"&gt;&lt;/script&gt;

</description><language>zh-cn</language><lastBuildDate>Mon, 27 May 2013 23:18:43 GMT</lastBuildDate><pubDate>Mon, 27 May 2013 23:18:43 GMT</pubDate><ttl>60</ttl><item><title>How JavaScript Timers Work</title><link>http://www.blogjava.net/gembin/archive/2013/05/27/399816.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Mon, 27 May 2013 05:50:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2013/05/27/399816.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/399816.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2013/05/27/399816.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/399816.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/399816.html</trackback:ping><description><![CDATA[<p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">At a fundamental level it&#8217;s important to understand how JavaScript timers work. Often times they behave unintuitively because of the single thread which they are in. Let&#8217;s start by examining the three functions to which we have access that can construct and manipulate timers.</p><ul style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;"><li><code style="white-space: pre;">var id = setTimeout(fn, delay);</code>&nbsp;&#8211; Initiates a single timer which will call the specified function after the delay. The function returns a unique ID with which the timer can be canceled at a later time.</li><li><code style="white-space: pre;">var id = setInterval(fn, delay);</code>&nbsp;&#8211; Similar to&nbsp;<code style="white-space: pre;">setTimeout</code>&nbsp;but continually calls the function (with a delay every time) until it is canceled.</li><li><code style="white-space: pre;">clearInterval(id);</code>,&nbsp;<code style="white-space: pre;">clearTimeout(id);</code>&nbsp;&#8211; Accepts a timer ID (returned by either of the aforementioned functions) and stops the timer callback from occurring.</li></ul><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">In order to understand how the timers work internally there&#8217;s one important concept that needs to be explored: timer delay is not guaranteed. Since all JavaScript in a browser executes on a single thread asynchronous events (such as mouse clicks and timers) are only run when there&#8217;s been an opening in the execution. This is best demonstrated with a diagram, like in the following:</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;"></p><center style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;"><a href="http://ejohn.org/files/Timers.png" style="color: #385c85;"><img src="http://ejohn.org/files/427px-Timers.png" style="border: 0px;"  alt="" /><br />(Click to view full size diagram)</a></center><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;"></p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">There&#8217;s a lot of information in this figure to digest but understanding it completely will give you a better realization of how asynchronous JavaScript execution works. This diagram is one dimensional: vertically we have the (wall clock) time, in milliseconds. The blue boxes represent portions of JavaScript being executed. For example the first block of JavaScript executes for approximately 18ms, the mouse click block for approximately 11ms, and so on.</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">Since JavaScript can only ever execute one piece of code at a time (due to its single-threaded nature) each of these blocks of code are &#8220;blocking&#8221; the progress of other asynchronous events. This means that when an asynchronous event occurs (like a mouse click, a timer firing, or an XMLHttpRequest completing) it gets queued up to be executed later (how this queueing actually occurs surely varies from browser-to-browser, so consider this to be a simplification).</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">To start with, within the first block of JavaScript, two timers are initiated: a 10ms<code style="white-space: pre;">setTimeout</code>&nbsp;and a 10ms&nbsp;<code style="white-space: pre;">setInterval</code>. Due to where and when the timer was started it actually fires before we actually complete the first block of code. Note, however, that it does not execute immediately (it is incapable of doing that, because of the threading). Instead that delayed function is queued in order to be executed at the next available moment.</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">Additionally, within this first JavaScript block we see a mouse click occur. The JavaScript callbacks associated with this asynchronous event (we never know when a user may perform an action, thus it&#8217;s consider to be asynchronous) are unable to be executed immediately thus, like the initial timer, it is queued to be executed later.</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">After the initial block of JavaScript finishes executing the browser immediately asks the question: What is waiting to be executed? In this case both a mouse click handler and a timer callback are waiting. The browser then picks one (the mouse click callback) and executes it immediately. The timer will wait until the next possible time, in order to execute.</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">Note that while mouse click handler is executing the first interval callback executes. As with the timer its handler is queued for later execution. However, note that when the interval is fired again (when the timer handler is executing) this time that handler execution is dropped. If you were to queue up all interval callbacks when a large block of code is executing the result would be a bunch of intervals executing with no delay between them, upon completion. Instead browsers tend to simply wait until no more interval handlers are queued (for the interval in question) before queuing more.</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">We can, in fact, see that this is the case when a third interval callback fires while the interval, itself, is executing. This shows us an important fact: Intervals don&#8217;t care about what is currently executing, they will queue indiscriminately, even if it means that the time between callbacks will be sacrificed.</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">Finally, after the second interval callback is finished executing, we can see that there&#8217;s nothing left for the JavaScript engine to execute. This means that the browser now waits for a new asynchronous event to occur. We get this at the 50ms mark when the interval fires again. This time, however, there is nothing blocking its execution, so it fires immediately.</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">Let&#8217;s take a look at an example to better illustrate the differences between<code style="white-space: pre;">setTimeout</code>&nbsp;and&nbsp;<code style="white-space: pre;">setInterval</code>.</p><div id="ig-sh-1" style="font-family: 'Courier New'; padding: 8px; margin: 8px; background-color: #f5f5f5; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; line-height: 23.390625px;"><div><ol style="list-style: none; margin: 0px; padding: 0px; font-family: monospace;"><li style="vertical-align: top;"><div style="font-size: 1em; line-height: 1.2em; margin: 0px; background-image: none; vertical-align: top;">setTimeout(function(){</div></li><li style="vertical-align: top;"><div style="font-size: 1em; line-height: 1.2em; margin: 0px; background-image: none; vertical-align: top;">&nbsp; &nbsp; /* Some long block of code... */</div></li><li style="vertical-align: top;"><div style="font-size: 1em; line-height: 1.2em; margin: 0px; background-image: none; vertical-align: top;">&nbsp; &nbsp; setTimeout(arguments.callee, 10);</div></li><li style="vertical-align: top;"><div style="font-size: 1em; line-height: 1.2em; margin: 0px; background-image: none; vertical-align: top;">&nbsp; }, 10);</div></li><li style="vertical-align: top;"><div style="font-size: 1em; line-height: 1.2em; margin: 0px; background-image: none; vertical-align: top;">&nbsp;</div></li><li style="vertical-align: top;"><div style="font-size: 1em; line-height: 1.2em; margin: 0px; background-image: none; vertical-align: top;">&nbsp; setInterval(function(){</div></li><li style="vertical-align: top;"><div style="font-size: 1em; line-height: 1.2em; margin: 0px; background-image: none; vertical-align: top;">&nbsp; &nbsp; /* Some long block of code... */</div></li><li style="vertical-align: top;"><div style="font-size: 1em; line-height: 1.2em; margin: 0px; background-image: none; vertical-align: top;">&nbsp; }, 10);</div></li></ol></div></div><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">These two pieces of code may appear to be functionally equivalent, at first glance, but they are not. Notably the&nbsp;<code style="white-space: pre;">setTimeout</code>&nbsp;code will always have at least a 10ms delay after the previous callback execution (it may end up being more, but never less) whereas the&nbsp;<code style="white-space: pre;">setInterval</code>&nbsp;will attempt to execute a callback every 10ms regardless of when the last callback was executed.</p><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">There&#8217;s a lot that we&#8217;ve learned here, let&#8217;s recap:</p><ul style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;"><li>JavaScript engines only have a single thread, forcing asynchronous events to queue waiting for execution.</li><li><code style="white-space: pre;">setTimeout</code>&nbsp;and&nbsp;<code style="white-space: pre;">setInterval</code>&nbsp;are fundamentally different in how they execute asynchronous code.</li><li>If a timer is blocked from immediately executing it will be delayed until the next possible point of execution (which will be longer than the desired delay).</li><li>Intervals may execute back-to-back with no delay if they take long enough to execute (longer than the specified delay).</li></ul><p style="font-family: Helvetica, Arial, sans-serif; font-size: 18px; line-height: 23.390625px; background-color: #ffffff;">All of this is incredibly important knowledge to build off of. Knowing how a JavaScript engine works, especially with the large number of asynchronous events that typically occur, makes for a great foundation when building an advanced piece of application code.<br /><br />from:&nbsp;<a href="http://ejohn.org/blog/how-javascript-timers-work/">http://ejohn.org/blog/how-javascript-timers-work/</a><br /><br /><br /></p><img src ="http://www.blogjava.net/gembin/aggbug/399816.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2013-05-27 13:50 <a href="http://www.blogjava.net/gembin/archive/2013/05/27/399816.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>ANSI sequence parser (Node.js) and client-side renderer</title><link>http://www.blogjava.net/gembin/archive/2012/07/21/383681.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Sat, 21 Jul 2012 15:16:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2012/07/21/383681.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/383681.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2012/07/21/383681.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/383681.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/383681.html</trackback:ping><description><![CDATA[<script src="https://gist.github.com/3156086.js"> </script><img src ="http://www.blogjava.net/gembin/aggbug/383681.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2012-07-21 23:16 <a href="http://www.blogjava.net/gembin/archive/2012/07/21/383681.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>HTML5 Case Study: Building the noVNC Client with WebSockets, Canvas and JavaScript</title><link>http://www.blogjava.net/gembin/archive/2010/07/16/326285.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Fri, 16 Jul 2010 03:55:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2010/07/16/326285.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/326285.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2010/07/16/326285.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/326285.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/326285.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: from http://www.infoq.com/news/2010/07/html5-novnc&nbsp;&nbsp;<a href='http://www.blogjava.net/gembin/archive/2010/07/16/326285.html'>阅读全文</a><img src ="http://www.blogjava.net/gembin/aggbug/326285.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2010-07-16 11:55 <a href="http://www.blogjava.net/gembin/archive/2010/07/16/326285.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title> 45个新鲜出炉的jQuery插件 </title><link>http://www.blogjava.net/gembin/archive/2008/09/23/230731.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Tue, 23 Sep 2008 10:05:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2008/09/23/230731.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/230731.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2008/09/23/230731.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/230731.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/230731.html</trackback:ping><description><![CDATA[<p>之前已经为你介绍了<a href="http://parandroid.com/more-than-50-powerful-plug-in-application-examples-jquery/" target="_blank">50多个强大的jQuery插件</a>，但是承受着jQuery的流行，越来越多的插件很快的冒出来。本文中为你收集了45个最新的jQuery插件，看看，有哪些是你想要应用到你的网页设计中的？</p>
<hr />
<h4>图象幻灯片展示和画廊插件</h4>
<p>1) <a href="http://monc.se/galleria/" target="_blank">Galleria</a> -这是一个用jQuery编写的javascript图像画廊插件。之前帕兰已经<a href="http://parandroid.com/galleria-javascript-concise-refreshing-image-gallery-script-2/" target="_blank">做过介绍</a>。</p>
<p><a href="http://monc.se/galleria/demo/demo_01.htm#" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j15.jpg"  alt="" /></a></p>
<hr />
2) <a href="http://www.openstudio.fr/jQuery-Multimedia-Portfolio.html?lang=en" target="_blank">jQuery Multimedia Portfolio</a> -支持多种多媒体格式，包括:图片，视频 (flv), 音频 (mp3), 并且自动侦测每个文件的扩展名再分别调用合适的播放器。<a href="http://www.openstudio.fr/jQuery-Multimedia-Portfolio.html?lang=en" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j20.gif"  alt="" /></a>
<hr />
3) <a href="http://www.webinventif.fr/wp-content/uploads/projets/wslide/" target="_blank">wSlide</a> -通过列表名单切换动画盒式的内容区域。<a href="http://www.webinventif.fr/wp-content/uploads/projets/wslide/" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j25.gif"  alt="" /></a>
<hr />
<h4>标签云</h4>
<p>4) <a href="http://www.noupe.com/css/jquery-hover-sub-tag-cloud.html" target="_blank">Hover Sub Tags</a>- 使用jQuery来缩小标签云所占成的页面，比如你有一个&#8221;Ajax&#8221;的标签, 你可以在这个标签里面再放入二级标签 jquery, mootools, 等&#8230;当鼠标悬浮在一级标签上时，就出现一个动态提示效果的二级标签云。</p>
<p><a href="http://noupe.com/examples/tagcloud/tag-cloud.html" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j36.gif"  alt="" /></a></p>
<hr />
<h4>分页系统</h4>
<p>5) <a href="http://plugins.jquery.com/project/pagination" target="_blank">Pagination</a>-创建一个分页导航,当你的网页内容比如多的时候，比较适合使用这种分页导航系统，同时也有利于SEO。这个利用jQuery编写的分页导航的特点是，你可以把它与搜索相结合，控制搜索结果的显示文章数。</p>
<p><a href="http://d-scribe.de/webtools/jquery-pagination/demo.htm" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j26.gif"  alt="" /></a></p>
<hr />
<h4>导航系统</h4>
<p>6) <a href="http://www.dynamicdrive.com/dynamicindex17/ddaccordionmenu.htm" target="_blank">Accordion Menu</a> -这是一个手风琴效果的演示, 标题使用 H3 标签, 子菜单使用UL标签来实现伸缩。</p>
<p><a href="http://www.dynamicdrive.com/dynamicindex17/ddaccordionmenu.htm" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j13.gif"  alt="" /></a></p>
<hr />
7) <a href="http://jquery.bassistance.de/treeview/demo/" target="_blank">jQuery Treeview Plugin </a><a href="http://jquery.bassistance.de/treeview/demo/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j31.gif"  alt="" /></a>
<hr />
8 ) <a href="http://www.ndoherty.com/demos/coda-slider/1.1.1/" target="_blank">Coda-Slider</a>- 一个强大的jQuery滑动门技术，效果平滑，很酷。支持上下页的控制。<a href="http://www.ndoherty.com/demos/coda-slider/1.1.1/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/t12.gif"  alt="" /></a>
<hr />
9) <a href="http://letmehaveblog.blogspot.com/2007/10/haccordion-simple-horizontal-accordion.html" target="_blank">Simple Horizontal Accordion</a><a href="http://letmehaveblog.blogspot.com/2007/10/haccordion-simple-horizontal-accordion.html" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j32.gif"  alt="" /></a>
<hr />
<h4>表格和网格</h4>
<p>10) <a href="http://pure-essence.net/2008/02/26/jquery-plugin-tablerowcheckboxtoggle/" target="_blank">TableRowCheckboxToggle</a> - 它笼统地加入了切换功能，以任何表行您所指定的基础上的CSS类的名字。它将默认切换任何复选框内的表行。</p>
<p><a href="http://pure-essence.net/stuff/webTips/jqueryTableRowCheckboxToggle.html" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j1.gif"  alt="" /></a></p>
<hr />
11) <a href="http://dev.iceburg.net/jquery/tableEditor/demo.php" target="_blank">TableEditor</a> - Tableeditor提供了灵活的实时编辑的HTML表格。<a href="http://dev.iceburg.net/jquery/tableEditor/demo.php" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j30.gif"  alt="" /></a>
<hr />
12) <a href="http://www.reconstrukt.com/ingrid/" target="_blank">Ingrid</a> - Ingrid是一个个性的jquery插件，可以为你的图表添加很多网格数据行为，包括大小，分页，整理，排柱造型以及更多。<a href="http://www.reconstrukt.com/ingrid/example1.html" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j34.gif"  alt="" /></a>
<hr />
<h4>表单</h4>
<p>13) <a href="http://www.whitespace-creative.com/jquery/jNice/" target="_blank">jQuery Nice Form</a> -创建自定义风格的表单事件。</p>
<p><a href="http://www.whitespace-creative.com/jquery/jNice/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j2.gif"  alt="" /></a></p>
<hr />
14) <a href="http://jmar777.blogspot.com/2008/02/easy-multi-select-transfer-with-jquery.html" target="_blank">Easy Multi Select Transfer</a> 选项菜单选中后到达另一个选项栏的效果。<a href="http://jmar777.blogspot.com/2008/02/easy-multi-select-transfer-with-jquery.html" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j42.gif"  alt="" /></a>
<hr />
15) <a href="http://malsup.com/jquery/form/" target="_blank">jQuery Form Plugin</a>- 让你轻松自然地升级HTML表单使用Ajax表单和提交的方法，以方便从从表单元素中搜集资料，并决定如何管理提交进程，让你对数据如何提交能有充分的控制权。<br />
<hr />
<h4>滚动和滑动技术</h4>
<p>16) <a href="http://flesler.blogspot.com/2008/02/jqueryserialscroll.html" target="_blank">jQuery.SerialScroll</a> -此插件可以让你很容易实现任何动画的一系列要素依次滚动。你可以用它作为一节滑块，滚轮文本，幻灯片，新闻股票等。</p>
<p><a href="http://flesler.webs.com/jQuery.SerialScroll/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j10.gif"  alt="" /></a></p>
<hr />
17) <a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/jq-liscroll/scrollanimate.html" target="_blank">liScroll </a> - LiScroll是一个 jQuery 插件，可以让你转换任何无序列表为一个滚动内容展示。<br />
<hr />
18) <a href="http://n.efario.us/category/jquery/spinner/" target="_blank">Spinner</a> -可以让你在一个固定区域里无限量的增加内容进行滚动样式的展示。<a href="http://n.efario.us/jquery/spinner/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j41.gif"  alt="" /></a>
<hr />
<h4>表单事件</h4>
<p>19) <a href="http://projects.bundleweb.com.ar/jWYSIWYG/" target="_blank">jWYSIWYG</a> 一个可以内嵌网页的所见即所得的HTML文本编辑插件。</p>
<p><a href="http://projects.bundleweb.com.ar/jWYSIWYG/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j5.gif"  alt="" /></a></p>
<hr />
20) <a href="http://www.codeassembly.com/Simple-chained-combobox-plugin-for-jQuery/" target="_blank">Simple chained combobox</a> -很简单的一个jquery选项插件，通过JSON的加工和返回特点，提供连锁反应式的多重选择。<a href="http://www.codeassembly.com/examples/jquerycombo/test.html" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j14.gif"  alt="" /></a>
<hr />
21) <a href="http://widowmaker.kiev.ua/checkbox/" target="_blank">jQuery checkbox</a><a href="http://widowmaker.kiev.ua/checkbox/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j18.gif"  alt="" /></a>
<hr />
22) <a href="http://lab.berkerpeksag.com/jGrow" target="_blank">jGrow</a><a href="http://lab.berkerpeksag.com/jGrow#samples" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j16.gif"  alt="" /></a>
<hr />
<h4>Toggling</h4>
<p>23) <a href="http://jmar777.blogspot.com/2008/02/jtruncate-in-action.html" target="_blank">jTruncate in Action</a> -jtruncate可以自定义截断你网页中的文本实体。</p>
<p><a href="http://jmar777.blogspot.com/2008/02/jtruncate-in-action.html" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j7.gif"  alt="" /></a></p>
<hr />
24) <a href="http://jquery.andreaseberhard.de/toggleElements/" target="_blank">toggleElements</a> - toggleElementS是一个展开/隐藏效果的jqurey插件。<a href="http://jquery.andreaseberhard.de/toggleElements/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j37.gif"  alt="" /></a>
<hr />
<h4>渐变和阴影</h4>
<p>25) <a href="http://eyebulb.com/dropshadow/" target="_blank">Drop Shadows</a> -这个插件可以为你的文本生成一个非常有趣的阴影效果。</p>
<p><a href="http://eyebulb.com/dropshadow/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j9.gif"  alt="" /></a></p>
<hr />
26) <a href="http://www.unitorganizer.com/myblog/2007/08/gradient_jquery_plugin.html" target="_blank">Gradient jQuery plugin</a> - 实现渐变效果，你可以设定渐变的方向和透明度值。<a href="http://www.unitorganizer.com/javascript/gradients/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j11.gif"  alt="" /></a>
<hr />
27) <a href="http://blog.brandonaaron.net/my-jquery-plugins/gradient/" target="_blank">Gradient</a> -让你拥有一个动态渐变效果的背景，不需要使用任何图片。<a href="http://brandonaaron.net/jquery/plugins/gradient/test/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j29.gif"  alt="" /></a>
<hr />
<h4>Lightbox灯箱效果</h4>
<p>28) <a href="http://famspam.com/facebox" target="_blank">Facebox</a> 基于jQuery, Facebook风格的lightbox灯箱插件，可以显示图片、DIV层和文章页面等。</p>
<p><a href="http://famspam.com/facebox" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j17.gif"  alt="" /></a></p>
<hr />
29) <a href="http://www.balupton.com/sandbox/jquery_lightbox/" target="_blank">jQuery Lightbox Plugin</a>- (balupton edition)<a href="http://www.balupton.com/sandbox/jquery_lightbox/" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j44.gif"  alt="" /></a>
<hr />
<h4>拾色器</h4>
<p>30) <a href="http://vreboton.ibacolod.com/DotNetNuke/ControlsandTips/jQueryColorPicker/tabid/69/Default.aspx" target="_blank">jQueryColorPicker</a> -一个简单的jquery拾色器插件，可以让用户选择色盘中的颜色来实现背景颜色的切换。</p>
<p><a href="http://vreboton.ibacolod.com/DotNetNuke/ControlsandTips/jQueryColorPicker/tabid/69/Default.aspx" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j19.gif"  alt="" /></a></p>
<hr />
<h4>值得试用的一些jQuery插件</h4>
<p>31) <a href="http://www.openstudio.fr/Animated-InnerFade-with-JQuery.html" target="_blank">Animated InnerFade</a>- 完全符合w3c标准的动画幻灯片插件。</p>
<p><a href="http://www.openstudio.fr/Animated-InnerFade-with-JQuery.html" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j24.gif"  alt="" /></a></p>
<hr />
32) <a href="http://www.ezjquery.com/pop.html" target="_blank">Easy POP Show 1.0 Release</a> -全屏幕显示的画廊插件。<a href="http://www.ezjquery.com/pop.html" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j8.gif"  alt="" /></a>
<hr />
33) <a href="http://jsgt.org/lib/jquery/plugin/jqchart/nightly/nightly.htm" target="_blank">jqChart</a>- Ajax的图表插件<a href="http://jsgt.org/lib/jquery/plugin/jqchart/nightly/nightly.htm" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j23.gif"  alt="" /></a>
<hr />
34) <a href="http://marcgrabanski.com/code/ui-datepicker/" target="_blank">UI Datepicker</a> -一个简单的jQuery  UI日期拾取器.<a href="http://marcgrabanski.com/code/ui-datepicker/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j35.gif"  alt="" /></a>
<hr />
35) <a href="http://plugins.jquery.com/project/JSmile" target="_blank">JSmile</a> -一个完全自定义的添加特定表情图标的插件。<a href="http://packed.it/JSmile/demo/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j3.gif"  alt="" /></a>
<hr />
36) <a href="http://odyniec.net/projects/imgareaselect/" target="_blank">ImgAreaSelect</a> - imgAreaSelect是一个 jQuery插件，可以让你在一张图片中选择一个矩形，并且可以列出坐标值。<a href="http://odyniec.net/projects/imgareaselect/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j4.gif"  alt="" /></a>
<hr />
37) <a href="http://www.designerkamal.com/jPrintArea/" target="_blank">jPrintArea</a>-jPrintArea是一个简单的，用来打印指定的文本内容。<a href="http://www.designerkamal.com/jPrintArea/" target="_blank">查看DEMO演示 </a>
<hr />
38) <a href="http://jsgt.org/lib/jquery/plugin/jqchart/nightly/nightly.htm" target="_blank">jTabber</a>- 一个Tab选项卡切换技术，不需要重新载入页面<a href="http://jsgt.org/lib/jquery/plugin/jqchart/nightly/nightly.htm" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j27.gif"  alt="" /></a>
<hr />
39) <a href="http://www.pengoworks.com/workshop/jquery/calculation/calculation.plugin.htm" target="_blank"> jQuery Calculation Plug-in</a> - 一个计算类插件。可以让你计算一些简单或是复杂的数学公式。<a href="http://www.pengoworks.com/workshop/jquery/calculation/calculation.plugin.htm" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j6.gif"  alt="" /></a>
<hr />
40) <a href="http://www.ollicle.com/eg/jquery/biggerlink/" target="_blank">jquery.biggerlink</a> - 这个jQuery插件可以让你为指定的链接添加成在线代理后的链接地址。<a href="http://www.ollicle.com/eg/jquery/biggerlink/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j40.gif"  alt="" /></a>
<hr />
41) <a href="http://binarybonsai.com/archives/2007/10/15/humanized-messages-for-jquery/" target="_blank">Humanized Messages</a>- 在你的网页上显示一个半透明的内容信息，但是当用户有任何操作时，它就会慢慢消失。<a href="http://binarybonsai.com/misc/humanmsg/" target="_blank"><img src="http://parandroid.com/images/45-jquery-plugins/2j33.gif"  alt="" /></a>
<hr />
42) <a href="http://www.protofunc.com/scripts/jquery/ajaxManager/" target="_blank">Ajax Manager</a> 帮助你管理AJAX请求和回应，(比如，放弃请求，锁定请求，排序请求等).<a href="http://www.protofunc.com/scripts/jquery/ajaxManager/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j12.gif"  alt="" /></a>
<hr />
43) <a href="http://www.protofunc.com/scripts/jquery/backgroundPosition/" target="_blank">Background-Position Animation</a><a href="http://www.protofunc.com/scripts/jquery/backgroundPosition/" target="_blank"> <img src="http://parandroid.com/images/45-jquery-plugins/2j22.gif"  alt="" /></a>
<hr />
44) <a href="http://www.appelsiini.net/projects/lazyload" target="_blank">Lazyload</a>-Delays
loading of images in (long) web pages. Images below the fold (the ones
lower than window bottom) are not loaded. When scrolling down they are
loaded when needed.<a href="http://www.appelsiini.net/projects/lazyload" target="_blank">Check out their demo page</a>
<hr />
45) <a href="http://remysharp.com/2008/02/28/upgraded-jquery-tag-suggestions/" target="_blank">jQuery Tag Suggestion</a>- The same tag suggesting as-you-type support that del.icio.us is uses.<a href="http://remysharp.com/2008/02/28/upgraded-jquery-tag-suggestions/" target="_blank">Check out their demo page</a>
<hr />
<img src="http://parandroid.com/images/45-jquery-plugins/2j43.gif"  alt="" />
原文:<a href="http://www.noupe.com/ajax/45-fresh-out-of-the-oven-jquery-plugins.html" class="entry-title-link" target="_blank">45+ Fresh Out of the oven jQuery Plugins<img src="http://www.google.com/reader/ui/2412528845-go-to.gif" class="entry-title-go-to" width="18" height="18"  alt="" /></a>
<img src ="http://www.blogjava.net/gembin/aggbug/230731.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2008-09-23 18:05 <a href="http://www.blogjava.net/gembin/archive/2008/09/23/230731.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title> 50多个强大的jQuery插件应用实例 </title><link>http://www.blogjava.net/gembin/archive/2008/09/23/230730.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Tue, 23 Sep 2008 09:59:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2008/09/23/230730.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/230730.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2008/09/23/230730.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/230730.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/230730.html</trackback:ping><description><![CDATA[<p>原文:<a href="http://www.noupe.com/ajax/50-amazing-jquery-examples-part1.html" title="50+ Amazing Jquery Examples- Part1">50+ Amazing Jquery Examples- Part1</a></p>
<p>jQuery是近段时间里比较流行的一个JavaScript框架，不断有使用者开发出新的 jQuery插件。下面收集了50个开发者最喜欢使用的jQuery插件。这仅仅是第一个系列，你先品尝，第二道大餐即将到来。<br />
<strong>Sliding Panels －滑动门控制</strong><br />
1) <a href="http://www.andreacfm.com/examples/jQpanels/">Sliding Panels For jQuery</a> -元素可以展开或关闭，创建出手风琴的滑动效果。</p>
<p><a href="http://www.andreacfm.com/examples/jQpanels/"> <img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j37.gif"  alt="" /></a></p>
<p>(2) <a href="http://www.webintenta.com/wp-content/uploads/file/JQueryCollapse.html">jQuery Collapse</a> -这个jQuery插件同样点击后滑动展开或关闭DIV层。<br />
<strong>Menu － 菜单</strong><br />
3) <a href="http://gmarwaha.com/blog/?cat=8">LavaLamp</a></p>
<p><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/lavalamp.gif" alt="menu" /></p>
<p>(4) <a href="http://blog.evaria.com/wp-content/themes/blogvaria/jquery/index-multi.php">A Navigation Menu</a>- 锚链接的无序列表嵌套, 可以添加2级菜单</p>
<p><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j20.gif" alt="menu" /></p>
<p>(5) <a href="http://be.twixt.us/jquery/suckerFish.php">SuckerFish Style</a></p>
<p><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j21.gif" alt="menu" /></p>
<p><strong>Tabs - 选项卡</strong><br />
6) <a href="http://stilbuero.de/jquery/tabs_3/">jQuery UI Tabs / Tabs 3</a> - 基于 jQuery 的一个Tab选项卡导航</p>
<p><a href="http://stilbuero.de/jquery/tabs_3/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j12.gif"  alt="" /></a></p>
<p>(7) <a href="http://mattberseth.com/blog/2007/11/jquery_tabcontainer_theme_with.html">TabContainer Theme</a> - 当用户在选项卡之间进行切换时，产生JQuery风格的淡出动效果。</p>
<p><a href="http://stilbuero.de/jquery/tabs_3/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j23.gif"  alt="" /></a><br />
<strong>Accordion－ 手风琴效果</strong><br />
8 ) <a href="http://plugins.jquery.com/project/accordion">jQuery Accordion</a></p>
<p><a href="http://jquery.bassistance.de/accordion/?p=1.1.1">Demo<br />
<img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j22.gif" alt="accordion" /></a></p>
<p>(9) <a href="http://www.i-marco.nl/weblog/jquery-accordion-menu/">Simple JQuery Accordion menu</a></p>
<p><a href="http://www.i-marco.nl/weblog/jquery-accordion-menu/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j35.gif" alt="accordion" /></a><br />
<strong>SlideShows － 幻灯片</strong><br />
10) <a href="http://www.mind-projects.it/blog/?page_id=14">jQZoom</a>-让你在你的网页上很简单的实现图片的缩放功能。</p>
<p><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j14.gif" alt="rating" /></p>
<p>(11) <a href="http://benjaminsterling.com/jquery-jqgalview-photo-gallery/">Image/Photo Gallery Viewer</a>- 一个图像/相片的画廊展示插件。可以让你对图片进行分组、并产生像Flash一样的多种浏览特效。</p>
<p><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j25.gif" alt="rating" /><br />
<strong>Transition Effects - 过渡特效</strong><br />
12) <a href="http://medienfreunde.com/lab/innerfade/"> InnerFade </a> - 可以让网页中的任何元素产生淡化效果</p>
<p><a href="http://medienfreunde.com/lab/innerfade/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j13.gif"  alt="" /></a></p>
<p>(13) <a href="http://gsgd.co.uk/sandbox/jquery/easing/"> Easing Plugin</a>-另外一个简单的过渡效果插件</p>
<p>(14) <a href="http://jquery.offput.ca/highlightFade/old.php">Highlight Fade</a></p>
<p>(15) <a href="http://www.malsup.com/jquery/cycle/int2.html">jQuery Cycle Plugin</a>- 拥有多种过渡效果的一个Gallery插件。</p>
<p><a href="http://www.malsup.com/jquery/cycle/int2.html"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j24.gif" alt="accordion" /></a></p>
<p><strong>奇幻的jQuery</strong><br />
16) <a href="http://sorgalla.com/jcarousel/">Riding carousels with jQuery</a> - 这个jQuery插件可以生成一个水平或垂直的列表，并且允许你控制DIV层的滑动显示。</p>
<p><a href="http://sorgalla.com/jcarousel/">Demo :<br />
<img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j9.gif"  alt="" /></a><br />
<strong>Color Picker －拾色器</strong><br />
17) <a href="http://acko.net/dev/farbtastic">Farbtastic</a> -这个 jQuery 插件可以让你通过Javascript添加一个或多个拾色器widgets到一个页面中。</p>
<p><a href="http://acko.net/dev/farbtastic">Demo :<br />
<img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j36.gif"  alt="" /></a></p>
<p>(18) <a href="http://www.intelliance.fr/jquery/color_picker/">jQuery Color Picker</a><br />
<strong>LightBox －灯箱效果</strong><br />
19) <a href="http://jquery.com/demo/thickbox/">jQuery ThickBox</a> -  is a webpage user interface dialog widget written in JavaScript.</p>
<p><a href="http://jquery.com/demo/thickbox/">Demo :</a></p>
<p><a href="http://jquery.com/demo/thickbox/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j10.gif"  alt="" /></a></p>
<p>(20) <a href="http://www.ericmmartin.com/simplemodal/">SimpleModal Demos</a>
- its goal is providing developers with a cross-browser overlay and
container that will be populated with content provided to SimpleModal.</p>
<p><a href="http://www.ericmmartin.com/simplemodal/">Demo :</a></p>
<p><a href="http://www.ericmmartin.com/simplemodal/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j17.gif"  alt="" /></a></p>
<p>(21) <a href="http://leandrovieira.com/projects/jquery/lightbox/">jQuery lightBox Plugin</a>
- simple, elegant, unobtrusive, no need extra markup and is used to
overlay images on the current page through the power and flexibility of
jQuery&#8242;s selector.</p>
<p><a href="http://leandrovieira.com/projects/jquery/lightbox/#example">Demo :</a></p>
<p><a href="http://leandrovieira.com/projects/jquery/lightbox/#example"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j7.gif"  alt="" /></a></p>
<p>(<br />
<strong>iframe</strong><br />
22) <a href="http://33rockers.com/jquery/iframe-demo/">JQuery iFrame Plugin</a></p>
<p><a href="http://33rockers.com/jquery/iframe-demo/"> <img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j38.gif"  alt="" /></a><br />
<strong>Form Validation -表单验证器</strong><br />
23) <a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/">Validation</a> - 有一套完整相当的形式验证规则。该插件还动态地创建ID和联系信息。</p>
<p><a href="http://jquery.bassistance.de/validate/demo-test/">Demo :</a></p>
<p><a href="http://jquery.bassistance.de/validate/demo-test/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/f9.gif"  alt="" /></a></p>
<p>(24) <a href="http://jqueryfordesigners.com/demo/ajax-validation.php">Ajax Form Validation</a> - 在客户端使用jquery验证的一种形式，它可以验证用户名是否有效等。</p>
<p><a href="http://jquery.bassistance.de/validate/demo-test/">Demo :</a></p>
<p><a href="http://jquery.bassistance.de/validate/demo-test/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j11.gif"  alt="" /></a></p>
<p>(25) <a href="http://itgroup.com.ph/alphanumeric/">jQuery AlphaNumeric</a> -欢迎对对表单域中的某些字符进行限制</p>
<p><a href="http://itgroup.com.ph/alphanumeric/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j16.gif"  alt="" /></a><br />
<strong>Form Elements － 表单事件</strong><br />
<img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j15.gif"  alt="" /></p>
<p>(26) <a href="http://jquery.sanchezsalvador.com/page/jquerycombobox.aspx">jquery.Combobox</a> - 从现在的选择元素中创建一个个性的HTML组合  <a href="http://jquery.sanchezsalvador.com/jquery/page/jquerycomboboxexamplealternatestyle.aspx">Demo is here.</a></p>
<p>(27) <a href="http://kawika.org/jquery/checkbox/">jQuery Checkbox</a> -样式化选择框，从而提高交互能力。</p>
<p>(28) <a href="http://www.appelsiini.net/projects/filestyle">File Style Plugin for jQuery</a> -File Style插件让你可以使用图像做为文件浏览按钮，你还可以样式化文件名称区域。<br />
<strong>Star Rating － 星形评级系统</strong><br />
<img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j39.gif" alt="rating" /></p>
<p>(29) <a href="http://php.scripts.psu.edu/rja171/widgets/rating.php">Simple Star Rating System</a></p>
<p>30)<a href="http://www.learningjquery.com/2007/05/half-star-rating-plugin">Half-Star Rating Plugin</a><br />
<strong>ToolTips －提示工具</strong><br />
31) <a href="http://plugins.jquery.com/project/tooltip"> Tooltip Plugin Examples</a> - 一个花俏的提示应用。 可以对提示信息进行自定义位置, 设置阴影效果和添加更多内容等.你可以点击<a href="http://jquery.bassistance.de/tooltip/">demo 演示.</a></p>
<p>(32) <a href="http://www.codylindley.com/blogstuff/js/jtip/">The jQuery Tooltip </a></p>
<p><a href="http://www.codylindley.com/blogstuff/js/jtip/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j4.gif" alt="tool tip" /></a><br />
<strong>Tables Plugins －表格插件</strong><br />
33) <a href="http://15daysofjquery.com/examples/zebra/"> Zebra Tables Demo </a>-使用jQuery来创建出斑马线风格的数据表格，鼠标悬浮时能改变背景色。</p>
<p><a href="http://15daysofjquery.com/examples/zebra/code/demoFinal.php">Demo :</a></p>
<p><a href="http://15daysofjquery.com/examples/zebra/code/demoFinal.php"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j26.gif" alt="zebra tables" /></a></p>
<p>(34) <a href="http://tablesorter.com/docs/#Demo">Table Sorter Plugin </a>- 把一个标准的HTML表格分解成Thead和Tbody标签构成的分类表格，不需要刷新。它能够成功地解析和整理多种类型的数据，包括联系资料。</p>
<p><a href="http://tablesorter.com/docs/#Demo"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j27.gif" alt="table sorter" /></a></p>
<p>(35) <a href="http://jdsharp.us/jQuery/plugins/AutoScroll/demo.php">AutoScroll for jQuery</a> -可以生成网页表格的热点自动滚动效果</p>
<p><a href="http://jdsharp.us/jQuery/plugins/AutoScroll/demo.php"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j42.gif" alt="auto scroll" /></a></p>
<p>(36) <a href="http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html">Scrollable HTML table plugin</a>- 用来转换表格为普通的滚动HTML。不需要额外的编码。</p>
<p><a href="http://www.webtoolkit.info/demo/jquery/scrollable/demo.html">Demo :</a></p>
<p><a href="http://www.webtoolkit.info/demo/jquery/scrollable/demo.html"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j34.gif" alt="Scrollable table" /></a><br />
<strong>Draggable Droppables And Selectables 拖拽</strong><br />
37) <a href="http://interface.eyecon.ro/demos/sort.html"> Sortables </a>- 一个简单强大的拖拽插件。</p>
<p><a href="http://interface.eyecon.ro/demos/sort.html"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j28.gif" alt="sort" /></a></p>
<p>(38) <a href="http://interface.eyecon.ro/demos/drag_drop_tree.html"> Draggables and droppables</a>- 这是一个很好的演示。用来实现拖拽树形菜单项目的操作</p>
<p><a href="http://interface.eyecon.ro/demos/drag_drop_tree.html"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j30.gif" alt="drag drop" /></a><br />
<strong>Style Switcher － 切换风络</strong><br />
39) <a href="http://www.kelvinluck.com/article/switch-stylesheets-with-jquery"> Switch stylesheets with jQuery</a>允许访客选择他们喜欢的网站样式，使用了Cookie记录，也就是同一个用户下次再访问时，除非他不切换，否则会保留他选择的样式。</p>
<p><a href="http://www.kelvinluck.com/assets/jquery/styleswitch/">Demo演示.</a><br />
<strong>Rounded Corners 圆角效果</strong><br />
40) <a href="http://methvin.com/jquery/jq-corner-demo.html"> jQuery Corner Demo</a></p>
<p><a href="http://methvin.com/jquery/jq-corner-demo.html"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j31.gif" alt="rounded corners" /></a></p>
<p>(41) <a href="http://blue-anvil.com/jquerycurvycorners/test.html"> JQuery Curvy Corners</a>- 这个插件可以让你生成光滑、无锯齿的圆角效果。</p>
<p><a href="http://blue-anvil.com/jquerycurvycorners/test.html"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j40.gif" alt="rounded corners" /></a><br />
<strong>Must See jQuery Examples 应该了解的一些jQuery应用实例</strong><br />
42) <a href="http://www.digital-web.com/articles/jquery_crash_course/">jQuery Air</a> - 一个非常非常特别的客户管理界面应用插件，太特别了，太太太特别了。</p>
<p><a href="http://www.digital-web.com/extras/jquery_crash_course/">Demo :</a></p>
<p><a href="http://www.digital-web.com/extras/jquery_crash_course/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j6.gif"  alt="" /></a></p>
<p>(43) <a href="http://www.jnathanson.com/blog/client/jquery/heatcolor/index.cfm">HeatColor</a></p>
<p><a href="http://www.jnathanson.com/blog/client/jquery/heatcolor/index.cfm">Demo :</a></p>
<p><a href="http://www.jnathanson.com/blog/client/jquery/heatcolor/index.cfm"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j19.gif"  alt="" /></a></p>
<p>(44) <a href="http://markc.renta.net/jquery/">Simple jQuery Examples</a></p>
<p>(45) <a href="http://kelvinluck.com/assets/jquery/datePicker/v2/demo/">Date Picker</a> -一个灵活个性的jQuery日历组件。</p>
<p><a href="http://kelvinluck.com/assets/jquery/datePicker/v2/demo/">Demo :</a></p>
<p><a href="http://kelvinluck.com/assets/jquery/datePicker/v2/demo/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j32.gif"  alt="" /></a></p>
<p>(46) <a href="http://www.freewebs.com/flesler/jQuery.ScrollTo/">ScrollTo</a> -这个jQuery插件可以让你实现当点击链接时中滚动到页面中的某一对象</p>
<p>(47) <a href="http://methvin.com/jquery/splitter/3csplitter.html">3-Column Splitter Layout</a> 一个3栏布局分配插件。</p>
<p><a href="http://methvin.com/jquery/splitter/3csplitter.html"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j29.gif"  alt="" /></a></p>
<p>(48) <a href="http://rikrikrik.com/jquery/pager/">Pager jQuery</a> -一个小巧的 jQuery插件，用来增加分页的页码效果</p>
<p><a href="http://rikrikrik.com/jquery/pager/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j33.gif"  alt="" /></a></p>
<p>(49) <a href="http://www.texotela.co.uk/code/jquery/select/">Select box manipulation</a></p>
<p>(50) <a href="http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/">Cookie Plugin for jQuery</a></p>
<p>51) <a href="http://malsup.com/jquery/block/">JQuery BlockUI Plugin</a></p>
<p><a href="http://malsup.com/jquery/block/"><img src="http://parandroid.com/images/technology/50-amazing-jquery-examples/j41.gif"  alt="" /></a></p>
<img src ="http://www.blogjava.net/gembin/aggbug/230730.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2008-09-23 17:59 <a href="http://www.blogjava.net/gembin/archive/2008/09/23/230730.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>重新设计网站或博客需要考虑的21个因素和技巧</title><link>http://www.blogjava.net/gembin/archive/2008/09/23/230727.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Tue, 23 Sep 2008 09:57:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2008/09/23/230727.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/230727.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2008/09/23/230727.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/230727.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/230727.html</trackback:ping><description><![CDATA[<p><strong>开场白:</strong>下面是一篇关于网站重新设计时需要考虑的诸多因素的一篇文章，虽然着眼于网页设计，但它其实同样是一篇博客技巧，人人皆适用。所以，俺翻译一下，跟各位博友分享。如有什么翻译不当或错误之处，请勿指正!</p>
<p><img src="http://parandroid.com/wp-content/uploads/2008/01/parandroid_logo_7.png" alt="重新设计网站或博客需要考虑的21个因素和技巧" /></p>
<p>原文:<a href="http://vandelaydesign.com/blog/design/redesign-process/" rel="bookmark" title="Permanent Link: 21 Factors to Consider Before a Redesign">21 Factors to Consider Before a Redesign</a></p>
<p>翻译:帕兰</p>
<p>重新设计一个网站是一个非常复杂的过程。你需要妥善规划考虑到诸多因素，打破原有的设计让网站更加人性化、更利于用户体验、更高的网站效率、更友好的优化之于搜索引擎。这里就让我们来看看21个对网站重新设计时需要考虑到的因素，你一定要考虑:)<br />
<strong> 1 .重新设计的目标是什么？ </strong></p>
<p>你希望完成什么？你希望改变什么？一个明确的认识是很重要的，是的，你应该明确你的要对网站进行重新设计的理由和动机，因为什么样的动机就会使你作
出的什么样的决定。如果你不知道你的目标是什么，那你就将缺乏重新设计的方向，你很可能会结束这项工作的时候，还是得不到一个满意的设计效果。<br />
<strong> 2 .这是一次简单的网站升级还是对网站进行全面整改?</strong></p>
<p>重
新设计一个全新的网站，可以从任何一个细节来让网站改头换面。很明显，时间，精力，以及所涉及的费用导致重新设计出来的结果是不同的。但我想首先你应该确
定你都需要哪些类型的变化来满足你的目标与设计。如果是一个全面的重新设计，你也得考虑到&#8221;全面&#8221;到什么程度，通常新的网站设计风格应该类似于旧网站的设
计风格。因为如果你之前的访客来到你的网站，被你的全新设计搞得认不出&#8221;你&#8221;来，你大概不希望这样。<br />
(注:这一点对于我来说不太适合，我就喜欢隔三差五的把博客从&#8220;A&#8221;变成&#8221;B&#8221;，因为我觉得这样能给旧的访客带来新鲜感，但他们仍然知道这是我的博客。而
新访客，他们并不知道我曾经用过其它的设计。当然，这一点也是博客和网站的区别。同时，其它博客用户尤其是Wordpress用户适乎也不太适用于这一
点，因为成千上万的漂亮的&#8220;皮&#8221;总是让我们经不住诱惑换了又换。)<br />
<strong> 3 .当前的网站设计中，哪些方面是最值得使用的？ </strong></p>
<p>你当前的网站设计中，通常都有一些方面是优秀且效果比较好的，而这些方面，你可能希望保留或将其纳入新的设计方案中。作一个简单的归纳，哪些是你想保留的，这将是好主意，更有利于你清晰规划你的设计方案。</p>
<p><strong> 4 .当前的网站设计中，哪些方面是不值得使用的？ </strong></p>
<p>如果你是重新设计网站，你势必要丢掉一些设计部份。比如对于你的新访客说，可能有哪些地方不能准确表达的原本想要传达的意义？这就跟上面的正好相反，对于这些不太值得使用的设计，你应该最大程度的改良或丢掉它们。<br />
<strong> 5 .谁是你的目标用户？ </strong></p>
<p>在任何设计过程中，你永远不能忘掉访客，必须以访客为中心(注:除了那些完全不在乎访客的理想主义者)。确定的目标受众群，瞄准他们，打出&#8221;致命的
一颗子弹&#8221;－什么样的设计风格会使你的用户喜欢？(注:在设计过程中，你应该一直让这个问号停留在你的脑海里，打出一颗又一颗子弹，这样，还怕用户不死于
你的网站之下？呵呵！)</p>
<p><strong> 6 .怎样才能让网站更加方便用户呢？</strong></p>
<p>对于一个网站来说，强大的功能应用确实是一件好事。但如果花费大量的时间堆砌一大堆无谓的所谓&#8221;高级功能&#8221;，其实并不方便用户的使用。(注:尤其是
随着Web2.0的狂潮，简单已经成了一个大势所趋，除蜚你的网站受众都是些专业级别的电脑用户，否则，去掉你那些花哨而又不实用的一大堆特效吧!)</p>
<p><strong> 7 .Logo或品牌</strong><strong>形象是否</strong><strong>需要做改变？ </strong></p>
<p>Logo或一些常用的传达网站品牌形象的设计，在你重新设计网站时，是否需要同时对它们进行重设计呢？答案是，如果你的logo不是那种非常优秀的
&#8221;万能logo&#8221;，也就是指那种能够在任何网页设计中都跟全局良好融合的logo设计，那你或许应该考虑根据你的新网站风格设计一个风格统一的
logo。(注:帕兰的个人看法, Logo设计讲求的是简单，而设计一个万能logo的最重要因素就是简单再简单！)</p>
<p><strong> 8 .是保持还是改变网站的主色调？ </strong></p>
<p>在第2点已经说了，因为大部分的时候，你会想为那些旧访客保留网站的大体风格。所以用类似的配色方案是最佳方式之一。当然，你可以加入一些细微的色
调，从而让网站看起来确实有了那么些新鲜的感觉，但又不至于让旧访客认不出来。(注:我觉得这要看是什么样的设计风格了，比如我最欣赏的一位网页设计者<a href="http://5thirtyone.com/" target="_blank">531</a>，
他的博客每隔一段时间，就换一种色调，其一，他的网页设计图片很少，都是通过对一些文字链接进行着色来表现出网页的主色调，这样即使完全更换颜色，在给访
客新鲜感的同时，也不会让访客找不着北。其二，如果网页布局没有做什么大的调整，颜色的改变通常也不会造成前后设计的太大差异。)<br />
<strong> 9 .访客使用什么样的屏幕分辨率？ </strong></p>
<p>这一点也是非常重要的，尽管一些网页设计者可能会忽略。像Google Analytics之类的服务可以很容易地给你这方面的资料。很明显，一个固定宽度设计的网页应考虑到访客的屏幕分辨率。<br />
(注:之前有位博友问过我网页自适应宽度的问题，要实现网页的自适应宽度并不困难，但是完全必要。尽管我开始设计网页的时候，也喜欢弄成自适应宽度，但后
来发现，这很糟糕!
尤其是当一个自适应宽度的设计运行在1280像素比以上的屏幕分辨率上时，除非你的掌控能力很好以及页面布局确实适合自适应宽度，否则我不建议你使用自适
应。<br />
另外，我一般都是以最通用的1024*768的屏幕分辨率为基准来设计。因为，在中国，虽然我没有做过调查，但猜想有一半的用户仍然是使用老式的纯屏甚至
普屏，使用1024像素比为基准是最合适的。800*600像素的用户我基本上是选择置之不理!这样，就可以不用管宽屏了，我宁可宽屏用户在很宽的屏幕里
面看着有点小的网页，也不愿意网页宽到需要出现横向滚动条!)</p>
<p><strong> 10 .浏览者的网络速度？</strong></p>
<p>你的浏览者的平均网络速度，将有助于确定你的网页设计元素。</p>
<p>(注:如果你的浏览者的网络速度普遍偏慢，而你的网页里面使用了一大堆Javascript，左一个音乐播放器，右一个视频播放器。你觉得那会造成
什么样的后果？说白了，现在这个宽带高速发展的时代，一个网站最最最最重要的东西，不是SEO，不是网站内容，不是用户体验，是速度! 速度与激情嘛!
你的SEO做的再好，内容质量再高，用户体验再良好，可浏览者需要等待半分钟才可以进入你的页面，你以为地球人就只知道你丫的一个网站啊?</p>
<p>P.S:有点脸红，老帕我的博客有的时候载入甚至超过半分钟，但那不是设计的原因，是因为主机有点烂，最近正在寻找高速的，可要在国外主机里面找个高速的，还真他妈不容易! 国内？我宁可速度慢，也尽量不用国内的。)</p>
<p><strong> 11 .应该把设计重点放在什么地方？</strong></p>
<p>每 一个设计，是为了提醒大家去注意什么样的地方。知道你自己想强调什么，你也就得到了一个设计重心。你可以看一下<a href="http://www.caroline-middlebrook.com/blog/">Caroline Middlebrook</a> ，在她对她的博客进行重新设计时，她使用了博客里面的一大块区域来放置她的特点内容，比如她写的免费电子书籍。显然，对于她来说，这是她希望别人重点看到的内容，同时也是很好的展示她自己的一个区域。<br />
(注:帕兰总结－像突出广告位那样突出你的设计重点区域。)</p>
<p><strong> 12 .怎样才能使导航达到更好的效果？ </strong></p>
<p>导航是一个网站最重要的因素之一。如果你之前的网页设计中加入过很多的内容版面，那可能原先的导航不是那么的良好了。你应该尝试着建立一个最大程度上方便用户的网页导航，让他们轻松简便的从这儿跳到那，从那跳回这儿:)<br />
<strong> 13 .浏览者想要从你的网站看到什么? </strong></p>
<p>对于任何网站来说，满足浏览者的需要是至关重要的。浏览者来你的网站找资料？如果是的话，你应该使这些资料成为一个突出设计，让他们能够很容易的找
到这些资料。他们会在看了网页以后到实地来寻找产品？那在产品页面留一个显著的地址就是明智的选择了。站在浏览者的角度想他们所想，把最好最方便的网页设
计给他们。<br />
<strong> 14 .怎样才能增加用户交互？ </strong></p>
<p>最成功的网站能够让访客热情的参与其中。博客是这方面最强大的应用，因为它们能够在征求浏览者的意见和讨论。其它的还有论坛，游戏，调查结果显示，竞猜等。让你的浏览者对你的网站更加的引人入胜，您有可能获得更多数量的&#8221;回头客&#8221;。</p>
<p><strong> 15 .谁在维护和更新你的网站？ </strong></p>
<p>谁在维护和更新你的网站？当然是你！真的是吗？这是个问题。尤其是对于博客来说，事实上，留言者也正在帮你更新网站内容。虽然你应该保持代码的简洁，但是当别人为你贡献内容的时候，你应该同样让受到别人重视。</p>
<p>(注:比如，对于博客来说，你除了着重突出你的其它设计元素，同时，还应该给你的留言者们提供一个突出的机会。这点老帕做的很不好，但目前使用的主题都是在测试阶段，我会在需要修改的元素达到一定的数目时进行统一的Redesign。)<br />
<strong> 16 .你是否需要一个内容管理系统（ CMS ）？ </strong></p>
<p>很多网站主，现在宁愿选择一个CMS，比如WordPress。因为它们可以很容易的进行更新，而不需要什么网页设计。很多的主题模式设计预先就安装到系统里面。如果想要节省时间，CMS可能是一个很好的选择。</p>
<p>(注: 尽管原文作者说的是事实。但对于需要个性化的Blogger来说，不管他选择什么样的平台，他还是喜欢追求一个属于自己独特个性的网站设计。)</p>
<p><strong> 17 .怎样才能使SEO得到改善？ </strong></p>
<p>任何时候，一个网站如果要重新设计，搜索引擎都应该加以考虑。目前的设计是否会对搜索引擎造成不友好？如何放置目前的页面标题效果才最好？怎样才能合理的增加内部连接？等等等等。<br />
<strong> 18 .哪些关键词和短语是你的网页重点？ </strong></p>
<p>当然，关键字，应该用于title，head，a链接，alt属性等。设计一个网站，如果不知道你的目标关键词和短语是什么，也就意味着你最合适的设计方案可能失之交臂，甚至不会有太大的效果。而这不只是考虑搜索方面的问题，而是针对你目前的网站，得到最大化的效果。</p>
<p><strong> 19 .哪些网页和搜索在你的网站里面是热门的？ </strong></p>
<p>如果你的网站上有那种做得非常好的页面，也就是说访问量比较高，搜索引擎排名比较好，对于这些页面，你不应该做重大的更改，那样往往会降低你的页面
在搜索引擎中的网页排名。同样，有什么搜索词，是你网站里面目前比较热门的，你也不应该多做手脚。唯一肯定的，他们应该好好的保留在的新的设计方案中。<br />
<strong> 20 .页面里有哪些内部链接？ </strong></p>
<p>当你要重新设计网页的时候，你应该好好看看你的网站里面有哪些内部链接。以确保在新的网页设计中，这些链接不会丢失，最好是使用相同的URL结构。</p>
<p>(注:我拿博客打比个比方，你以前的侧边栏有热门日志、分类、存档的链接，但新的设计中，这些链接都抛弃了。这除了会导致旧的访客不能适应你的新导航感到手足无措外，更重要的是会导致你的网页排名下降。)<br />
<strong> 21 .如果让访客再次光临你的网站？ </strong></p>
<p>最有可能的情况是，你已经想到了一个出色的设计方案:给用户留下&#8221;你的网站充满活力&#8221;的第一印象。但问题是－怎样做才能保持网站的访客再次光临你的网站？</p>
<p>或许你知道哦，瞎猫也能碰到死耗子! 你这只瞎猫，快来碰一碰吧！</p>
<p><strong>结束语:</strong>每翻译一条，就惭愧一次，没有脸红。看来，得抽个时间好好Redesign一下我的Theme了。</p>
<img src ="http://www.blogjava.net/gembin/aggbug/230727.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2008-09-23 17:57 <a href="http://www.blogjava.net/gembin/archive/2008/09/23/230727.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>盘点2007:53个最棒的博客设计</title><link>http://www.blogjava.net/gembin/archive/2008/09/23/230726.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Tue, 23 Sep 2008 09:56:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2008/09/23/230726.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/230726.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2008/09/23/230726.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/230726.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/230726.html</trackback:ping><description><![CDATA[<p>昨天盘点了2007年里<a href="http://parandroid.com/pan-dian-200750-ge-zui-jia-css-wang-ye-she-ji/" target="_blank" rel="bookmark" title="Permanent Link: 盘点2007:50个最佳CSS网页设计">50个最佳CSS网页设计</a>，今天继续盘点，来自adii的<a href="http://www.adii.co.za/2007/12/10/my-53-top-blog-designs-of-2007">My 53 Top Blog Designs of 2007</a>.<br />
<strong>1. Alex Buga<br />
</strong>This is definitely my favourite blog design of the year - it
is just so extremely unique and well done! The etchings / scribbles
into the wood panels really gives it a personal touch, whilst I&#8217;ve got
to give Alex a lot of credit for pulling of the transparent effects on
the content boxes, as that is not overly easy.</p>
<p><a href="http://www.alexbuga.com/" title="Alex Buga" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/1-alexbuga.jpg" alt="Alex Buga" /></a></p>
<p><strong>2. Blogsolid<br />
</strong>It&#8217;s a great honour for me, to include Blogsolid&#8217;s design as
#2 in this list, as it was designed by a fellow South African. Again, I
think that Imar (the owner and designer of BS) ventured into the
uniqueness territory, where most designers don&#8217;t want to go, and it
paid off, since Blogsolid has been featured on most of the design
galleries around the web. Great design!</p>
<p><a href="http://www.blogsolid.com/" title="Blogsolid" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/2-blogsolid.jpg" alt="Blogsolid" /></a></p>
<p><strong>3. Piktogramme und Icons<br />
</strong>You don&#8217;t need to understand German (I think!) to adore this
super-clean design. I love the hand holding the business card in the
header and the rest of the design (looks like it is designed on a grid)
is just so functional, minimalistic and beautiful.</p>
<p><a href="http://www.piktogramme-und-icons.de/" title="Piktogramme Und Icons" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/3-piktogramme.jpg" alt="Piktogramme und Icons" /></a></p>
<p><strong>4. Carsonified<br />
</strong>#4 is almost too love for this design, but the above 3 really
gives me warm fuzzy feelings&#8230; I really like the logo, the unique
featured section (again with the transparent images) and then the
content section, which is divided into 3 equal width columns. Great
design!</p>
<p><a href="http://www.carsonified.com/" title="Carsonified" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/4-carsonified.jpg" alt="Carsonified" /></a></p>
<p><strong>5. Web Designer Wall<br />
</strong>You definitely don&#8217;t get much more unique than this design.
It&#8217;s been featured and talked about all over the net andI don&#8217;t need to
say much more about this super artistic, creative and fun design that
smashed everyone&#8217;s ideas about what Web 2.0 looks like in 2007. Expect
more designs like this one in 2008&#8230;</p>
<p><a href="http://www.webdesignerwall.com/" title="Web Designer Wall"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/5-webdesignerwall.jpg" alt="Web Designer Wall" /></a></p>
<p><strong>6. The Geniant Blog<br />
</strong>A touch of class&#8230; Very stylish and trendy, whilst very, very
appealing to the eye. I can&#8217;t find too many faults with this design -
can you?</p>
<p><a href="http://geniantsandbox.com/" title="The Geniant Blog" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/6-geniantsandbox.jpg" alt="Geniant Sandbox" /></a></p>
<p><strong>7. Mark Forrester<br />
</strong>Fun, fun, fun&#8230; That&#8217;s how I feel, when I look at Mark&#8217;s
extremely creative and colourful design. Mark is a fellow Saffa and
again, it&#8217;s great to see some of my fellow countrymen making a &#8220;mark&#8221;
(haha - excuse the pun) online.</p>
<p><a href="http://www.markforrester.co.za/" title="Mark Forrester" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/7-markforrester.jpg" alt="Mark Forrester" /></a></p>
<p><strong>8. Electric Pulp<br />
</strong>That shade of red makes this design great on its own&#8230; And the
overall colour scheme is fantastic. Combine a textured background with
some transparent content boxes, and you&#8217;ve got Adii going gaga&#8230;</p>
<p><a href="http://www.electricpulp.com/blog" title="Electric Pulp" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/8-electricpulp.jpg" alt="Electric Pulp" /></a></p>
<p><strong>9. I Heart Luxe<br />
</strong>Clean and stylish, with all the focus on the content - you don&#8217;t get much better minimalistic type designs than this&#8230;</p>
<p><a href="http://www.iheartluxe.com/" title="I Heart Luxe" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/9-iheartluxe.jpg" alt="I Heart Luxe" /></a></p>
<p><strong>10. Koller Media<br />
</strong>I don&#8217;t really have words to explain why I like and rate this
design so highly&#8230; The header is pretty cool, whilst a love the gray
shading in the sidebars.</p>
<p><a href="http://www.kollermedia.at/" title="Koller Media" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/10-kollermedia.jpg" alt="Koller Media" /></a></p>
<p><strong>11. Simply Fired<br />
</strong>The background images makes the design.</p>
<p><a href="http://www.simplyfired.com/" title="Simply Fired" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/11-simplyfired.jpg" alt="Simply Fired" /></a></p>
<p><strong>12. Elliot Jay Stocks<br />
</strong>There&#8217;s no Web 2.0 trend graphics to be seen on this very
unique, grungy design by Carsonified&#8217;s leading designer. Risky
direction to go with a new design, but Elliot pulls it off with style!<strong><br />
</strong></p>
<p><a href="http://www.elliotjaystocks.com/" title="Elliot Jay Stocks" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/12-elliotjaystocks.jpg" alt="Elliot Jay Stocks" /></a></p>
<p><strong>13. Web Worker Daily<br />
</strong>Warm fuzzies, warm fuzzies&#8230; The logo and navigation is awesome, whilst merging into the content areas beautifully!<br />
<a href="http://www.webworkerdaily.com/" title="Web Worker Daily" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/13-webworkerdaily.jpg" alt="Web Worker Daily" /></a></p>
<p><strong>14. Blog Action Day<br />
</strong>Great design for a great cause! It&#8217;s not easy making a design
based on such a shaded colour scheme, look great, but this one is
absolutely brilliant!</p>
<p><a href="http://www.blogactionday.org/" title="Blog Action Day" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/14-blogactionday.jpg" alt="Blog Action Day" /></a></p>
<p><strong>15. Jesus Rodriguez Velasco<br />
</strong>This is another design that got a lot of attention in the CSS
design galleries this year&#8230; Very unique, grungy feel and that for a
university professor - insane!!!</p>
<p><a href="http://www.jrvelasco.com/" title="Jesus Rodriguez Velasco" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/15-jrvelasco.jpg" alt="Jesus Rodriguez Velasco" /></a></p>
<p><strong>16. PSDTuts<br />
</strong>Clean &amp; Beautiful - the two best words to describe a great blog design!<br />
<a href="http://www.psdtuts.com/" title="PSDTuts" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/16-psdtuts.jpg" alt="PSDTuts" /></a></p>
<p><strong>17. TNT Pixel<br />
</strong>The header makes a real splash (or is it a bang?) and the rest
of the layout / typography is really well thought-out with clever
attention to the smaller details.</p>
<p><a href="http://www.tntpixel.com/" title="TNT Pixel" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/17-tntpixel.jpg" alt="TNT Pixel" /></a></p>
<p><strong>18. Ideate<br />
</strong>I&#8217;m not being biased, but this is the third South African
design in the Top 20 already&#8230; Doesn&#8217;t this design remind you of your
childhood days dressed up as your favourite superhero?</p>
<p><a href="http://www.ideate.co.za/" title="Ideate" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/18-ideate.jpg" alt="Ideate" /></a></p>
<p><strong>19. Dream Design<br />
</strong>Beautiful personal design by a web designer / illustrator.
Very interesting colour scheme as well - you don&#8217;t see too many purple
/ pink designs out there.</p>
<p><a href="http://www.dream-design.net/" title="Dream Design by Bel Koo" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/19-dreamdesign.jpg" alt="Dream Design" /></a></p>
<p><strong>20. Elitist Snob<br />
</strong>This design really portraits the name of the blog very well
(in my opinion), since you do get a sense of snobism / elitism when
browsing around the design. The cartoon feel is also pretty cool&#8230;</p>
<p><a href="http://www.elitistsnob.com/" title="Elitist Snob" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/20-elitistsnob.jpg" alt="Elitist Snob" /></a></p>
<p><strong>21. Challies Dot Com</strong></p>
<p><a href="http://www.challies.com/" title="Challies Dot Com" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/21-challies.jpg" alt="Challies Dot Com" /></a></p>
<p><strong>22. Bistrian Iosip</strong></p>
<p><a href="http://blog.bistrianiosip.com/" title="Bistrian Iosip" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/22-bistrianosip.jpg" alt="Bistrian Iosip" /></a></p>
<p><strong>23. Clagnut</strong></p>
<p><a href="http://www.clagnut.com/" title="Clagnut" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/23-clagnut.jpg" alt="Clagnut" /></a></p>
<p><strong>24. Simplebits<br />
</strong>Beauty in simplicity.</p>
<p><a href="http://www.simplebits.com/" title="Simplebits" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/24-simplebits.jpg" alt="Simplebits" /></a></p>
<p><strong>25. Larissa Meek<br />
</strong>A pretty design for an extremely pretty girl&#8230; I&#8217;ve previously featured Larissa in a<a href="http://www.adii.co.za/2007/08/31/larissa-meek-is-not-just-a-pretty-face/" title="Adii &gt; Larissa Meek is not just a pretty face&#8230;" target="_blank">n interview</a> on my blog.</p>
<p><a href="http://www.larissameek.com/" title="Larissa Meek" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/25-larissameek.jpg" alt="Larissa Meek" /></a></p>
<p><strong>26. Brian Jeremy<br />
</strong>A Web Designer Wal-type layout and design&#8230; Just different and great in its own way!</p>
<p><a href="http://www.brianjeremy.com/" title="Brian Jeremy" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/26-brianjeremy.jpg" alt="Brian Jeremy" /></a></p>
<p><strong>27. Massive Press<br />
</strong>Just because content is king, doesn&#8217;t mean you don&#8217;t need to
look after your blog&#8217;s design. Massive Press pulls off both the content
and design!</p>
<p><a href="http://www.massivepress.com/" title="Massive Press" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/27-massivepress.jpg" alt="Massive Press" /></a></p>
<p><strong>28. Joyeur</strong></p>
<p><a href="http://www.joyeur.com/" title="Joyeur" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/28-joyuer.jpg" alt="Joyeur" /></a></p>
<p><strong>29. The Big Noob<br />
</strong>Get lost in the blue&#8230; Great use of various different shades of blue, as well as a very prominent header image.</p>
<p><a href="http://www.thebignoob.com/" title="The Big Noob" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/29-thebignoob.jpg" alt="The Big Noob" /></a></p>
<p><strong>30. WebAppers<br />
</strong>Old school and antique meets super trendy and slick.</p>
<p><a href="http://www.webappers.com/" title="WebAppers" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/30-webappers.jpg" alt="WebAppers" /></a></p>
<p><strong>31. FreelanceSwitch</strong></p>
<p><a href="http://www.freelanceswitch.com/" title="FreelanceSwitch" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/31-freelanceswitch.jpg" alt="FreelanceSwitch" /></a></p>
<p><strong>32. Lee Munroe<br />
</strong>I love it when I can sense a designer&#8217;s personality through a
design and this unique design by Lee Munroe makes me feel that I know
just a little bit about him already&#8230;<br />
<a href="http://www.leemunroe.com/" title="Lee Munroe" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/32-leemunroe.jpg" alt="Lee Munroe" /></a></p>
<p><strong>33. Super Awesome<br />
</strong>The name says it all!</p>
<p><a href="http://sprawsm.com/" title="Super Awesome" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/33-superawesome.jpg" alt="Super Awesome" /></a></p>
<p><strong>34. Bear Skin Rug<br />
</strong>A wickedly, weird design.. But it definitely works!<br />
<a href="http://www.bearskinrug.co.uk/" title="Bear Skin Rug" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/34-bearskinrug.jpg" alt="Bear Skin Rug" /></a></p>
<p><strong>35. Ordered List</strong></p>
<p><a href="http://www.orderedlist.com/" title="Ordered List" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/35-orderedlist.jpg" alt="Ordered List" /></a></p>
<p><strong>36. Jina Bolton<br />
</strong>What does CSS expert Jina Bolton like more you think - CSS or sushi?</p>
<p><a href="http://www.jinabolton.com/" title="Jina Bolton" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/36-jinabolton.jpg" alt="Jina Bolton" /></a></p>
<p><strong>37. Yesterday Is Here</strong></p>
<p><a href="http://yesterdayishere.com/wordpress/" title="Yesterday Is Here" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/37-yesterdayishere.jpg" alt="Yesterday Is Here" /></a></p>
<p><strong>38. Blog Perfume</strong></p>
<p><a href="http://www.blogperfume.com/" title="BlogPerfume" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/38-blogperfume.jpg" alt="Blog Perfume" /></a></p>
<p><strong>39. Abduzeedo</strong></p>
<p><a href="http://www.abduzeedo.com/" title="Abduzeedo" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/39-abduzeedo.jpg" alt="Abduzeedo" /></a></p>
<p><strong>40. Rob Goodlatte</strong></p>
<p><a href="http://www.robgoodlatte.com/" title="Rob Goodlatte" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/40-robgoodlatte.jpg" alt="Rob Goodlatte" /></a></p>
<p><strong>41. Tim Ferris - Four Hour Work Week</strong></p>
<p><a href="http://fourhourworkweek.com/blog/" title="Tim Ferris - Four Hour Work Week" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/41-timferris.jpg" alt="Tim Ferris - Four Hour Work Week" /></a></p>
<p><strong>42. Tingsek</strong></p>
<p><a href="http://www.tingsek.com/" title="Tingsek" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/42-tingsek.jpg" alt="Tingsek" /></a></p>
<p><strong>43. Lokesh Dhakar</strong></p>
<p><a href="http://www.lokeshdhakar.com/" title="Lokesh Dhakar" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/43-lokeshdhakar.jpg" alt="Lokesh Dhakar" /></a></p>
<p><strong>44. One Button Mouse</strong></p>
<p><a href="http://onebuttonmouse.com/" title="One Button Mouse" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/44-onebuttonmouse.jpg" alt="One Button Mouse" /></a></p>
<p><strong>45. North x East</strong></p>
<p><a href="http://www.northxeast.com/" title="North x East" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/45-northxeast.jpg" alt="North x East" /></a></p>
<p><strong>46. Rik Catlow</strong></p>
<p><a href="http://www.rikcat.com/" title="Rik Catlow" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/46-rikcatlow.jpg" alt="Rik Catlow" /></a></p>
<p><strong>47. Bill C English</strong></p>
<p><a href="http://www.billcenglish.com/" title="Bill C English" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/47-billcenglish.jpg" alt="Bill C English" /></a></p>
<p><strong>48. Dream Scape</strong></p>
<p><a href="http://www.cslingphotography.com/blog/" title="Dream Scraper" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/48-dreamscaper.jpg" alt="Dream Scape" /></a></p>
<p><strong>49. Hyaline Skies</strong></p>
<p><a href="http://www.hyalineskies.com/" title="Hyaline Skies" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/49-hyalineskies.jpg" alt="Hyaline Skies" /></a></p>
<p><strong>50. Bad Ass Ideas</strong></p>
<p><a href="http://www.badassideas.com/blog" title="Bad Ass Ideas" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/50-badassideas.jpg" alt="Bad Ass Ideas" /></a></p>
<p><strong>51. Brian Gardner</strong></p>
<p><a href="http://www.briangardner.com/" title="Brian Gardner" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/51-briangardner.jpg" alt="Brian Gardner" /></a></p>
<p><strong>52. Lee Dodd</strong></p>
<p><a href="http://www.leedodd.com/" title="Lee Dodd" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/52-leedodd.jpg" alt="Lee Dodd" /></a></p>
<p><strong>53. Young Go Getter</strong></p>
<p><a href="http://www.younggogetter.com/" title="Young Go Getter" target="_blank"><img src="http://parandroid.com/images/web-design/53-top-blog-designs-of-2007/53-younggogetter.jpg" alt="Young Go Getter" /></a></p>
<img src ="http://www.blogjava.net/gembin/aggbug/230726.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2008-09-23 17:56 <a href="http://www.blogjava.net/gembin/archive/2008/09/23/230726.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>7个强大超酷的CSS导航菜单</title><link>http://www.blogjava.net/gembin/archive/2008/09/23/230714.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Tue, 23 Sep 2008 09:06:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2008/09/23/230714.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/230714.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2008/09/23/230714.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/230714.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/230714.html</trackback:ping><description><![CDATA[<p>新的技术在不断的发展和更新，利于我们创造更多独特和看上去很酷的菜单效果。下面是7个基于CSS创建的网页导航菜单：</p>
<h4 class="title">1) <a href="http://www.webdesignerwall.com/tutorials/advanced-css-menu/">强大的 CSS 导航菜单<br />
</a></h4>
<p>这是来自Nick La设计的一个漂亮的CSS导航菜单效果，其中详细的介绍了如何对一幅图片进行切片并把它们组合在一起，形成一个独特漂亮的菜单。<br />
需要注意的是， 这个菜单在IE6下面有一个bug，在悬浮的时候，并不能达到背景图片切换的效果，这个时候，你需要给链接属性指定mouseover来进行显示。</p>
<p><a href="http://www.webdesignerwall.com/demo/advanced-css-menu/"> Demo<br />
</a><a href="http://parandroid.com/wp-content/uploads/2008/01/am2.gif" rel="lightbox[pics-1200546695]" title="7个强大超酷的CSS导航菜单"><img src="http://parandroid.com/wp-content/uploads/2008/01/am2.gif" alt="7个强大超酷的CSS导航菜单" class="imageframe" width="417" height="150" /></a></p>
<h4 class="title">2) <a href="http://www.3point7designs.com/blog/2007/12/22/advanced-css-menu-trick/">先进的CSS导航菜单技术</a></h4>
<p>这是一个全新的菜单设计概念。通常我们设计一个导航菜单，会改变鼠标悬浮在它上面时的样式，而这个菜单是当你鼠标悬浮在当前导航链接时，改变其它链接的样式。</p>
<p><a href="http://www.3point7designs.com/web-design2.html"> Demo<br />
</a><a href="http://parandroid.com/wp-content/uploads/2008/01/am1.gif" rel="lightbox[pics-1200546695]" title="7个强大超酷的CSS导航菜单"><img src="http://parandroid.com/wp-content/uploads/2008/01/am1.gif" alt="7个强大超酷的CSS导航菜单" class="imageframe" width="416" height="173" /></a></p>
<h4 class="title">3) <a href="http://www.htmldog.com/articles/suckerfish/dropdowns/">多级下拉导航菜单</a></h4>
<p>著名的Suckerfish Dropdowns回来了，并且这次它的体积更小了，仅仅12行的Javascript代码，并且正常运行于Safari和Opera,支持多级下拉菜单。</p>
<p><a href="http://www.htmldog.com/articles/suckerfish/dropdowns/example/"> Demo<br />
</a><a href="http://parandroid.com/wp-content/uploads/2008/01/am4.gif" rel="lightbox[pics-1200546695]" title="7个强大超酷的CSS导航菜单"><img src="http://parandroid.com/wp-content/uploads/2008/01/am4.gif" alt="7个强大超酷的CSS导航菜单" class="imageframe" width="416" height="215" /></a></p>
<h4 class="title">4) <a href="http://www.cssplay.co.uk/menus/slide_fly.html">Tree Frog slide and fly 导航菜单</a></h4>
<p>树蛙菜单，光是这个名字就挺有趣的。当鼠标悬停的时候才出现二级菜单列表，而同时又支持多级的浮动菜单。</p>
<p><a href="http://www.cssplay.co.uk/menus/slide_fly.html">  </a><a href="http://parandroid.com/wp-content/uploads/2008/01/am6.gif" rel="lightbox[pics-1200546695]" title="7个强大超酷的CSS导航菜单"><img src="http://parandroid.com/wp-content/uploads/2008/01/am6.gif" alt="7个强大超酷的CSS导航菜单" class="imageframe" width="416" height="180" /></a></p>
<h4 class="title">5) <a href="http://mikecherim.com/experiments/css_menu_descriptions.php">Mike&#8217;s Experiment</a></h4>
<p>这个菜单的最大特点是当鼠标悬浮的时候，出现对导航菜单的补充说明。这一应用能精简你的导航系统，且给用户一个更直观的导航描述，让用户知道，他将点击的东西会为他带为什么样的内容，而这一切，都是纯CSS的，不需要任何Javascript.</p>
<p><a href="http://mikecherim.com/experiments/css_menu_descriptions.php">  </a><a href="http://parandroid.com/wp-content/uploads/2008/01/am5.gif" rel="lightbox[pics-1200546695]" title="7个强大超酷的CSS导航菜单"><img src="http://parandroid.com/wp-content/uploads/2008/01/am5.gif" alt="7个强大超酷的CSS导航菜单" class="imageframe" width="416" height="215" /></a></p>
<h4 class="title">6) <a href="http://www.roscripts.com/8_web_menus_you_just_can%5C%5C%27t_miss-116.html">8 个不能错过的网页导航菜单 </a></h4>
<p>这是8个基于CSS的导航菜单，它们或许并不是最特别的，却是最常用最基础的，你不能错过。<br />
<a href="http://www.roscripts.com/8_web_menus_you_just_can%5C%5C%27t_miss-116.html">  </a><a href="http://parandroid.com/wp-content/uploads/2008/01/am7.gif" rel="lightbox[pics-1200546695]" title="7个强大超酷的CSS导航菜单"><img src="http://parandroid.com/wp-content/uploads/2008/01/am7.gif" alt="7个强大超酷的CSS导航菜单" class="imageframe" width="416" height="250" /></a></p>
<h4 class="title">7) <a href="http://www.dynamicdrive.com/dynamicindex1/droptabmenu.htm">下拉选项卡的导航菜单 </a></h4>
<p>Drop Down Tabs 提供了五种不同样样式的下拉选项卡的导航单，当然，你完全可以自定义它，让它看上去更加漂亮和特别。</p>
<p><a href="http://mikecherim.com/experiments/css_menu_descriptions.php">  </a><a href="http://parandroid.com/wp-content/uploads/2008/01/am3.gif" rel="lightbox[pics-1200546695]" title="7个强大超酷的CSS导航菜单"><img src="http://parandroid.com/wp-content/uploads/2008/01/am3.gif" alt="7个强大超酷的CSS导航菜单" class="imageframe" width="416" height="180" /></a></p>
<img src ="http://www.blogjava.net/gembin/aggbug/230714.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2008-09-23 17:06 <a href="http://www.blogjava.net/gembin/archive/2008/09/23/230714.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>13个效果超酷的Javascript网页导航菜单</title><link>http://www.blogjava.net/gembin/archive/2008/09/23/230713.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Tue, 23 Sep 2008 09:05:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2008/09/23/230713.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/230713.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2008/09/23/230713.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/230713.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/230713.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: &nbsp;&nbsp;<a href='http://www.blogjava.net/gembin/archive/2008/09/23/230713.html'>阅读全文</a><img src ="http://www.blogjava.net/gembin/aggbug/230713.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2008-09-23 17:05 <a href="http://www.blogjava.net/gembin/archive/2008/09/23/230713.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>47个优秀的Ajax/CSS 表单设计资源</title><link>http://www.blogjava.net/gembin/archive/2008/09/23/230703.html</link><dc:creator>gembin</dc:creator><author>gembin</author><pubDate>Tue, 23 Sep 2008 08:40:00 GMT</pubDate><guid>http://www.blogjava.net/gembin/archive/2008/09/23/230703.html</guid><wfw:comment>http://www.blogjava.net/gembin/comments/230703.html</wfw:comment><comments>http://www.blogjava.net/gembin/archive/2008/09/23/230703.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gembin/comments/commentRss/230703.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gembin/services/trackbacks/230703.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: &nbsp;&nbsp;<a href='http://www.blogjava.net/gembin/archive/2008/09/23/230703.html'>阅读全文</a><img src ="http://www.blogjava.net/gembin/aggbug/230703.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gembin/" target="_blank">gembin</a> 2008-09-23 16:40 <a href="http://www.blogjava.net/gembin/archive/2008/09/23/230703.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>