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

<channel>
	<title>知更鸟 &#187; Web设计</title>
	<atom:link href="http://zmingcx.com/tag/web%e8%ae%be%e8%ae%a1/feed" rel="self" type="application/rss+xml" />
	<link>http://zmingcx.com</link>
	<description>崇尚专注　追求极致</description>
	<lastBuildDate>Tue, 07 Feb 2012 04:35:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>关于jQuery fadeIn() &amp; fadeOut()在IE中的问题</title>
		<link>http://zmingcx.com/about-jquery-fadein-fadeout-problem-in-ie.html</link>
		<comments>http://zmingcx.com/about-jquery-fadein-fadeout-problem-in-ie.html#comments</comments>
		<pubDate>Tue, 26 Jul 2011 09:56:36 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=4472</guid>
		<description><![CDATA[使用用jQuery  fadeIn()可以实现淡入效果，比如我目前用的主题侧边TAB菜单，就具有此效果，但是在IE浏览器下模样大变，文字周围总是有那么一小段时间显示重影，虽然通过给其中的元素加个背景色，可一定缓解问题，但总是不理想，转老外的一篇相关文章，研究研究，估计都不会达到其它浏览器的效果。 I’ve noticed that when I use the jQuery .fadeIn() or .fade­Out() method I see ugly pix­e­lated text in Inter­net Explorer after the ani­ma­tion has com­pleted. This seems to be related to an issue with an IE spe­cific style fil­ter called clearType. To solve the prob­lem, you need to remove the clearType fil­ter after [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>使用用jQuery  fadeIn()可以实现淡入效果，比如我目前用的主题侧边TAB菜单，就具有此效果，但是在IE浏览器下模样大变，文字周围总是有那么一小段时间显示重影，虽然通过给其中的元素加个背景色，可一定缓解问题，但总是不理想，转老外的一篇相关文章，研究研究，估计都不会达到其它浏览器的效果。</p></blockquote>
<p>I’ve noticed that when I use the jQuery <strong>.fadeIn()</strong> or <strong>.fade­Out()</strong> method I see ugly pix­e­lated text in Inter­net Explorer after the ani­ma­tion has com­pleted. This seems to be related to an issue with an IE spe­cific style fil­ter called <a href="http://www.microsoft.com/typography/cleartype/tuner/tune.aspx" rel="nofollow">clearType</a>. To solve the prob­lem, you need to remove the clearType fil­ter after your jQuery ele­ment has faded in. There are a few ways to do this:</p>
<h3><a href="http://www.kevinleary.net/wp-samples/ie-fade-problems.php">Pre­view / Sam­ple / Demonstration</a></h3>
<p>&nbsp;</p>
<h3>3 Ways to Fix The Issue</h3>
<h4>1. Add a Back­ground Color</h4>
<p>Set a back­ground color with CSS on the ele­ment that is fad­ing in or out. This is the most basic way to solve the problem.</p>
<h4>2. Remove the clearType Filter</h4>
<p>After fad­ing in an ele­ment you can add this sim­ple call­back func­tion to fix the bug.</p>
<div class="dp-highlighter">
<ol class="dp-c">
<li class="alt"><span><span>$('#fadingElement').fadeIn(2000, </span><span class="keyword">function</span><span>(){   </span></span></li>
<li><span>       </span><span class="keyword">this</span><span>.style.removeAttribute('filter');   </span></li>
<li class="alt"><span>});  </span></li>
</ol>
</div>
<h4>3. Use a Cus­tom fadeIn/Out Method</h4>
<p>This method serve’s as a replace­ment for the built-in <strong>fadeIn()</strong> &amp; <strong>fade­Out()</strong> meth­ods for jQuery.</p>
<div class="dp-highlighter">
<ol class="dp-c">
<li class="alt"><span><span>(</span><span class="keyword">function</span><span>($) {   </span></span></li>
<li><span>    $.fn.customFadeIn = </span><span class="keyword">function</span><span>(speed, callback) {   </span></li>
<li class="alt"><span>        $(</span><span class="keyword">this</span><span>).fadeIn(speed, </span><span class="keyword">function</span><span>() {   </span></li>
<li><span>            </span><span class="keyword">if</span><span>(jQuery.browser.msie)   </span></li>
<li class="alt"><span>                $(</span><span class="keyword">this</span><span>).get(0).style.removeAttribute('filter');   </span></li>
<li><span>            </span><span class="keyword">if</span><span>(callback != undefined)   </span></li>
<li class="alt"><span>                callback();   </span></li>
<li><span>        });   </span></li>
<li class="alt"><span>    };   </span></li>
<li><span>    $.fn.customFadeOut = </span><span class="keyword">function</span><span>(speed, callback) {   </span></li>
<li class="alt"><span>        $(</span><span class="keyword">this</span><span>).fadeOut(speed, </span><span class="keyword">function</span><span>() {   </span></li>
<li><span>            </span><span class="keyword">if</span><span>(jQuery.browser.msie)   </span></li>
<li class="alt"><span>                $(</span><span class="keyword">this</span><span>).get(0).style.removeAttribute('filter');   </span></li>
<li><span>            </span><span class="keyword">if</span><span>(callback != undefined)   </span></li>
<li class="alt"><span>                callback();   </span></li>
<li><span>        });   </span></li>
<li class="alt"><span>    };   </span></li>
<li><span>})(jQuery);  </span></li>
</ol>
</div>
<p>After you add this method to your JavaScript, change your <strong>‘fade­Out’</strong> to <strong>‘cus­tom­Fade­Out’</strong> and your <strong>‘fadeIn’</strong> to <strong>‘cus­tom­FadeIn’</strong>. See a sam­ple of this method on the <a href="http://www.kevinleary.net/wp-samples/ie-fade-problems.php">demo page</a>. <strong>Thanks to Ben­jamin Novakovic for writ­ing this jQuery plugin</strong></p>
<h3>Ugly Tran­si­tions on Ani­mated Elements</h3>
<p>When you ani­mate any­thing in IE there is an ugly tran­si­tion effect that occurs before the fix is applied. There’s no way to pre­vent or fix clearType while the fade occurs. A work-around is to fade some­thing else, like a &lt;div&gt; on top that fades in, rather than your text content.</p>
<h3>Advanced Sce­nar­ios</h3>
<p>There are more IE related issues that peo­ple have men­tioned see­ing in advanced setups as well.</p>
<blockquote><p>I found that the answer was to set the z-index. I have a stack of absolutely posi­tioned divs and wanted to fade between them. The only way I could get IE8 to han­dle the fades nicely was to set the z-index of the ele­ment to be faded in higher than the ele­ment to be faded out i.e.:</p>
<div class="dp-highlighter">
<ol class="dp-c">
<li class="alt"><span><span>$('#fadeoutdiv').css({zIndex:99}).fadeOut(2000);   </span></span></li>
<li><span>$('#fadeindiv').css({zIndex:90}).fadeOut(2000);  </span></li>
</ol>
</div>
<p>Thanks to Al Flemming</p></blockquote>
<p>A demon­stra­tion for Al’s fix has been added to the demo page<br />
Resources</p>
<p>jQuery in Action: If you find your­self fre­quently using jQuery in your projects I would highly rec­om­mend check­ing out this book. I’ve read this and also Learn­ing jQuery 1.3 and have found jQuery in Action to be clearer, more straight for­ward and more powerful.<br />
jQuery IE Fade Test<br />
jQuery Ref­er­ence Guide jQuery fadeIn() &amp; fadeOut(): Problems in Internet Explorer<br />
jQuery fadeIn/fadeOut IE Cleartype Glitch</p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/about-jquery-fadein-fadeout-problem-in-ie.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>40个值得关注的网页设计</title>
		<link>http://zmingcx.com/40-web-design-concern.html</link>
		<comments>http://zmingcx.com/40-web-design-concern.html#comments</comments>
		<pubDate>Thu, 10 Mar 2011 05:12:11 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=4237</guid>
		<description><![CDATA[I am continuing Top DeviantArtist worth watching series and now I stopped to the best web designers I could find. I only listed those artists, whom layouts I found to be really unique and inspiring, taking classical web design actually to the next level. These layouts are really artworks with amazing details, You usually don’t [...]]]></description>
			<content:encoded><![CDATA[<p>I am continuing Top DeviantArtist worth watching series and now I  stopped to the best web designers I could find. I only listed those  artists, whom layouts I found to be really unique and inspiring, taking  classical web design actually to the next level. These layouts are  really artworks with amazing details, You usually don’t see browsing  through the web. Consider this article as inspirational article now and  if You choose to watch those artists, then inspiration blasts in long  term. At first I wanted to pick only 2 website examples from each  artists, but there was several so amazing webdesigns, where I couldn’t  stop and picked 3 or 4 examples. Enjoy this list, hope this will help to  get inspired in regular basis!</p>
<p>&nbsp;</p>
<p><a title="40 Web Design Artists And 102 Websites Worth Watching" href="http://www.1stwebdesigner.com/inspiration/40-web-design-artists-and-102-websites-worth-watching/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/bigthumbs/1-100/preview-web-design-artists-websites-worth-watching.jpg" alt="40 Web Design Artists And 102 Websites Worth Watching" width="570" /></a></p>
<p>1. <a href="http://elusive.deviantart.com/gallery/#Interface-Designs" target="_blank">Elusive</a> – (22), from Canada.</p>
<p><a href="http://elusive.deviantart.com/art/Avose-92707298" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/avose-website-inspiration.jpg" alt="avose-website-inspiration" width="570" height="400" /></a></p>
<p><a href="http://elusive.deviantart.com/art/Onyx-83107417" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/onyx-website-inspiration.jpg" alt="onyx-website-inspiration" width="570" height="400" /></a></p>
<p><a href="http://elusive.deviantart.com/art/Relic-94737054" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/relic-website-inspiration.jpg" alt="relic-website-inspiration" width="570" height="400" /></a></p>
<p>2. <a href="http://ecp-pro.deviantart.com/gallery/" target="_blank">ECP-Pro</a> – Kim Roar Dag Steen Trollsås (18), from Norway</p>
<p><a href="http://ecp-pro.deviantart.com/art/Eye-For-Art-79205202" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/eye-for-art-web-design-inspiration.jpg" alt="Eye For Art-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://ecp-pro.deviantart.com/art/Creative-Staff-106227992" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/creative-staff-website-design-inspiration.jpg" alt="Creative Staff-website-design-inspiration" width="570" height="400" /></a></p>
<p>3. <a href="http://fel1x.deviantart.com/gallery/#Webdesign" target="_blank">Fel1x</a> – Felix Valentin, from Germany</p>
<p><a href="http://fel1x.deviantart.com/art/its-me-again-57586656" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/its-me-again-web-design-inspiration.jpg" alt="its me again-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://fel1x.deviantart.com/art/New-Valentin-49012617" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/new-valentin-web-design-inspiration.jpg" alt="New Valentin-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://fel1x.deviantart.com/art/showcase-VALENTIN-66249980" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/showcase-web-design-inspiration.jpg" alt="showcase web-design-inspiration" width="570" height="400" /></a></p>
<p>4. <a href="http://nikeos.deviantart.com/gallery/" target="_blank">Nikeos</a> – (19), from Israel</p>
<p><a href="http://nikeos.deviantart.com/art/Airborne-Portfolio-Ex-54558160" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/airborne-portfolio-ex-design-inspiration.jpg" alt="Airborne Portfolio Ex design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://nikeos.deviantart.com/art/Hardcore-Designers-2008-Finale-74270673" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/hardcore-designers-2008-design-inspiration.jpg" alt="Hardcore Designers 2008 design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://nikeos.deviantart.com/art/Spice-Dancers-Interface-62507613" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/spice-dancers-interface-design-inspiration.jpg" alt="Spice Dancers Interface design-inspiration" width="570" height="400" /></a></p>
<p>5. <a href="http://jk89.deviantart.com/gallery/" target="_blank">JK89</a> – Justinas Krasuckas, from Lithuania</p>
<p><a href="http://jk89.deviantart.com/art/Shininess-78089288" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/shininess-web-design-inspiration.jpg" alt="shininess-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://jk89.deviantart.com/art/Imago-62914298" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/image-web-design-inspiration.jpg" alt="image-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://jk89.deviantart.com/art/Apple-design-50205008" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/apple-web-design-inspiration.jpg" alt="apple-web-design-inspiration" width="570" height="400" /></a></p>
<p>6. <a href="http://blind91.deviantart.com/gallery/" target="_blank">blind91</a> – Sebastian (18), from Germany</p>
<p><a href="http://blind91.deviantart.com/art/architecture-81076199" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/architecture-web-design-inspiration.jpg" alt="architecture-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://blind91.deviantart.com/art/designer-s-lounge-53200447" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/designer-s-lounge-design-inspiration.jpg" alt="designer s lounge design inspiration" width="570" height="400" /></a></p>
<p>7. <a href="http://kakkr.deviantart.com/gallery/" target="_blank">kakkr</a> – from United Kingdom</p>
<p><a href="http://kakkr.deviantart.com/art/ichibo-40831735" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/ichibo-web-design-inspiration.jpg" alt="ichibo web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://kakkr.deviantart.com/art/Converzon-54357440" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Converzon web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://kakkr.deviantart.com/art/Portfolio-v1-41906281" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Portfolio v1 web-design-inspiration" width="570" height="400" /></a></p>
<p>8. <a href="http://mindfuckx.deviantart.com/gallery/#webdesign" target="_blank">mindfuckx</a> – Jan Van Lysebettens (24), from Belgium</p>
<p><a href="http://mindfuckx.deviantart.com/art/Motorola-Aura-101622243" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="motorola-aura-website-inspiration" width="570" height="400" /></a></p>
<p><a href="http://mindfuckx.deviantart.com/art/Imagine-Air-88475076" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Imagine Air web-design-inspiration" width="570" height="400" /></a></p>
<p>9. <a href="http://nodethirtythree.deviantart.com/gallery/" target="_blank">nodethirtythree</a> – from United States</p>
<p><a href="http://nodethirtythree.deviantart.com/art/Art-themed-template-for-4T-67606862" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Art themed template web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://nodethirtythree.deviantart.com/art/Template-6-for-4T-92407291" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/green-brown-web-design-inspiration.jpg" alt="green-brown-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://nodethirtythree.deviantart.com/art/Template-1-for-4T-80302399" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/template-1-for-4t-web-design-inspiration.jpg" alt="Template 1 for 4T web-design-inspiration" width="570" height="400" /></a></p>
<p>10. <a href="http://tehacesequence.deviantart.com/gallery/" target="_blank">tehacesequence</a> – Marcin (25), from Poland</p>
<p><a href="http://tehacesequence.deviantart.com/art/121-made-in-eu-114916148" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/car-web-design-inspiration.jpg" alt="car-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://tehacesequence.deviantart.com/art/oldtimer-95517936" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/oldtimer-web-design-inspiration.jpg" alt="oldtimer web-design-inspiration" width="570" height="400" /></a></p>
<p>11. <a href="http://pixelbudah.deviantart.com/gallery/#Layout-design" target="_blank">Pixelbudah</a> – Oasim Karmieh (28), Romania</p>
<p><a href="http://pixelbudah.deviantart.com/art/Finance-Website-43927887" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/colorful-business-webdesign-inspiration.jpg" alt="Colorful Business webdesign-inspiration" width="570" height="400" /></a></p>
<p><a href="http://pixelbudah.deviantart.com/art/Finance-Website-43927887" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/finance-website-design-inspiration.jpg" alt="Finance Website design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://pixelbudah.deviantart.com/art/Hussle-Hard-Entertainment-104430239" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Hussle Hard Entertainment design-inspiration" width="570" height="400" /></a></p>
<p>12. <a href="http://tit0.deviantart.com/gallery/#Web-design" target="_blank">TIT0</a> – Alexandr (24), from Russia</p>
<p><a href="http://tit0.deviantart.com/art/ACCSite-49986990" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="ACCSite web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://tit0.deviantart.com/art/Detskiy-54702740" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="children-website-inspiration" width="570" height="400" /></a></p>
<p>13. <a href="http://depthskins.deviantart.com/gallery/" target="_blank">depthskins</a> – Damian Madray (23), from Canada</p>
<p>Very loooooooooooong and beautiful website artwork – be sure to check it out in fullscreen.</p>
<p><a href="http://depthskins.deviantart.com/art/Depthskins-Design-Studio-77237596" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/depthskins-design-studio-inspiration.jpg" alt="Depthskins Design Studio inspiration" width="570" height="400" /></a></p>
<p><a href="http://depthskins.deviantart.com/art/Depthskins-Realigned-113408652" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/depthskins-realigned.jpg" alt="depthskins-realigned" width="570" height="400" /></a></p>
<p>14. <a href="http://sone-pl.deviantart.com/gallery/#Web" target="_blank">sone-pl </a> – Krzysztof Kolatorski (32), from Poland</p>
<p><a href="http://sone-pl.deviantart.com/art/Simple-Web-Page-Design-68033572" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/simple-web-page-design.jpg" alt="Simple Web Page Design" width="570" height="400" /></a></p>
<p><a href="http://sone-pl.deviantart.com/art/My-portfolio-6833407" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/portfolio-web-design-inspiration.jpg" alt="portfolio-web-design-inspiration" width="570" height="400" /></a></p>
<p>15. <a href="http://gregbike.deviantart.com/gallery/" target="_blank">Gregbike</a> – Grzegorz Gawlik (22), from Poland</p>
<p><a href="http://gregbike.deviantart.com/art/TwojaBateria-pl-53636119" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/baterry-website-inspiration.jpg" alt="baterry-website-inspiration" width="570" height="400" /></a></p>
<p><a href="http://gregbike.deviantart.com/art/SMS-Machine-Tools-42613341" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/sms-website-project-presentation.jpg" alt="sms website project presentation" width="570" height="400" /></a></p>
<p>16. <a href="http://l-a-m-p-e.deviantart.com/gallery/" target="_blank">l-a-m-p-e</a> – Philipp Lampe (20), from Germany</p>
<p><a href="http://l-a-m-p-e.deviantart.com/art/der-lampe-de-51600856" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/der-lampe-website-design.jpg" alt="der lampe website-design" width="570" height="400" /></a></p>
<p><a href="http://l-a-m-p-e.deviantart.com/art/eLab-96719072" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/elab-design-inspiration.jpg" alt="eLab design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://l-a-m-p-e.deviantart.com/art/INSPi-RED-57160034" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="inspired-web-design-inspiration" width="570" height="400" /></a></p>
<p>17. <a href="http://alexdesigns.deviantart.com/gallery/#Interfaces" target="_blank">alexdesigns</a> (19)</p>
<p><a href="http://alexdesigns.deviantart.com/art/GRAPHITE-97747507" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="GRAPHITE design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://alexdesigns.deviantart.com/art/GRAPHWARE-74447120" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="GRAPHWARE design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://alexdesigns.deviantart.com/art/visi-on-81477856" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="vision-webdesign-inspiration" width="570" height="400" /></a></p>
<p>18. <a href="http://frostenblade.deviantart.com/gallery/#Web-Design" target="_blank">Frostenblade</a> –  (19), from Singapore</p>
<p><a href="http://frostenblade.deviantart.com/art/JD-Style-Jokiam-Site-66234549" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="JD Style design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://frostenblade.deviantart.com/art/Nicola-nikolic-83778287" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Nicola nikolic-website-inspiration" width="570" height="400" /></a></p>
<p><a href="http://frostenblade.deviantart.com/art/SUPERFLASH-Absolut-Trance-69545690" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="SUPERFLASH Absolut Trance inspiration" width="570" height="400" /></a></p>
<p>19. <a href="http://jedi88.deviantart.com/gallery/" target="_blank">Jedi88</a> – Dennis, from Germany</p>
<p><a href="http://jedi88.deviantart.com/art/Cryingwolves-FUTURE-DESIGN-42561241" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Cryingwolves FUTURE DESIGN" width="570" height="400" /></a></p>
<p><a href="http://jedi88.deviantart.com/art/Cryingwolves-v5-72639953" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="crywolf-webdesign-inspiration" width="570" height="400" /></a></p>
<p>20. <a href="http://jimmybjorkman.deviantart.com/gallery/#Weblayouts" target="_blank">Jimmybjorkman </a> – Jimmy Björkman (18), from Sweden</p>
<p><a href="http://jimmybjorkman.deviantart.com/art/Artcurl-Website-Mockup-89505869" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Artcurl Website Mockup inspiration" width="570" height="400" /></a></p>
<p><a href="http://jimmybjorkman.deviantart.com/art/Just-another-version-61237099" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Just another version inspiration" width="570" height="400" /></a></p>
<p><a href="http://jimmybjorkman.deviantart.com/art/Tutdesk-com-Site-59157627" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Tutdesk com-inspiration" width="570" height="400" /></a></p>
<p>[ad#bildes-ads]</p>
<p>21. <a href="http://ld-sign.deviantart.com/gallery/" target="_blank">Ld-sign</a> – Sascha Zemke (20), from Germany</p>
<p><a href="http://ld-sign.deviantart.com/art/Ld-siGn-de-Version-6-41965907" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/natural-website-design-inspiration.jpg" alt="natural-website-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://ld-sign.deviantart.com/art/Nature-40259510" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/nature-digital-art-design-inspiration.jpg" alt="Nature digital-art-design-inspiration" width="570" height="400" /></a></p>
<p>22. <a href="http://pho3nix-bf.deviantart.com/gallery/" target="_blank">Pho3nix-bf</a> – Lucas (28), from Poland</p>
<p><a href="http://pho3nix-bf.deviantart.com/art/gamemusic-pl-109007878" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/gamemusic-design-inspiration.jpg" alt="gamemusic-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://pho3nix-bf.deviantart.com/art/InvestLink-Layout-85063671" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/investlink-layout-design-inspiration.jpg" alt="InvestLink Layout design-inspiration" width="570" height="400" /></a></p>
<p>23. <a href="http://juliusx.deviantart.com/gallery/" target="_blank">JuliusX</a> – Ali (20), from United States</p>
<p><a href="http://juliusx.deviantart.com/art/Kenrico-Redone-110159264" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/kenrico-redone-design-inspiration.jpg" alt="Kenrico Redone design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://juliusx.deviantart.com/art/Naruja-V2-107577966" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/naruja-web-design-inspiration.jpg" alt="naruja-web-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://juliusx.deviantart.com/art/PS3-Design-107576679" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/ps3-design-web-inspiration.jpg" alt="ps3-design-web-inspiration" width="570" height="400" /></a></p>
<p>24. <a href="http://osec.deviantart.com/gallery/#Webdesigns" target="_blank">Osec</a> – Daryl Ginn (19), from United Kingdom</p>
<p><a href="http://osec.deviantart.com/art/CAJONO-Interface-62902828" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/cajono-interface-webdesign-inspiration.jpg" alt="CAJONO Interface webdesign-inspiration" width="570" height="400" /></a></p>
<p><a href="http://osec.deviantart.com/art/ercsonas-88854091" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/ercsonas-webdesign-inspiration.jpg" alt="ercsonas webdesign-inspiration" width="570" height="400" /></a></p>
<p><a href="http://osec.deviantart.com/art/Fixed-Adrenaline-Temp-76474375" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/fixed-adrenaline-temp-inspiration.jpg" alt="Fixed Adrenaline Temp-inspiration" width="570" height="400" /></a></p>
<p><a href="http://osec.deviantart.com/art/yakovae-69476041" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/imagination-is-creation-inspiration.jpg" alt="imagination-is-creation-inspiration" width="570" height="400" /></a></p>
<p>25. <a href="http://nas-wd.deviantart.com/gallery/" target="_blank">Nas-Wd</a> – Nasir Wadood (24), from Pakistan</p>
<p><a href="http://nas-wd.deviantart.com/art/Chauffeur-Service-Website-107161878" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/chauffeur-service-website-inspiration.jpg" alt="Chauffeur Service Website inspiration" width="570" height="400" /></a></p>
<p><a href="http://nas-wd.deviantart.com/art/NEIMS-112618827" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/neims-webdesign-inspiration.jpg" alt="NEIMS webdesign-inspiration" width="570" height="400" /></a></p>
<p>26. <a href="http://zee7.deviantart.com/gallery/" target="_blank">zee7</a> – Zulal (20), from Pakistan</p>
<p><a href="http://zee7.deviantart.com/art/jill-103600475" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/jill-wage-design-inspiration.jpg" alt="jill wage-design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://zee7.deviantart.com/art/sports-sensing-98036139" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/sports-sensing-design-inspiration.jpg" alt="sports sensing design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://zee7.deviantart.com/art/teomedia-76271770" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/teomedia-webdesign-inspiration.jpg" alt="teomedia webdesign-inspiration" width="570" height="400" /></a></p>
<p><a href="http://zee7.deviantart.com/art/wonderland-photography-101475521" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/wonderland-photography-inspiration.jpg" alt="wonderland photography inspiration" width="570" height="400" /></a></p>
<p>27. <a href="http://zhyphyr.deviantart.com/gallery/#Web" target="_blank">Zhyphyr</a> – Paris Miguez (28), from Spain</p>
<p><a href="http://zhyphyr.deviantart.com/art/Design-Critique-subpage-111977335" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Design Critique subpage design" width="570" height="400" /></a></p>
<p><a href="http://zhyphyr.deviantart.com/art/uluWatu-multimedia-86224338" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="uluWatu multimedia design-inspiration" width="570" height="400" /></a></p>
<p>28. <a href="http://pazdan.deviantart.com/gallery/" target="_blank">Pazdan</a> – Tomek (22), from Poland</p>
<p><a href="http://pazdan.deviantart.com/art/Personal-Portfolio-56073995" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/personal-portfolio-design-inspiration.jpg" alt="Personal Portfolio design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://pazdan.deviantart.com/art/Premium-Club-94238098" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/premium-club-design-inspiration.jpg" alt="Premium Club design-inspiration" width="570" height="400" /></a></p>
<p>29. <a href="http://g30dud3.deviantart.com/gallery/" target="_blank">G30dud3</a> – George English (16), from United Kingdom</p>
<p><a href="http://g30dud3.deviantart.com/art/Dark-gallery-51308624" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/dark-gallery-webdesign-inspiration.jpg" alt="dark-gallery-webdesign-inspiration" width="570" height="400" /></a></p>
<p><a href="http://g30dud3.deviantart.com/art/DesignCritique-Submission-112472984" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/design-critique-webdesign-inspiration.jpg" alt="design-critique-webdesign-inspiration" width="570" height="400" /></a></p>
<p><a href="http://g30dud3.deviantart.com/art/E27-English-Web-Design-77540373" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/english-web-design-inspiration.jpg" alt="english-web-design-inspiration" width="570" height="400" /></a></p>
<p>30. <a href="http://turokfreak.deviantart.com/gallery/#Design-Interface" target="_blank">TurokFreak</a> – Evertt De Sousa  (25), from Brazil</p>
<p><a href="http://turokfreak.deviantart.com/art/Indian-Costumes-63828557" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/indian-costumes-design-inspiration.jpg" alt="Indian Costumes design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://turokfreak.deviantart.com/art/mp3portal-55025524" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/mp3portal-design-tutorial.jpg" alt="mp3portal design-tutorial" width="570" height="400" /></a></p>
<p>31. <a href="http://frose.deviantart.com/" target="_blank">Frose</a> – (20), from Germany</p>
<p><a href="http://frose.deviantart.com/art/increase-95893633" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/increase-design-inspiration.jpg" alt="increase design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://frose.deviantart.com/art/vanci-78123717" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/natural-web-design-vanci.jpg" alt="natural-web-design-vanci" width="570" height="400" /></a></p>
<p><a href="http://frose.deviantart.com/art/naturluv-80886272" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/naturluv-webdesign-inspiration.jpg" alt="naturluv webdesign-inspiration" width="570" height="400" /></a></p>
<p>32. <a href="http://uribaani.deviantart.com/gallery/#Designs" target="_blank">Uribaani</a> – Miika Ahvenjärvi, from Finland</p>
<p><a href="http://uribaani.deviantart.com/art/Minimalistic-Portfolio-76732859" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/minimalistic-portfolio-inspiration.jpg" alt="Minimalistic Portfolio inspiration" width="570" height="400" /></a></p>
<p><a href="http://uribaani.deviantart.com/art/Personal-Portfolio-v-8-69074894" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/personal-portfolio-secon-inspiration.jpg" alt="personal-portfolio-secon-inspiration" width="570" height="400" /></a></p>
<p><a href="http://uribaani.deviantart.com/art/Personal-Portfolio-2nd-edition-82428656" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/personal-portfolio-website-design.jpg" alt="personal-portfolio-website-design" width="570" height="400" /></a></p>
<p>33. <a href="http://cc-designs.deviantart.com/gallery/#Web-Interfaces" target="_blank">CC-Designs</a> – (18), from Germany</p>
<p><a href="http://cc-designs.deviantart.com/art/All-that-Jazz-71661198" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/all-that-jazz-inspirational.jpg" alt="All that Jazz inspirational" width="570" height="400" /></a></p>
<p><a href="http://cc-designs.deviantart.com/art/Samba-Portfolio-Plus-58183490" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Samba Portfolio Plus inspiration" width="570" height="400" /></a></p>
<p>34. <a href="http://carl06.deviantart.com/gallery/" target="_blank">Carl06</a> – Carl (19), from Germany</p>
<p><a href="http://carl06.deviantart.com/art/Fahrschule-Kriegel-113235857" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="car-website-design-inspirational" width="570" height="400" /></a></p>
<p><a href="http://carl06.deviantart.com/art/Sony-Ericsson-W810i-Interface-63490136" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="Sony Ericsson W810i Interface" width="570" height="400" /></a></p>
<p>35. <a href="http://koenigpersoenlich.deviantart.com/gallery/#Weblayouts" target="_blank">Koenigpersoenlich </a> – (16), from United States</p>
<p><a href="http://koenigpersoenlich.deviantart.com/art/auroradesigns-103490749" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="auroradesigns website-design" width="570" height="400" /></a></p>
<p><a href="http://koenigpersoenlich.deviantart.com/art/PhotoCom-102614323" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="PhotoCom website-design" width="570" height="400" /></a></p>
<p>36. <a href="http://nonlin3.deviantart.com/gallery/#Interfaces" target="_blank">Nonlin3</a> – Martin, from Poland</p>
<p><a href="http://nonlin3.deviantart.com/art/InterKor-Concept-0-5-111886043" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="interkor-design-concept" width="570" height="400" /></a></p>
<p><a href="http://nonlin3.deviantart.com/art/My-portfolio-74061361" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="portfolio-website-design" width="570" height="400" /></a></p>
<p>37. <a href="http://rheyzer.deviantart.com/gallery/" target="_blank">Rheyzer</a> – Reynan Alibuyog (23), from Philippines</p>
<p><a href="http://rheyzer.deviantart.com/art/my-little-green-store-1-78730781" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="my little green store 1 webdesign-inspiration" width="570" height="400" /></a></p>
<p><a href="http://rheyzer.deviantart.com/art/pramari-com-blockwork-mockup-54452599" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/themes/1stwd/img/grey.gif" alt="pramari org blockwork mockup design" width="570" height="400" /></a></p>
<p>38. <a href="http://outlines.deviantart.com/gallery/" target="_blank">Outlines</a> – Dimiter Tzankov, from Bulgaria</p>
<p><a href="http://outlines.deviantart.com/art/becrazed1-82125884" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/becrazed1-website-design.jpg" alt="becrazed1 website-design" width="570" height="400" /></a></p>
<p><a href="http://outlines.deviantart.com/art/Knassar-5-80870348" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/knassar-5-website-design.jpg" alt="Knassar 5-website-design" width="570" height="400" /></a></p>
<p><a href="http://outlines.deviantart.com/art/triv-97624586" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/triv-website-design.jpg" alt="triv website-design" width="570" height="400" /></a></p>
<p>39. <a href="http://sansana.deviantart.com/gallery/#Webdesign" target="_blank">Sansana</a> – Daria Michalska (20), from Poland</p>
<p><a href="http://sansana.deviantart.com/art/Coffee-Company-99209655" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/coffee-company-design-inspiration.jpg" alt="Coffee Company design-inspiration" width="570" height="400" /></a></p>
<p><a href="http://sansana.deviantart.com/art/Last-Odyssey-43429284" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/last-odyssey-website-design.jpg" alt="Last Odyssey website-design" width="570" height="400" /></a></p>
<p><a href="http://sansana.deviantart.com/art/Musicland-110470164" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/musicland-website-design.jpg" alt="musicland-website-design" width="570" height="400" /></a></p>
<p>40. <a href="http://niponwar.deviantart.com/gallery/#WebDesign" target="_blank">Niponwar</a> – Vladimir Chernov (19), from Canada</p>
<p><a href="http://niponwar.deviantart.com/art/KMARO-Rebuilt-Dark-65279427" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/kmaro-rebuilt-portfolio-page.jpg" alt="KMARO Rebuilt portfolio-page" width="570" height="400" /></a></p>
<p><a href="http://niponwar.deviantart.com/art/Pulpix-113305885" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/pulpix-creative-website-design.jpg" alt="pulpix-creative-website-design" width="570" height="400" /></a></p>
<p><a href="http://niponwar.deviantart.com/art/se-nse-76627130" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/03/sense-website-design.jpg" alt="sense-website-design" width="570" height="400" /></a></p>
<p>Ok, so this is pretty much it – at least for me this collection is in  gold value, I just love web design, though I am lacking time, but in  future, I’m sure I’ll release some good templates,themes and so. Enjoy,  get inspired and watch those artists!</p>
<p>Add some more links, if You know very good web designers, who are not on this list!</p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/40-web-design-concern.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Web设计中体现出来的浓重的苹果风格</title>
		<link>http://zmingcx.com/web-design-reflected-strong-apple-style.html</link>
		<comments>http://zmingcx.com/web-design-reflected-strong-apple-style.html#comments</comments>
		<pubDate>Thu, 10 Mar 2011 02:00:20 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple风格]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=4177</guid>
		<description><![CDATA[优雅的设计贯串苹果所有的产品，也包括网站，不仅苹果自己的网站，世界上有无数模仿苹果的网站设计，然而是什么构成了苹果式网站设计风格？浅淡 的配色，大 面积留白，清晰统一的导航，雅致的图标，还有，拒绝使用 Flash，本文分析了 Web 设计中苹果风的构成元素，并提供了大量苹果风 Web 设计案例供大家欣赏。 苹果风构成元素 浅色系与微妙的渐变色 留白，留白 清晰明快的字体 产品图片充满美感 雅致的图标 干净整洁的网格布局 清晰，友好，一致的导航 产品功能的介绍结合非常出色的图片，视频 小而清晰的字体 靠明显的对比效果引起注意 简洁的指南 不使用 Flash 苹果风 Web 设计欣赏之一：苹果家族 Apple Developer Apple Store Apple Mac Apple iPhone Apple Support 苹果风 Web 设计欣赏之二：仿苹果家族 1. Panic Coda 这是一个非常受欢迎的 Mac 代码编辑器 2. AteBits 简单就是美 3. Cultured Code 漂亮的图标贯串始终，对内容的组织很有效 4. Mac Rabbit 灰白色系黑渐变，雅致的图标 [...]]]></description>
			<content:encoded><![CDATA[<p>优雅的设计贯串苹果所有的产品，也包括网站，不仅苹果自己的网站，世界上有无数模仿苹果的网站设计，然而是什么构成了苹果式网站设计风格？浅淡 的配色，大 面积留白，清晰统一的导航，雅致的图标，还有，拒绝使用 Flash，本文分析了 Web 设计中苹果风的构成元素，并提供了大量苹果风  Web 设计案例供大家欣赏。</p>
<p>苹果风构成元素</p>
<p><strong>浅色系与微妙的渐变色<br />
</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151223632.jpg" border="1" alt="" /></p>
<p><strong>留白，留白</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151254150.jpg" border="1" alt="" /></p>
<p><strong>清晰明快的字体</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151301813.jpg" border="1" alt="" /></p>
<p><strong>产品图片充满美感</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151303798.jpg" border="1" alt="" /></p>
<p><strong>雅致的图标</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151306451.jpg" border="1" alt="" /></p>
<p><strong>干净整洁的网格布局</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151308309.jpg" border="1" alt="" /></p>
<p><strong>清晰，友好，一致的导航</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151312250.jpg" border="1" alt="" /></p>
<p><strong>产品功能的介绍结合非常出色的图片，视频</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151317262.jpg" border="1" alt="" /></p>
<p><strong>小而清晰的字体</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151322131.jpg" border="1" alt="" /></p>
<p><strong>靠明显的对比效果引起注意</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151329362.jpg" border="1" alt="" /></p>
<p><strong>简洁的指南</strong></p>
<p><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151339141.jpg" border="1" alt="" /></p>
<p><strong>不使用 Flash<br />
</strong><br />
<img src="http://apple.tgbus.com/UploadFiles/201003/20100323151350968.jpg" border="1" alt="" /></p>
<p><strong>苹果风 Web 设计欣赏之一：苹果家族 </strong><a href="http://developer.apple.com/"><strong>Apple Developer</strong></a></p>
<p><a href="http://developer.apple.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151355824.jpg" border="1" alt="" hspace="0" width="570" height="357" /></a></p>
<p><a href="http://store.apple.com/us"><strong>Apple Store</strong></a></p>
<p><a href="http://store.apple.com/us"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151401256.jpg" border="1" alt="" hspace="0" width="570" height="372" /></a></p>
<p><a href="http://www.apple.com/mac/"><strong>Apple Mac</strong></a></p>
<p><a href="http://www.apple.com/mac/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151410286.jpg" border="1" alt="" hspace="0" width="570" height="376" /></a></p>
<p><a href="http://www.apple.com/iphone/"><strong>Apple iPhone</strong></a></p>
<p><a href="http://www.apple.com/iphone/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151414296.jpg" border="1" alt="" hspace="0" width="570" height="355" /></a></p>
<p><a href="http://www.apple.com/support/"><strong>Apple Support</strong></a></p>
<p><a href="http://www.apple.com/support/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151417230.jpg" border="1" alt="" hspace="0" width="570" height="364" /></a></p>
<p><strong>苹果风 Web 设计欣赏之二：仿苹果家族 1. </strong><a href="http://panic.com/coda/"><strong>Panic Coda</strong></a><strong><br />
这是一个非常受欢迎的 Mac 代码编辑器</strong></p>
<p><a href="http://panic.com/coda/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151422200.jpg" border="1" alt="" hspace="0" width="570" height="431" /></a></p>
<p><strong>2. </strong><a href="http://www.atebits.com/"><strong>AteBits</strong></a><strong><br />
简单就是美</strong></p>
<p><a href="http://www.atebits.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151433461.jpg" border="1" alt="" hspace="0" width="570" height="490" /></a></p>
<p><strong>3. </strong><a href="http://culturedcode.com/"><strong>Cultured Code</strong></a><strong><br />
漂亮的图标贯串始终，对内容的组织很有效</strong></p>
<p><a href="http://culturedcode.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151438133.jpg" border="1" alt="" hspace="0" width="570" height="364" /></a></p>
<p><strong>4. </strong><a href="http://www.macrabbit.com/cssedit/"><strong>Mac Rabbit</strong></a><strong><br />
灰白色系黑渐变，雅致的图标</strong></p>
<p><a href="http://www.macrabbit.com/cssedit/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151441223.jpg" border="1" alt="" hspace="0" width="570" height="389" /></a></p>
<p><strong>5. </strong><a href="http://twelvesouth.com/"><strong>Twelve South</strong></a><strong><br />
非常漂亮的产品图片，苹果产品图片</strong></p>
<p><a href="http://twelvesouth.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151447246.jpg" border="1" alt="" hspace="0" width="570" height="331" /></a></p>
<p><a href="http://www.metalabdesign.com/"><strong>6. Metalabs</strong></a><strong><br />
虽然表面上不是很苹果，但骨子里。BTW，这就是据说</strong><a href="http://www.comsharp.com/GetKnowledge/zh-CN/It_News_K920.aspx"><strong>被 Mozilla 的一款产品的 UI 所抄袭的设计</strong></a><strong> （译者注）</strong></p>
<p><a href="http://www.metalabdesign.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151458148.jpg" border="1" alt="" hspace="0" width="570" height="420" /></a></p>
<p><strong>7. </strong><a href="http://versionsapp.com/"><strong>Version App</strong></a><strong><br />
很黑，但仍然很苹果</strong></p>
<p><a href="http://versionsapp.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151518644.jpg" border="1" alt="" hspace="0" width="570" height="372" /></a></p>
<p><strong>8. </strong><a href="http://icondock.com/"><strong>IconDock</strong></a></p>
<p><a href="http://icondock.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151533619.jpg" border="1" alt="" hspace="0" width="570" height="359" /></a></p>
<p><strong>9. </strong><a href="http://www.acrylicapps.com/times/"><strong>Acrylic Apps</strong></a></p>
<p><a href="http://www.acrylicapps.com/times/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151539125.jpg" border="1" alt="" hspace="0" width="570" height="381" /></a></p>
<p><strong>10. </strong><a href="http://www.billingsapp.com/"><strong>Billings App</strong></a><strong><br />
深得苹果精髓的设计，大产品图 + 灰白蓝色系 + 大小对比强烈的字体</strong></p>
<p><a href="http://www.billingsapp.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151542775.jpg" border="1" alt="" hspace="0" width="570" height="296" /></a></p>
<p><strong>11. </strong><a href="http://postage.roguesheep.com/"><strong>Postage</strong></a><strong><br />
</strong><br />
<a href="http://postage.roguesheep.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151545790.jpg" border="1" alt="" hspace="0" width="570" height="380" /></a></p>
<p><strong>12. </strong><a href="http://www.bohemiancoding.com/"><strong>Bohemian Coding</strong></a></p>
<p><a href="http://www.bohemiancoding.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151550987.jpg" border="1" alt="" hspace="0" width="570" height="408" /></a></p>
<p><strong>13. </strong><a href="http://checkoutapp.com/"><strong>Checkout App</strong></a></p>
<p><a href="http://checkoutapp.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151555696.jpg" border="1" alt="" hspace="0" width="570" height="367" /></a></p>
<p><strong>14. </strong><a href="http://www.nprinting.com/"><strong>Nprinting</strong></a></p>
<p><a href="http://www.nprinting.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151558935.jpg" border="1" alt="" hspace="0" width="570" height="352" /></a></p>
<p><strong>15. </strong><a href="http://www.postbox-inc.com/"><strong>PostBox</strong></a><a href="http://www.postbox-inc.com/"><strong> Inc</strong></a></p>
<p><a href="http://www.postbox-inc.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151601498.jpg" border="1" alt="" hspace="0" width="570" height="426" /></a></p>
<p><strong>16. </strong><a href="http://icondock.com/"><strong>Symphony CMS</strong></a></p>
<p><a href="http://icondock.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151608797.jpg" border="1" alt="" hspace="0" width="570" height="380" /></a></p>
<p><strong>17. </strong><a href="http://invoicemachine.com/"><strong>Invoice Machine</strong></a><strong><br />
</strong><br />
<a href="http://invoicemachine.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151611356.jpg" border="1" alt="" hspace="0" width="570" height="388" /></a></p>
<p><strong>18. </strong><a href="http://icondesigner.net/"><strong>Icon Designer</strong></a></p>
<p><a href="http://icondesigner.net/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151623403.jpg" border="1" alt="" hspace="0" width="570" height="400" /></a></p>
<p><strong>19. </strong><a href="http://www.transmissionapps.com/"><strong>Transmission Apps</strong></a></p>
<p><a href="http://www.transmissionapps.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151630157.jpg" border="1" alt="" hspace="0" width="570" height="454" /></a></p>
<p><strong>20. </strong><a href="http://280slides.com/"><strong>280 Slides</strong></a></p>
<p><a href="http://280slides.com/"><img src="http://apple.tgbus.com/UploadFiles/201003/20100323151636389.jpg" border="1" alt="" hspace="0" width="570" height="450" /></a></p>
<p><a href="http://www.1stwebdesigner.com/inspiration/apple-inspired-websites-why-design-works/" target="_blank">本文国际来源</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/web-design-reflected-strong-apple-style.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>11个让你成为用户体验专家的博客</title>
		<link>http://zmingcx.com/11-makes-you-a-user-experience-experts-blog.html</link>
		<comments>http://zmingcx.com/11-makes-you-a-user-experience-experts-blog.html#comments</comments>
		<pubDate>Sun, 14 Nov 2010 20:53:38 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=2909</guid>
		<description><![CDATA[在今天的网页设计世界,很多都强调了SEO,迫使我们为了机器.即使SEO是网页设计者必须考虑的,但是关注需要放在用户上-用户的呼吸,打字和点击.幸 好,有一些关注用户体验的博客,那些博客有很多信息,贴士,和洞察力那些可以帮助到你成为一个用户体验专家.这里有大约11个最棒的博客. UX Magazine UX Magazine集中了很多讨论用户体验原则的内容. Signal vs. Noise Signal vs. Noise是37 signals的博客.37 signals打造了很流行地网页应用像basecamp, 他知道一个或两个东西关于用户体验. UX Booth UX Booth 是一个用户体验社区.里面有很多有用的文章或资料关于可用性,用户体验和互动设计. Adaptive Path Blog Adaptive Path 创造了用户驾驭地产品可以递交伟大的体验.他们的博客允许他们有机会来分享他们学到地东西. UsabilityPost Usability Post 是一个关于设计的博客,不单单网页是长什么样,还是它怎么工作的.Usability Post 是用来提供相关的资源,贴士关于很好的设计来帮助你制作好的产品. inspireUX 456 Berea Street 456 Berea Street 是瑞典网页专家（Roger Johansson）的博客。他写了关于网页标准，可用性和其他关于用户体验的主题。 Functioning Form Functioning Form是一个博客关于界面设计。也就是说，在这里，艺术和科技成为一种体验，在这里，消息和媒体合并在一起，在这里，互动是很重要的和享受。 A List Apart 关于网页标准和实践。 Boxes and Arrows 关于实践，发明和设计的讨论 EverydayUX EverydayUX是一个博客关注于那些设计尤其是关联到互动设计。]]></description>
			<content:encoded><![CDATA[<p>在今天的网页设计世界,很多都强调了SEO,迫使我们为了机器.即使SEO是网页设计者必须考虑的,但是关注需要放在用户上-用户的呼吸,打字和点击.幸 好,有一些关注用户体验的博客,那些博客有很多信息,贴士,和洞察力那些可以帮助到你成为一个用户体验专家.这里有大约11个最棒的博客.</p>
<p>UX Magazine</p>
<p>UX Magazine集中了很多讨论用户体验原则的内容.<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_1.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_1.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a><br />
<a name="entrymore"></a><br />
Signal vs. Noise</p>
<p>Signal vs. Noise是37 signals的博客.37 signals打造了很流行地网页应用像basecamp, 他知道一个或两个东西关于用户体验.<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_6.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_6.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>UX Booth</p>
<p>UX Booth 是一个用户体验社区.里面有很多有用的文章或资料关于可用性,用户体验和互动设计.<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_4.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_4.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>Adaptive Path Blog</p>
<p>Adaptive Path 创造了用户驾驭地产品可以递交伟大的体验.他们的博客允许他们有机会来分享他们学到地东西.<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_8.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_8.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>UsabilityPost</p>
<p>Usability Post 是一个关于设计的博客,不单单网页是长什么样,还是它怎么工作的.Usability Post 是用来提供相关的资源,贴士关于很好的设计来帮助你制作好的产品.<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_2.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_2.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>inspireUX</p>
<p><a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_9.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_9.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>456 Berea Street</p>
<p>456 Berea Street 是瑞典网页专家（Roger Johansson）的博客。他写了关于网页标准，可用性和其他关于用户体验的主题。<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_11.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_11.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>Functioning Form</p>
<p>Functioning Form是一个博客关于界面设计。也就是说，在这里，艺术和科技成为一种体验，在这里，消息和媒体合并在一起，在这里，互动是很重要的和享受。<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_12.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_12.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>A List Apart</p>
<p>关于网页标准和实践。<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_15.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_15.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>Boxes and Arrows</p>
<p>关于实践，发明和设计的讨论<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_13.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_13.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
<p>EverydayUX</p>
<p>EverydayUX是一个博客关注于那些设计尤其是关联到互动设计。<br />
<a href="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_14.jpg" target="_blank"><img title="点击在新窗口中浏览此图片" src="http://i621.photobucket.com/albums/tt295/GlenGao/100605/usability_14.jpg" border="0" alt="点击在新窗口中浏览此图片" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/11-makes-you-a-user-experience-experts-blog.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>web设计趋势与潮流</title>
		<link>http://zmingcx.com/web-design-trends-and-the-trend.html</link>
		<comments>http://zmingcx.com/web-design-trends-and-the-trend.html#comments</comments>
		<pubDate>Sun, 14 Nov 2010 20:50:13 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=2908</guid>
		<description><![CDATA[19年前，世界上第一个网页诞生，它没有设计可言，由文本和url组成，样式只有最基本的&#60;h1&#62; &#60;p&#62;。 而如今，Web设计已经成长为独立而庞大的设计门类，一个网页的创造需要多个工种、多种技术的参与，其流程的复杂和挑战性已经超过任何传统设计类别。 这19年间，网站的拥有者越来越清楚自己的目标，而设计师们也越来越理性和专注，人们在不停寻求商业诉求、用户、审美和技术上的平衡点。每一年过去，都有无数过时的风格、特征元素以及实现技术被抛于身后。 设计风潮体现着一个时期内人们对特定的风格、趣味、审美、技术乃至理念等各种模型或特征的追随。 新技术的发展、媒介载体的占有量的变化、新网站类型的诞生、全球的设计思潮的影响、行业领军者的转变、明星设计师个体的亮点，这些因素都在推动潮流的变 化。 你可以回想一下那些曾经风靡一时的模式：复古的像素样式；Google的朴素之风；韩式清新插画风；Flashsite的兴起带来的不规则布局和动画的滥 用；Apple引发的对质感的追求；用户和情境意识的觉醒；对细节的关注——圆角和阴影的广泛运用； Web2.0设计风潮中典型的配色和特征元素；空间与层次感的魔术…… 09年流行的半透明风格： 空间和层次感的魔术： 潮流的涌现，是社会一致化与个体差异化的碰撞，每一次碰撞都推动着这个行业的进步。 让我们来看看这些发生中的变化： 简洁，精简，极简 极简主义（Minimalism ）在这一年大热。原因有4点： 1. 手持便携设备的占有量逐步上升，人们的访问方式发生了改变，小尺寸屏幕所需的精简之道反过来影响了整体的设计趋势。 2. Apple简洁、专注、充满诱惑力设计哲学重领潮流，效仿者众多。 3. 来自全球设计思潮的影响：极简、禅意、人文、空间感的“日式风格”这两年在出版界、时装设计、包装设计、工业设计界都颇受追捧。 4. 网站的专业性和针对性在进一步加强，人们选择一个网站一次把一件事做好、做到极致，而非盲目扩张。这也使“精简”拥有更大的实现空间。 极简主义体现设计师对意图、受众、情境的强大控制力。不是简单的做减法就可以了，如果不能很好地把握取舍的宗旨与理由，一个为了极简效果而精简的页面可能看起来庸俗不堪，是为“做作”的留白 。 操刀这一风格需要对作品有充分的自信和理解力，更重视细节和布局，把握恰当的对比、强调。 来自版式和留白的均衡美感 极简主义风格非常适用于以图片为表现主体的网站 极简主义的风潮中，还涌现了许多单页网站。所有内容都放在一个页面上呈现，通过分屏来巧妙地布置格局，不再有跳转和复杂的站点结构，一目了然。 更有人情味与趣味的设计 运营上的专注使得设计师们可以在设计中投入更多的感情，更有针对性地取悦受众。从保守、冷漠、功利的陈旧风貌中，涌现出更多富有生命力和趣味的产品。 Twitter取得了巨大成功，可爱的小鸟形象深入人心。以动物为主题的logo和网站吉祥物也随之风行起来。 这一变化出现的原因： 1是具有针对性的中小型服务和应用类网站大批涌现。 2是来自示范者的力量。 3是多元化的必然趋向。 4是在功能性、规范性和用户体验之外，设计师开始寻找那些从未出现过的、能更深层次打动用户的东西——“一种在感情上赢得人们喜爱的东西”。 亲和、活泼、富有感染力、配色清新、使用自然元素作为装饰物。 曾经很不常见的高饱和度的配色，这种充满动感和生命力高调设计让人充满惊喜。 精致有趣的细节 对传统设计的借鉴 Web设计这个年轻的分支在自我生长的同时也在不停向传统设计汲取营养。在布局与版式方面，设计师们一直在探寻更好的表现手法，所以尝试从传统的设计媒介中寻求灵感，杂志版式布局（ Magazine-style Layouts）的从09年就开始大热，不光大型新闻网纷纷求变，杂志版式布局的Wordpress Themes 也炙手可热。 这一变化对传统设计不仅仅是形式上的追随，更重要的是尝试去借鉴与融合的态度。 Times 和 Financial Times 都是国外老牌媒体，他们的网站布局结合传统纸媒版式有许多新潮的亮点，比如 竖式的流体布局，图文混排，头条强调，由标题字号变化带来的层级差别。 [...]]]></description>
			<content:encoded><![CDATA[<p>19年前，世界上第一个网页诞生，它没有设计可言，由文本和url组成，样式只有最基本的&lt;h1&gt; &lt;p&gt;。  而如今，Web设计已经成长为独立而庞大的设计门类，一个网页的创造需要多个工种、多种技术的参与，其流程的复杂和挑战性已经超过任何传统设计类别。</p>
<p>这19年间，网站的拥有者越来越清楚自己的目标，而设计师们也越来越理性和专注，人们在不停寻求<strong>商业诉求、用户、审美和技术</strong>上的平衡点。每一年过去，都有无数过时的风格、特征元素以及实现技术被抛于身后。</p>
<p><strong>设计风潮体现着一个时期内人们对特定的风格、趣味、审美、技术乃至理念等各种模型或特征的追随</strong>。 新技术的发展、媒介载体的占有量的变化、新网站类型的诞生、全球的设计思潮的影响、行业领军者的转变、明星设计师个体的亮点，这些因素都在推动潮流的变 化。  你可以回想一下那些曾经风靡一时的模式：复古的像素样式；Google的朴素之风；韩式清新插画风；Flashsite的兴起带来的不规则布局和动画的滥 用；Apple引发的对质感的追求；用户和情境意识的觉醒；对细节的关注——圆角和阴影的广泛运用；  Web2.0设计风潮中典型的配色和特征元素；空间与层次感的魔术……<br />
<a name="entrymore"></a><br />
09年流行的半透明风格：</p>
<p><a href="http://www.cgalvin.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/01www_cgalvin_com.png" alt="" width="600" height="459" /></a></p>
<p>空间和层次感的魔术：</p>
<p><a href="http://www.delibarapp.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/02www.delibarapp.com.jpg" alt="" width="581" height="225" /></a></p>
<p><strong>潮流的涌现，是社会一致化与个体差异化的碰撞，每一次碰撞都推动着这个行业的进步。</strong></p>
<p>让我们来看看这些发生中的变化：</p>
<h2>简洁，精简，极简</h2>
<p><a href="http://jezthompson.co.uk/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/03jezthompson.co.uk.jpg" alt="" width="600" height="431" /></a></p>
<p><strong>极简主义（Minimalism ）</strong>在这一年大热。原因有4点：</p>
<p>1. 手持便携设备的占有量逐步上升，人们的访问方式发生了改变，小尺寸屏幕所需的精简之道反过来影响了整体的设计趋势。</p>
<p>2. Apple简洁、专注、充满诱惑力设计哲学重领潮流，效仿者众多。</p>
<p>3. 来自全球设计思潮的影响：极简、禅意、人文、空间感的“日式风格”这两年在出版界、时装设计、包装设计、工业设计界都颇受追捧。</p>
<p>4. 网站的专业性和针对性在进一步加强，人们选择一个网站一次把一件事做好、做到极致，而非盲目扩张。这也使“精简”拥有更大的实现空间。</p>
<p>极简主义体现设计师对意图、受众、情境的强大控制力。不是简单的做减法就可以了，如果不能很好地把握取舍的宗旨与理由，一个为了极简效果而精简的页面可能看起来庸俗不堪，是为“做作”的留白 。</p>
<p>操刀这一风格需要对作品有充分的自信和理解力，更重视细节和布局，把握恰当的对比、强调。</p>
<p>来自版式和留白的均衡美感<br />
<a href="http://www.executiveedits.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/04www.executiveedits.com.jpg" alt="" width="600" height="520" /></a></p>
<p>极简主义风格非常适用于以图片为表现主体的网站</p>
<p><a href="http://www.effektivedesign.co.uk/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/05www_effektivedesign_co_uk.png" alt="" width="600" height="580" /></a></p>
<p>极简主义的风潮中，还涌现了许多单页网站。所有内容都放在一个页面上呈现，通过分屏来巧妙地布置格局，不再有跳转和复杂的站点结构，一目了然。</p>
<h2>更有人情味与趣味的设计</h2>
<p>运营上的专注使得设计师们可以在设计中投入更多的感情，更有针对性地取悦受众。从保守、冷漠、功利的陈旧风貌中，涌现出更多富有生命力和趣味的产品。</p>
<p>Twitter取得了巨大成功，可爱的小鸟形象深入人心。以动物为主题的logo和网站吉祥物也随之风行起来。</p>
<p><a href="http://twitter.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/06twitter_logo.jpg" alt="" width="600" height="450" /></a></p>
<p><img src="http://blog.xiqiao.info/blogimg/design_trend/07logo.jpg" alt="" width="600" height="363" /></p>
<p>这一变化出现的原因：<br />
1是具有针对性的中小型服务和应用类网站大批涌现。<br />
2是来自示范者的力量。<br />
3是多元化的必然趋向。<br />
4是在功能性、规范性和用户体验之外，设计师开始寻找那些从未出现过的、能更深层次打动用户的东西——“<strong>一种在感情上赢得人们喜爱的东西</strong>”。</p>
<p><a href="http://twitter.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/08Twitter.com.jpg" alt="" width="600" height="280" /></a></p>
<p>亲和、活泼、富有感染力、配色清新、使用自然元素作为装饰物。</p>
<p><a href="http://www.morphix.si/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/09www_morphix_si_home.png" alt="" width="600" height="483" /></a></p>
<p><a href="http://www.mint.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/10www.mint.com%20screen.jpg" alt="" width="600" height="389" /></a></p>
<p><a href="http://www.wiredtree.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/Snap11.jpg" alt="" width="600" height="515" /></a></p>
<p>曾经很不常见的<strong>高饱和度的配色</strong>，这种充满动感和生命力高调设计让人充满惊喜。</p>
<p><a href="http://www.esintitasarim.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/11www_esintitasarim_com.png" alt="" width="600" height="412" /></a></p>
<p>精致有趣的<strong>细节</strong></p>
<p><a href="http://www.sourcebits.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/12www.sourcebits.com.jpg" alt="" width="340" height="246" /></a></p>
<h2>对传统设计的借鉴</h2>
<p>Web设计这个年轻的分支在自我生长的同时也在不停向传统设计汲取营养。在布局与版式方面，设计师们一直在探寻更好的表现手法，所以尝试从传统的设计媒介中寻求灵感，<strong>杂志版式布局（ Magazine-style Layouts）</strong>的从09年就开始大热，不光大型新闻网纷纷求变，杂志版式布局的Wordpress Themes 也炙手可热。 这一变化对传统设计不仅仅是形式上的追随，更重要的是尝试去借鉴与融合的态度。</p>
<p>Times 和 Financial Times 都是国外老牌媒体，他们的网站布局结合传统纸媒版式有许多新潮的亮点，比如 竖式的流体布局，图文混排，头条强调，由标题字号变化带来的层级差别。</p>
<p><a href="http://www.time.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/13www_time_com_time_arts.png" alt="" width="600" height="1040" /></a></p>
<p><a href="http://www.ft.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/14www_ft_com_home_asia.png" alt="" width="600" height="1028" /></a></p>
<p>而国内的此类网站绝大多数采用的还是非常传统的横向区块布局，信息密度高，版式缺乏节奏和韵律。</p>
<p><a href="http://www.163.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/15www_163_com.png" alt="" width="600" height="671" /></a></p>
<p><a href="http://www.metroer.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/16www_metroer_com.png" alt="" width="600" height="637" /></a></p>
<p>由比较可见，国外的大容量信息网站的趋势是 降低首页的信息密度，把内容分摊到二级频道；版式上更具引导性、更适于阅读，浏览方式像读报一样更流畅随意。<br />
由于广告盈利价值的差别，国内这类网站还是使用信息密度极高的索引模式，所以看起来更像说一份导流量的“黄页”而非可随心阅读的媒体。在信息呈现密度与模式无法改变的情况下，照搬国外的版式布局是非常危险的。</p>
<p>除了在样式上的借鉴，传统版式设计上的许多经典的实现手法也移植了过来，最著名的就是<strong>黄金比例和栅格系统（Grid System)</strong>。栅格系统的历史有300多年，运用严谨的几何网格来指导和规范元件的分布排列。将传统栅格移植为适合网页设计的系统，不光是创造了一种工具，也产生了一种普遍的审美规范与倾向。无论你是选择遵循规范还是打破规范，都是对它的推动。</p>
<p>960px宽的网页栅格系统 960 Grid System：</p>
<p><a href="http://960.gs/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/18brown.jpg" alt="" width="600" height="290" /></a></p>
<p><a href="http://www.designinfluences.com/fluid960gs/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/17www_designinfluences_com_fluid960gs.png" alt="" width="600" height="471" /></a></p>
<h2>个体风格带来的变化</h2>
<p>谁 才代表着趋势？有人认为设计师们所追捧的变化代表了潮流，  有人认为top100的大站才是大势所趋。狡猾一点说，两个说法都不确切，网站运营的Top100并不代表设计上的Top100，出于多种原因，很可能它 们是最保守的阵营。但你无法忽略他们对用户/客户的审美及视觉习惯造成的影响。而设计师们虽然愿意挑战和尝试变化，但在面对个人化设计和商业设计时，他们 的取舍却往往不尽相同。</p>
<p>巨头和个体们在设计风格一直在互相影响和渗透。所以你永远不应该轻视那些看起来“个人化”和“小众”的创新设计。观察它们的最好舞台就是设计师的Blog和Profile站。</p>
<p>下面这几点都是从现在小众网站上流行，慢慢被许多普通大众网站设计所趋向的特征。。</p>
<h3>更大header区，更醒目的logo和标识，字号更大的标题。</h3>
<p>内容放得再多再好，但用户记不住“你是谁？”也是白费。 更大header区强化了用户对品牌和风格的记忆，让你有更多的发挥余地去表现。</p>
<p><a href="http://corp.ign.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/19corp_ign_com.png" alt="" width="600" height="638" /></a></p>
<p><a href="http://www.koffieverkeerd.be/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/20www_koffieverkeerd_be.png" alt="" width="600" height="668" /></a></p>
<h3>在背景中使用恰当地纹理。</h3>
<p>十几年前，在美化手法贫乏的年代，人们也喜欢在背景中使用纹理，但大多只取得了浮华嘈杂的效果。现在的设计师们学会了理性而低调的使用纹理来制造风格、提升品质和烘</p>
<p>户外服装的电子商城。使用了粗砺的水泥纹理：</p>
<p><a href="http://www.bridge55.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/21www_bridge55_com.png" alt="" width="600" height="519" /></a></p>
<p>婴幼儿用品的电子商城，使用了清洁柔和的圆点纹理：</p>
<p><a href="http://www.rhbabyandchild.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/22www_rhbabyandchild_com.png" alt="" width="600" height="475" /></a></p>
<h3>把Footer区利用起来</h3>
<p>这是典型的受Blog设计影响的潮流，在footer区放上更多的信息、标志与快捷入口。</p>
<p><a href="http://www.mactalk.com.au/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/23Snap14.jpg" alt="" width="600" height="269" /></a></p>
<p><a href="http://expressionengine.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/24Snap12.jpg" alt="" width="600" height="207" /></a></p>
<p><a href="http://www.bustedtees.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/Snap13.jpg" alt="" width="600" height="166" /></a></p>
<h2>更注重品质，更能抓住用户眼睛的设计</h2>
<p>这点变化在和消费挂钩的网站上非常明显。设计师们注重对设计心理学和视觉传达的技巧的运用，使用强调和对比的策略来引导用户的视觉焦点。更醒目的标题，高质量的图片，使用slideshow来创造更多展现空间空间，这些手法都在强调那些希望得到用户关注的地方。</p>
<p>Apple网站的专业、直接、有效的界面设计，不光打动了消费者的心，也吸引了众多开发者的效仿，大量App应用网站都以使用Apple风格为荣。</p>
<p>iPhone 4 发布时的Apple.com 首页：一切无关的都被省略了，表现主体被无限强调，它牢牢抓住人们的目光，传达出最直接的诱惑：</p>
<p><a href="http://www.apple.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/25www_apple_com.png" alt="" width="600" height="520" /></a></p>
<div>
<li><a href="http://www.apple.com/iphone" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/www_apple_com_iphone.png" alt="" width="599" height="545" /></a>消费类网站的趋势：使用更醒目的标题，更大尺寸的高质量产品图片，让用户形成感官上的认识，而不仅仅是信息的罗列。<a href="http://www.gateway.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/26www_gateway_com.png" alt="" width="600" height="387" /></a><a href="http://www.mikeinghamdesign.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/www.mikeinghamdesign.com.jpg" alt="" width="600" height="370" /></a>高质量的<strong>商业摄影</strong>越来越多地出现在网站配图中。精心处理过的抠底图片配合简洁的整体设计，是电子商务网站近几年的趋势。
<p><a href="http://www.nest-living.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/27www_nest-living_com.png" alt="" width="600" height="529" /></a></li>
<li><a href="http://store.apple.com/us?mco=Nzc1MjMwNA" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/Snap8.jpg" alt="" width="600" height="597" /></a>Slideshow的使用风头正劲。用于在有限的空间内展示更多的信息（通常是为了放下更多大图片）， 增加页面的动感和观赏的流畅性。<a href="http://www.atebits.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/28www.atebits.com.jpg" alt="" width="493" height="394" /></a><a href="http://osdnetwork.org/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/29osdnetwork.org.jpg" alt="" width="600" height="178" /></a>
<p><a href="http://www.apple.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/30www_apple_com_1.jpg" alt="" width="600" height="117" /></a></p>
<p>在页面里运用<strong>可视化图表</strong>也是一个潮流，一些表单操作也被加工为可交互的图表。将信息或数据可视化，助读者更深入直观地理解其含义。<br />
<a href="http://www.digitalpodge.co.uk/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/31www_digitalpodge_co_uk_2009.png" alt="" width="600" height="448" /></a><a href="http://corp.ign.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/corp_ign_com_1.png" alt="" width="599" height="514" /></a></p>
<h2>更有效但低调的交互。</h2>
<p>交互在Web设计中是如此重要，为了让用户与界面更好地沟通，许多设计师过度地重视了交互，特别是只关注细节而失败于全局。<strong>大量交互行为被过度设计</strong>，变成了用户的负担。如果信息能够被更好的匹配或呈现，许多交互是可以避免的。未来，设计师们力求通过<strong>优化信息架构和使用流程</strong>去减少交互，更成熟地运用<strong>情境菜单（上下文菜单）</strong>，将操作反馈处理得更为隐形和自然。</p>
<p>交互的设计会向着直接<strong>有效、更低调、提升使用乐趣</strong>的方向发展。</p>
<p>coda.co.za 这个网站的交互反馈，非常简洁优雅，效果自然。</p>
<p><a href="http://coda.co.za/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/32Snap10.jpg" alt="" width="600" height="378" /></a></p>
<p>当鼠标移到某张CD上的时候，它信息会通过隐藏右边的CD显示出来。这种反馈比悬浮框更自然。</p>
<p><a href="http://www.komodomedia.com/blog/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/33Snap15.jpg" alt="" width="530" height="272" /></a></p>
<p>与物理世界操作经验吻合的交互体验</p>
<p><img src="http://blog.xiqiao.info/blogimg/design_trend/34form.jpg" alt="" width="600" height="310" /></p>
<p>越来越多的Web操作允许快捷键的参与。允许快捷键可以提升高级用户操作效率，增加使用乐趣，同时也是为了更好的向无障碍访问的方面进步，照顾视力不好或无法鼠标的用户。</p>
<p><a href="http://mad-ar.ch/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/36Snap1.jpg" alt="" width="600" height="449" /></a></p>
<p><a href="http://www.nytimes.com/timesskimmer/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/35www_nytimes_com_timesskimmer.png" alt="" width="306" height="631" /></a></p>
<h2>结语：去哪里捕捉和观察趋势。</h2>
<p>相 较于国外的这一波波风潮，国内的设计师的行动并不多，许多原因使他们面对这些变化，或保守或滞后。同时，许多生硬的抄袭和模仿也正在伤害国内的设计行业， 从Templates (许多是过时且侵权的) 开工、抄捷径的“拿来主义”不光在腐蚀一个设计师的创造力，也在折损着整个行业从业者的价值。</p>
<p>我希望年轻的设计师尽可能多得去关注国外的专业Blog和作品画廊站（Gallery），低头干活的同时，抬头看路。这样才能在团队中提供自己的专业判断，而不只是一个被动的“美工”。</p>
<h3>专业Blog：</h3>
<ul>
<li><a href="http://www.smashingmagazine.com/" target="_blank">www.smashingmagazine.com</a> 可以说是如今全球内容质量最高的Web设计专业Blog。订阅量接近20万。设计师们一定不可以错过。</li>
<li><a href="http://sixrevisions.com/" target="_blank">sixrevisions.com</a> 为首的多名技术专家共同撰写的blog，提供大量对Web设计师和开发人员有用的技巧、教程和资源。还有很多前瞻性的分析文章。</li>
<li><a href="http://abduzeedo.com/" target="_blank">abduzeedo.com</a> 更新量很大,如果你设计卡壳了,这是寻找灵感的好地方.</li>
</ul>
<h3>作品共享和灵感采集站：</h3>
<ul>
<li><a href="http://deviantart.com/" target="_blank">deviantart.com</a> 全球最大的设计师展示和分享创作的平台。其网站本身交互设计也非常有特色。</li>
<li><a href="http://ffffound.com/" target="_blank">ffffound.com </a>图片类的delicious服务，一个你永远不可能拿到注册码的社区，但是其中活跃着大量全球一流的设计师和创作。</li>
</ul>
<h3>Web设计画廊（Gallery）</h3>
<p><a href="http://designshack.co.uk/" target="_blank">designshack.co.uk </a>（可按配色、布局和类型进行筛选）</p>
<p><a href="http://designshack.co.uk/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/37Snap5.jpg" border="0" alt="" width="600" height="431" /></a></p>
<p><a href="http://reeoo.com/" target="_blank">reeoo.com</a> （可按配色进行筛选）</p>
<p><a href="http://reeoo.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/38Snap6.jpg" alt="" width="600" height="465" /></a></p>
<p><a href="http://siteinspire.net/" target="_blank">siteinspire.net</a> （可按样式、主题、网站类型进行筛选和排序）</p>
<p><a href="http://siteinspire.net/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/39Snap7.jpg" alt="" width="600" height="449" /></a></p>
<p><a href="http://coolhomepages.com/" target="_blank">coolhomepages.com</a> （可按类型进行筛选和排序）</p>
<p><a href="http://coolhomepages.com/" target="_blank"><img src="http://blog.xiqiao.info/blogimg/design_trend/40Snap18.jpg" alt="" width="600" height="411" /></a></li>
<div><a title="Tags:  trend" rel="tag" href="http://www.gaolewen.com/tag.php?tag=trend"></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/web-design-trends-and-the-trend.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>42个采用WordPress精心设计的博客</title>
		<link>http://zmingcx.com/40-well-designed-blog-with-wordpress.html</link>
		<comments>http://zmingcx.com/40-well-designed-blog-with-wordpress.html#comments</comments>
		<pubDate>Sun, 20 Sep 2009 07:36:23 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web设计]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/?p=1189</guid>
		<description><![CDATA[博客虽然以内容为先，但独特、漂亮的博客模板设计，可以更加吸引浏览者的眼球和注意力。所以漂亮的博客模板设计加上原创高质量的内容，必将使您的博客脱颖而出。 1. Assault Blog 2. BestBlogBox 3. Cheaper Than Therapy 4. Cult-foo 5. Narstuff 6. Jason Bradbury 7. Juan Diego Velasco 8. Ecoki 9. All For Design 10. Hatch 11. heyIndy 12. 1stwebdesigner 13. Behind The Websites 14. Design Your Way 15. Digital Deceptions 16. Brown Blog Films 17. Elitist Snob 18. Studio 7 Designs [...]]]></description>
			<content:encoded><![CDATA[<p>博客虽然以内容为先，但独特、漂亮的博客模板设计，可以更加吸引浏览者的眼球和注意力。所以漂亮的博客模板设计加上原创高质量的内容，必将使您的博客脱颖而出。<span id="more-1189"></span></p>
<h3>1. <a title="Assault Blog" href="http://www.assaultblog.com/" target="_blank">Assault Blog</a></h3>
<p><img title="Assault Blog" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/assaultblog.jpg" alt="Assault Blog" width="500" height="293" /></p>
<h3>2. <a title="BestBlogBox" href="http://bestblogbox.com/" target="_blank">BestBlogBox</a></h3>
<p><img title="BestBlogBox" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/bestblogbox.jpg" alt="BestBlogBox" width="500" height="295" /></p>
<p><span id="more-1635"> </span></p>
<h3>3. <a title="Cheaper Than Therapy" href="http://www.alimartell.com/" target="_blank">Cheaper Than Therapy</a></h3>
<p><img title="Cheaper Than Therapy" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/alimartell.jpg" alt="Cheaper Than Therapy" width="500" height="295" /></p>
<h3>4. <a title="Cult-foo" href="http://www.cult-f.net/" target="_blank">Cult-foo</a></h3>
<p><img title="Cult-foo" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/cult-f.jpg" alt="Cult-foo" width="500" height="295" /></p>
<h3>5. <a title="Narstuff" href="http://www.narfstuff.co.uk/" target="_blank">Narstuff</a></h3>
<p><img title="Narfstuff" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/narfstuff.jpg" alt="Narfstuff" width="500" height="295" /></p>
<h3>6. <a title="Jason Bradbury" href="http://www.jasonbradbury.com/" target="_blank">Jason Bradbury</a></h3>
<p><img title="Jason Bradbury" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/jasonbradbury.jpg" alt="Jason Bradbury" width="500" height="295" /></p>
<h3>7. <a title="Juan Diego Velasco" href="http://www.juandiegovelasco.com/" target="_blank">Juan Diego Velasco</a></h3>
<p><img title="Juan Diego Velasco" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/juandiegovelasco.jpg" alt="Juan Diego Velasco" width="500" height="295" /></p>
<h3>8. <a title="Ecoki" href="http://ecoki.com/" target="_blank">Ecoki</a></h3>
<p><img title="Ecoki" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/ecoki.jpg" alt="Ecoki" width="500" height="295" /></p>
<h3>9. <a title="All For Design" href="http://all-for-design.com/" target="_blank">All For Design</a></h3>
<p><img title="All For Design" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/all-for-design.jpg" alt="All For Design" width="500" height="295" /></p>
<h3>10. <a title="Hatch" href="http://freshapproachcoach.com/" target="_blank">Hatch</a></h3>
<p><img title="Hatch" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/freshapproachcoach.jpg" alt="Hatch" width="500" height="295" /></p>
<h3>11. <a title="heyIndy" href="http://heyindy.com/" target="_blank">heyIndy</a></h3>
<p><img title="heyIndy" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/heyindy.jpg" alt="heyIndy" width="500" height="295" /></p>
<h3>12. <a title="1stwebdesigner" href="http://www.1stwebdesigner.com/" target="_blank">1stwebdesigner</a></h3>
<p><img title="1stwebdesigner" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/1stwebdesigner.jpg" alt="1stwebdesigner" width="500" height="295" /></p>
<h3>13. <a title="Behind The Websites" href="http://behindthewebsites.com/" target="_blank">Behind The Websites</a></h3>
<p><img title="Behind The Websites" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/behindthewebsites.jpg" alt="Behind The Websites" width="500" height="295" /></p>
<h3>14. <a title="Design Your Way" href="http://www.designyourway.net/blog/" target="_blank">Design Your Way</a></h3>
<p><img title="Design Your Way" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/designyourway.jpg" alt="Design Your Way" width="500" height="295" /></p>
<h3>15. <a title="Digital Deceptions" href="http://digitaldeceptions.ca/" target="_blank">Digital Deceptions</a></h3>
<p><img title="Digital Deceptions" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/digitaldeceptions.jpg" alt="Digital Deceptions" width="500" height="295" /></p>
<h3>16. <a title="Brown Blog Films" href="http://www.brownblogfilms.com/" target="_blank">Brown Blog Films</a></h3>
<p><img title="Brown Blog Films" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/brownblogfilms.jpg" alt="Brown Blog Films" width="500" height="295" /></p>
<h3>17. <a title="Elitist Snob" href="http://www.elitistsnob.com/" target="_blank">Elitist Snob</a></h3>
<p><img title="Elitist Snob" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/elitistsnob.jpg" alt="Elitist Snob" width="500" height="295" /></p>
<h3>18. <a title="Studio 7 Designs" href="http://www.studio7designs.com/blog/" target="_blank">Studio 7 Designs</a></h3>
<p><img title="Studio 7 Designs" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/studio7designs.jpg" alt="Studio 7 Designs" width="500" height="295" /></p>
<h3>19. <a title="Getting Crazy" href="http://www.gettingcrazy.info/" target="_blank">Getting Crazy</a></h3>
<p><img title="Getting Crazy" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/gettingcrazy.jpg" alt="Getting Crazy" width="500" height="295" /></p>
<h3>20. <a title="Gisele Jaquenod" href="http://www.giselejaquenod.com.ar/blog/" target="_blank">Gisele Jaquenod</a></h3>
<p><img title="Gisele Jaquenod" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/giselejaquenod.jpg" alt="Gisele Jaquenod" width="500" height="295" /></p>
<h3>21. <a title="ilovecolors" href="http://www.ilovecolors.com.ar/" target="_blank">ilovecolors</a></h3>
<p><img title="ilovecolors" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/ilovecolors.jpg" alt="ilovecolors" width="500" height="295" /></p>
<h3>22. <a title="Inspiredology" href="http://inspiredology.com/" target="_blank">Inspiredology</a></h3>
<p><img title="Inspiredology" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/inspiredology.jpg" alt="Inspiredology" width="500" height="295" /></p>
<h3>23. <a title="garamiz blog" href="http://www.garamiz.hu/blog/" target="_blank">garamiz blog</a></h3>
<p><img title="garamiz blog" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/garamiz.jpg" alt="garamiz blog" width="500" height="295" /></p>
<h3>24. <a title="Jeses Rodriguez Velasco" href="http://www.jrvelasco.com/" target="_blank">Jeses Rodriguez Velasco</a></h3>
<p><img title="Jeses Rodriguez Velasco" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/jrvelasco.jpg" alt="Jeses Rodriguez Velasco" width="500" height="295" /></p>
<h3>25. <a title="Kulturbanause" href="http://www.kulturbanause.de/" target="_blank">Kulturbanause</a></h3>
<p><img title="Kulturbanause" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/kulturbanause.jpg" alt="Kulturbanause" width="500" height="295" /></p>
<h3>26. <a title="Larissa Meek" href="http://www.larissameek.com/" target="_blank">Larissa Meek</a></h3>
<p><img title="Larissa Meek" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/larissameek.jpg" alt="Larissa Meek" width="500" height="295" /></p>
<h3>27. <a title="LeBloe" href="http://www.lebloe.com/" target="_blank">LeBloe</a></h3>
<p><img title="LeBloe" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/lebloe.jpg" alt="LeBloe" width="500" height="295" /></p>
<h3>28. <a title="Macalicious" href="http://www.macalicious.com/" target="_blank">Macalicious</a></h3>
<p><img title="Macalicious" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/macalicious.jpg" alt="Macalicious" width="500" height="295" /></p>
<h3>29. <a title="Loop" href="http://www.readtheloop.com/" target="_blank">Loop</a></h3>
<p><img title="Loop" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/readtheloop.jpg" alt="Loop" width="500" height="295" /></p>
<h3>30. <a title="Matblogg" href="http://www.matblogg.se/" target="_blank">Matblogg</a></h3>
<p><img title="Matblogg" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/matblogg.jpg" alt="Matblogg" width="500" height="295" /></p>
<h3>31. <a title="Melech Mizrahi" href="http://melechmizrahi.com/" target="_blank">Melech Mizrahi</a></h3>
<p><img title="Melech Mizrahi" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/melechmizrahi.jpg" alt="Melech Mizrahi" width="500" height="295" /></p>
<h3>32. <a title="Missionpoken" href="http://missionpoken.de/" target="_blank">Missionpoken</a></h3>
<p><img title="Missionpoken" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/missionpoken.jpg" alt="Missionpoken" width="500" height="295" /></p>
<h3>33. <a title="No Sleep for Sheep" href="http://nosleepforsheep.com/" target="_blank">No Sleep for Sheep</a></h3>
<p><img title="No Sleep for Sheep" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/nosleepforsheep.jpg" alt="No Sleep for Sheep" width="500" height="295" /></p>
<h3>34. <a title="One Nation Magazine" href="http://www.onenationmagazine.com/" target="_blank">One Nation Magazine</a></h3>
<p><img title="One Nation Magazine" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/onenationmagazine.jpg" alt="One Nation Magazine" width="500" height="295" /></p>
<h3>35. <a title="Outlaw Design Blog" href="http://www.outlawdesignblog.com/" target="_blank">Outlaw Design Blog</a></h3>
<p><img title="Outlaw Design Blog" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/outlawdesignblog.jpg" alt="Outlaw Design Blog" width="500" height="295" /></p>
<h3>36. <a title="No Milk Today" href="http://www.nomilktoday.be/" target="_blank">No Milk Today</a></h3>
<p><img title="No Milk Today" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/nomilktoday.jpg" alt="No Milk Today" width="500" height="289" /></p>
<h3>37. <a title="Luthier Services" href="http://www.luthierservices.com/" target="_blank">Luthier Services</a></h3>
<p><img title="Luthier Services" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/luthierservices.jpg" alt="Luthier Services" width="500" height="295" /></p>
<h3>38. <a title="Owltastic" href="http://owltastic.com/" target="_blank">Owltastic</a></h3>
<p><img title="Owltastic" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/owltastic.jpg" alt="Owltastic" width="500" height="295" /></p>
<h3>39. <a title="UX Booth" href="http://www.uxbooth.com/" target="_blank">UX Booth</a></h3>
<p><img title="UX Booth" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/uxbooth.jpg" alt="UX Booth" width="500" height="295" /></p>
<h3>40. <a title="PopCultureTees" href="http://www.popculturetees.com/" target="_blank">PopCultureTees</a></h3>
<p><img title="PopCultureTees" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/popculturetees.jpg" alt="PopCultureTees" width="500" height="295" /></p>
<h3>41. <a title="Jeffrey Sarmiento" href="http://www.jeffsarmiento.com/" target="_blank">Jeffrey Sarmiento</a></h3>
<p><img title="Jeffrey Sarmiento" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/jeffsarmiento1.jpg" alt="Jeffrey Sarmiento" width="500" height="295" /></p>
<h3>42. <a title="Julius Mattsson" href="http://www.juliusmattsson.com/" target="_blank">Julius Mattsson</a></h3>
<p><img title="Julius Mattsson" src="http://www.webdesignbooth.com/wp-content/uploads/2009/08/juliusmattsson.jpg" alt="Julius Mattsson" width="500" height="295" /></p>
<p>原文链接：<a href="http://www.webdesignbooth.com/wordpress-showcase-40-beautiful-and-well-designed-blogs-powered-by-wordpress/">http://www.webdesignbooth.com/wordpress-showcase-40-beautiful-and-well-designed-blogs-powered-by-wordpress/</a></p>
<p><script type="text/javascript">// <![CDATA[
 AKPC_IDS += "1635,";
// ]]&gt;</script></p>
<p><!-- .entry --></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/40-well-designed-blog-with-wordpress.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>在线CSS网格布局生成器精选</title>
		<link>http://zmingcx.com/css-grid-layout.html</link>
		<comments>http://zmingcx.com/css-grid-layout.html#comments</comments>
		<pubDate>Fri, 18 Sep 2009 08:16:52 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/?p=1182</guid>
		<description><![CDATA[有了这些在线CSS网格布局生成器，即可方便学习DIV+CSS,也可以省去很多精力，制作出符合标准的web页。 1.blueprint-generator 2.constructyourcss 3.csscreator 4.cssfly 5.css grid calculator 6.CSS Portal CSS Layout Generator 7.Design by Grid Generator 8.DIV Design Grid Layout Generator 9.Firdamatic 10.Grid 11.Grid Calculator 12.Grid Designer 13.Grid Generator 14.Grid Maker V1.2 15.Grid System Generator 16.GridFox – The Grid Layout Firefox Extension 17.GridMaker V2 Reboot 18.Gridr Buildrr 19.PageColumn Layout Generators 20.Phiculator 21.CSS Source Ordered [...]]]></description>
			<content:encoded><![CDATA[<p>有了这些在线CSS网格布局生成器，即可方便学习DIV+CSS,也可以省去很多精力，制作出符合标准的web页。<span id="more-1182"></span></p>
<p><strong>1.<a onclick="javascript:pageTracker._trackPageview('/outbound/article/kematzy.com');" href="http://kematzy.com/blueprint-generator/">blueprint-generator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Blueprint-Grid-CSS-Generato.png"><img title="Blueprint Grid CSS Generato" src="http://fishyoyo.com/wp-content/uploads/2009/08/Blueprint-Grid-CSS-Generato-480x280.png" alt="Blueprint Grid CSS Generato" width="480" height="280" /></a><br />
2.<a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.constructyourcss.com');" href="http://www.constructyourcss.com/">constructyourcss</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Construct-Your-CSS.png"><img title="Construct Your CSS" src="http://fishyoyo.com/wp-content/uploads/2009/08/Construct-Your-CSS-480x282.png" alt="Construct Your CSS" width="480" height="282" /></a><br />
3.<a onclick="javascript:pageTracker._trackPageview('/outbound/article/csscreator.com');" href="http://csscreator.com/tools/layout">csscreator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/CSS-Creator.png"><img title="CSS Creator" src="http://fishyoyo.com/wp-content/uploads/2009/08/CSS-Creator-480x373.png" alt="CSS Creator" width="480" height="373" /></a><br />
4.<a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.cssfly.net');" href="http://www.cssfly.net/">cssfly</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/CSSFly-Edit-websites-on-the-fly.png"><img title="CSSFly - Edit websites on the fly!" src="http://fishyoyo.com/wp-content/uploads/2009/08/CSSFly-Edit-websites-on-the-fly-480x233.png" alt="CSSFly - Edit websites on the fly!" width="480" height="233" /></a><br />
5.<a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.gwhite.us');" href="http://www.gwhite.us/downloads/css_grid_calc.html">css grid calculator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/css_grid_calc.png"><img title="css_grid_calc" src="http://fishyoyo.com/wp-content/uploads/2009/08/css_grid_calc-480x222.png" alt="css_grid_calc" width="480" height="222" /></a><br />
6.<a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.cssportal.com');" href="http://www.cssportal.com/generators/layout.htm">CSS Portal CSS Layout Generator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/CSS-Layout-Generator-CSS-Portal.png"><img title="CSS Layout Generator - CSS Portal" src="http://fishyoyo.com/wp-content/uploads/2009/08/CSS-Layout-Generator-CSS-Portal-480x221.png" alt="CSS Layout Generator - CSS Portal" width="480" height="221" /></a><br />
7.<a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.designbygrid.com');" href="http://www.designbygrid.com/tools">Design by Grid Generator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Design-By-Grid-Tools.png"><img title="Design By Grid - Tools" src="http://fishyoyo.com/wp-content/uploads/2009/08/Design-By-Grid-Tools-480x305.png" alt="Design By Grid - Tools" width="480" height="305" /></a><br />
8.</strong><strong><a id="l3017" title="DIV Design Grid Layout Generator" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pagecolumn.com');" href="http://www.pagecolumn.com/grid_layout_generator.htm" target="_blank">DIV Design Grid Layout Generator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Layout-Generator1.png"><img title="Grid Layout Generator" src="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Layout-Generator1-480x274.png" alt="Grid Layout Generator" width="480" height="274" /></a><br />
9.</strong><strong><a id="l3018" title="Firdamatic" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.wannabegirl.org');" href="http://www.wannabegirl.org/firdamatic/" target="_blank">Firdamatic</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Firdamatic-the-Design-Tool-for-the-Uninspired-Webloggers.png"><img title="Firdamatic- the Design Tool for the Uninspired Webloggers" src="http://fishyoyo.com/wp-content/uploads/2009/08/Firdamatic-the-Design-Tool-for-the-Uninspired-Webloggers-480x206.png" alt="Firdamatic- the Design Tool for the Uninspired Webloggers" width="480" height="206" /></a><br />
10.</strong><strong><a id="l3019" title="Grid" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.sprymedia.co.uk');" href="http://www.sprymedia.co.uk/article/Grid" target="_blank">Grid</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Allan-Jardine-Reflections-Grid.png"><img title="Allan Jardine - Reflections - Grid" src="http://fishyoyo.com/wp-content/uploads/2009/08/Allan-Jardine-Reflections-Grid-480x229.png" alt="Allan Jardine - Reflections - Grid" width="480" height="229" /></a><br />
11.</strong><strong><a id="l3023" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.29digital.net');" href="http://www.29digital.net/grid/" target="_blank">Grid Calculator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Calculator.png"><img title="Grid Calculator" src="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Calculator-480x365.png" alt="Grid Calculator" width="480" height="365" /></a><br />
12.</strong><strong><a id="l3020" title="Grid Designer" onclick="javascript:pageTracker._trackPageview('/outbound/article/grid.mindplay.dk');" href="http://grid.mindplay.dk/" target="_blank">Grid Designer</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Designer.png"><img title="Grid Designer" src="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Designer-480x365.png" alt="Grid Designer" width="480" height="365" /></a><br />
13.</strong><strong><a id="l3022" title="Grid Generator" onclick="javascript:pageTracker._trackPageview('/outbound/article/netprotozo.com');" href="http://netprotozo.com/grid/" target="_blank">Grid Generator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Generator.png"><img title="Grid Generator" src="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Generator-480x237.png" alt="Grid Generator" width="480" height="237" /></a><br />
14.</strong><strong><a id="l3024" title="Grid Maker V1.2" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pivari.com');" href="http://www.pivari.com/grid-maker.html" target="_blank">Grid Maker V1.2</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Maker-a-web-application-to-design-a-grid.png"><img title="Grid Maker- a web application to design a grid" src="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-Maker-a-web-application-to-design-a-grid-480x250.png" alt="Grid Maker- a web application to design a grid" width="480" height="250" /></a><br />
15.</strong><strong><a id="l3026" title="Grid System Generator" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.gridsystemgenerator.com');" href="http://www.gridsystemgenerator.com/" target="_blank">Grid System Generator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-System-Generator.png"><img title="Grid System Generator" src="http://fishyoyo.com/wp-content/uploads/2009/08/Grid-System-Generator-480x303.png" alt="Grid System Generator" width="480" height="303" /></a><br />
16.</strong><strong><a id="l3021" title="GridFox - The Grid Layout Firefox Extension" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.puidokas.com');" href="http://www.puidokas.com/portfolio/gridfox/" target="_blank">GridFox – The Grid Layout Firefox Extension</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/GridFox-The-Grid-Layout-Firefox-Extension-%C2%BB-Eric-Puidokas-%C2%BB-Programming-and-Designing-for-the-We.png"><img title="GridFox - The Grid Layout Firefox Extension » Eric Puidokas » Programming and Designing for the We" src="http://fishyoyo.com/wp-content/uploads/2009/08/GridFox-The-Grid-Layout-Firefox-Extension-%C2%BB-Eric-Puidokas-%C2%BB-Programming-and-Designing-for-the-We-480x304.png" alt="GridFox - The Grid Layout Firefox Extension » Eric Puidokas » Programming and Designing for the We" width="480" height="304" /></a><br />
17.</strong><strong><a id="l3025" title="GridMaker V2 Reboot" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.andrewingram.net');" href="http://www.andrewingram.net/articles/gridmaker_reboot/" target="_blank">GridMaker V2 Reboot</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/GridMaker-Reboot.png"><img title="GridMaker Reboot" src="http://fishyoyo.com/wp-content/uploads/2009/08/GridMaker-Reboot-480x254.png" alt="GridMaker Reboot" width="480" height="254" /></a><br />
18.</strong><strong><a id="l3028" title="Gridr Buildrr" onclick="javascript:pageTracker._trackPageview('/outbound/article/gridr.atomeye.com');" href="http://gridr.atomeye.com/" target="_blank">Gridr Buildrr</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/gridr-buildrrr.png"><img title="gridr buildrrr" src="http://fishyoyo.com/wp-content/uploads/2009/08/gridr-buildrrr-480x291.png" alt="gridr buildrrr" width="480" height="291" /></a><br />
19.</strong><strong><a id="l3030" title="PageColumn Layout Generators" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pagecolumn.com');" href="http://www.pagecolumn.com/" target="_blank">PageColumn Layout Generators</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Layout-generators-www.pagecolumn.com.png"><img title="Layout generators - www.pagecolumn.com" src="http://fishyoyo.com/wp-content/uploads/2009/08/Layout-generators-www.pagecolumn.com-480x289.png" alt="Layout generators - www.pagecolumn.com" width="480" height="289" /></a><br />
20.</strong><strong><a id="l3031" title="Phiculator" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.thismanslife.co.uk');" href="http://www.thismanslife.co.uk/main.asp?contentid=phiculator" target="_blank">Phiculator</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Phiculator-the-Golden-Ratio-calculator-from-Thismanslife-Design-Graphics-Photography-James-Mellers-Nottingham-UK.png"><img title="Phiculator, the Golden Ratio calculator from Thismanslife - Design, Graphics, Photography -- James Mellers, Nottingham UK" src="http://fishyoyo.com/wp-content/uploads/2009/08/Phiculator-the-Golden-Ratio-calculator-from-Thismanslife-Design-Graphics-Photography-James-Mellers-Nottingham-UK-480x425.png" alt="Phiculator, the Golden Ratio calculator from Thismanslife - Design, Graphics, Photography -- James Mellers, Nottingham UK" width="480" height="425" /></a><br />
21.</strong><strong><a id="l3032" title="CSS Source Ordered" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.positioniseverything.net');" href="http://www.positioniseverything.net/articles/pie-maker/pagemaker_form.php" target="_blank">CSS Source Ordered</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/CSS-Source-Ordered.png"><img title="CSS Source Ordered" src="http://fishyoyo.com/wp-content/uploads/2009/08/CSS-Source-Ordered-480x335.png" alt="CSS Source Ordered" width="480" height="335" /></a><br />
22.</strong><strong><a id="l3033" title="TypoGridder version 0.2" onclick="javascript:pageTracker._trackPageview('/outbound/article/milianw.de');" href="http://milianw.de/projects/typogridder/" target="_blank">TypoGridder version 0.2</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/TypoGridder-a-LGPL-javascript-to-add-baseline-grids.png"><img title="TypoGridder - a LGPL javascript to add baseline grids" src="http://fishyoyo.com/wp-content/uploads/2009/08/TypoGridder-a-LGPL-javascript-to-add-baseline-grids-480x296.png" alt="TypoGridder - a LGPL javascript to add baseline grids" width="480" height="296" /></a><br />
23.</strong><strong><a id="l3034" title="Variable Grid System" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.spry-soft.com');" href="http://www.spry-soft.com/grids/" target="_blank">Variable Grid System</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Variable-Grid-System.png"><img title="Variable Grid System" src="http://fishyoyo.com/wp-content/uploads/2009/08/Variable-Grid-System-480x303.png" alt="Variable Grid System" width="480" height="303" /></a><br />
24.</strong><strong><a id="l3035" title="Web Page Layout Grid" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.smileycat.com');" href="http://www.smileycat.com/miaow/archives/layout_grid.php" target="_blank">Web Page Layout Grid</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/Web-Page-Layout-Grid.png"><img title="Web Page Layout Grid" src="http://fishyoyo.com/wp-content/uploads/2009/08/Web-Page-Layout-Grid-480x257.png" alt="Web Page Layout Grid" width="480" height="257" /></a><br />
25.</strong><strong><a id="l3036" title="WPDFD Browser Grid" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.wpdfd.com');" href="http://www.wpdfd.com/browsergrid.htm" target="_blank">WPDFD Browser Grid</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/wpdfd-Browser-Grid.png"><img title="wpdfd Browser Grid" src="http://fishyoyo.com/wp-content/uploads/2009/08/wpdfd-Browser-Grid-480x267.png" alt="wpdfd Browser Grid" width="480" height="267" /></a><br />
26.</strong><strong><a id="l3037" title="YAML Builder" onclick="javascript:pageTracker._trackPageview('/outbound/article/builder.yaml.de');" href="http://builder.yaml.de/" target="_blank">YAML Builder</a><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/YAML-Builder-A-tool-for-visual-development-of-YAML-based-CSS-layouts.png"><img title="YAML Builder - A tool for visual development of YAML based CSS layouts" src="http://fishyoyo.com/wp-content/uploads/2009/08/YAML-Builder-A-tool-for-visual-development-of-YAML-based-CSS-layouts-480x350.png" alt="YAML Builder - A tool for visual development of YAML based CSS layouts" width="480" height="350" /></a><br />
27.</strong><strong><a id="l3038" title="YUI CSS Grid Builder" onclick="javascript:pageTracker._trackPageview('/outbound/article/developer.yahoo.com');" href="http://developer.yahoo.com/yui/grids/builder/" target="_blank">YUI CSS Grid Builder</a></strong><br />
<a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/YUI-CSS-Grid-Builder.png"><img title="YUI- CSS Grid Builder" src="http://fishyoyo.com/wp-content/uploads/2009/08/YUI-CSS-Grid-Builder-480x238.png" alt="YUI- CSS Grid Builder" width="480" height="238" /></a><br />
<strong>28.<a id="ywmh" title="1kbgrid" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.1kbgrid.com');" href="http://www.1kbgrid.com/" target="_blank">1kbgrid</a></strong></p>
<p><strong><a onclick="return hs.expand(this);" href="http://fishyoyo.com/wp-content/uploads/2009/08/The-1KB-CSS-Grid-by-Tyler-Tate-A-simple-lightweight-approach.png"><img title="The 1KB CSS Grid by Tyler Tate -- A simple, lightweight approach" src="http://fishyoyo.com/wp-content/uploads/2009/08/The-1KB-CSS-Grid-by-Tyler-Tate-A-simple-lightweight-approach-480x148.png" alt="The 1KB CSS Grid by Tyler Tate -- A simple, lightweight approach" width="480" height="148" /></a></strong></p>
<p>原文来自：<a href="http://fishyoyo.com/">http://fishyoyo.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/css-grid-layout.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>慎用@import导入样式文件</title>
		<link>http://zmingcx.com/be-used-with-caution-import-import-style-files.html</link>
		<comments>http://zmingcx.com/be-used-with-caution-import-import-style-files.html#comments</comments>
		<pubDate>Wed, 16 Sep 2009 06:43:00 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/?p=1171</guid>
		<description><![CDATA[WordPress主题一般是在header.php中采用下面的模式导入样式文件: [link rel="stylesheet" href="&#60;?php bloginfo('stylesheet_url'); ?&#62;" type="text/css" media="screen" /]   不知从什么时候开始，越来越多的WordPress主题（特别是国外的）采用在style.css代码最前面， 加入： @import url(../ Theme/style.css);   导入样式文件. 采用@import导入样式文件，网上通俗的说法就是造成无法同时下载不同的样式文件（如果这个主题有多个样式文件），会增加页面总体加载时间，网络状况不好的情况下，刚开始的几秒中会很混乱，所以建议将采用这种模式导入的样式文件的主题，如果不是很复杂的，可以将样式文件合并到style.css中，可能会对博客的打开的速度有所帮助。]]></description>
			<content:encoded><![CDATA[<p>WordPress主题一般是在header.php中采用下面的模式导入样式文件:</p>
<div class="dp-highlighter">
<ol class="dp-c">
<li class="alt"><span><span>[link rel=</span><span class="string">"stylesheet"</span><span> href=</span><span class="string">"&lt;?php bloginfo('stylesheet_url'); ?&gt;"</span><span> type=</span><span class="string">"text/css"</span><span> media=</span><span class="string">"screen"</span><span> /]  </span></span></li>
</ol>
</div>
<p>不知从什么时候开始，越来越多的WordPress主题（特别是国外的）采用在style.css代码最前面， 加入：</p>
<div class="dp-highlighter">
<ol class="dp-c">
<li class="alt"><span><span>@import url(../ Theme/style.css);  </span></span></li>
</ol>
</div>
<p>导入样式文件.</p>
<p>采用@import导入样式文件，网上通俗的说法就是造成无法同时下载不同的样式文件（如果这个主题有多个样式文件），会增加页面总体加载时间，网络状况不好的情况下，刚开始的几秒中会很混乱，所以建议将采用这种模式导入的样式文件的主题，如果不是很复杂的，可以将样式文件合并到style.css中，可能会对博客的打开的速度有所帮助。</p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/be-used-with-caution-import-import-style-files.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>100余款网站幻灯广告源代码打包下载</title>
		<link>http://zmingcx.com/balance-100-slide-advertising-site-to-download-the-source-code-package.html</link>
		<comments>http://zmingcx.com/balance-100-slide-advertising-site-to-download-the-source-code-package.html#comments</comments>
		<pubDate>Mon, 14 Sep 2009 09:52:20 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web设计]]></category>
		<category><![CDATA[广告代码]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/?p=1159</guid>
		<description><![CDATA[flash幻灯基本上是各大网站必备的元素，弄个幻灯加到WP主题装饰一下自己的博客也是不错的选择，这100多幻灯源码基本上汇集了众多网站幻灯源代码。 纳米盘打包下载]]></description>
			<content:encoded><![CDATA[<p><a href="http://zmingcx.com/wp-content/uploads/2009/09/1252921458438.jpg"><img class="aligncenter size-full wp-image-1161" title="_1252921458438" src="http://zmingcx.com/wp-content/uploads/2009/09/1252921458438.jpg" alt="_1252921458438" width="497" height="233" /></a></p>
<p>flash幻灯基本上是各大网站必备的元素，弄个幻灯加到WP主题装饰一下自己的博客也是不错的选择，这100多幻灯源码基本上汇集了众多网站幻灯源代码。</p>
<address><a href="http://d.namipan.com/d/94670b3c7883867a2b0e239c72074c1eab553b3971e66501"><strong>纳米盘打包下载</strong></a></address>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/balance-100-slide-advertising-site-to-download-the-source-code-package.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>36个JQuery导航菜单(转)</title>
		<link>http://zmingcx.com/36-ge-yin-ren-zhu-mu-jquery-dao-hang-cai-dan-zhuan.html</link>
		<comments>http://zmingcx.com/36-ge-yin-ren-zhu-mu-jquery-dao-hang-cai-dan-zhuan.html#comments</comments>
		<pubDate>Thu, 03 Sep 2009 08:54:00 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/36-ge-yin-ren-zhu-mu-jquery-dao-hang-cai-dan-zhuan.html</guid>
		<description><![CDATA[导航菜单在任何网站中都占有举足轻重的地位。对于充满了大量页面与文章的大型网站来说，下拉菜单于选项卡菜单非常受欢迎，这是因为用户可以通过他们 轻松的浏览网站，同时运用动态的选项卡显示内容能节省网站大量的空间。加入你也想创建一个属于自己的与众不同导航菜单的话，jQuery是提供一套定制选 项的正确选择。这就是为什么我想大家推荐36个jquery导航菜单实例的原因。 1.jQuery 选项卡界面 / 选项卡结构菜单教程 这种类型的菜单在网页设计与开发中非常著名的。此片教程是向大家展示如何使用jQuery的向下滑动/向上滑动效果创建属于你自己的选项卡菜单。要 非常留心此演示哟，你一定会喜欢上它的。 Preview &#124;&#124; Download 2.效果生动逼真的jQuery菜单 学习如何使用简易的XHTML/CSS/JS创建令人惊奇的效果生动逼真的菜单，类似 Dragon Interactive (dragoninteractive.com). Preview &#124;&#124; Download 3. 使用CSS和jQuery创建非常Cool的动画效果导航 (教程 + 下载) 动画及视觉反馈是帮助用户在浏览和网站与网站互动的有效手段。虽然传统的Adobe的Flash是可以完成各种动画效果的，但是最近使用 JavaScript的魔法，我们可以完全避免使用flash。 Preview &#124;&#124; Download 4.jQuery目录导航插件 这个jQuery插件为我们提供了添加基于字母顺序的导航小部件到有序和无序列表的方法。一个在列表之上的简易的(via CSS)导航条，向用户展示从A到Z的检索。通过从列表中选择一个字母来显示以此字母开头的所有元素。在可选字母上面显示的计数，是表明当你点击此字母的 时候会有多少项目被现实。除此之外还有其他的基本功能可供选择。 Preview &#124;&#124; Download 5. jqDock 菜单 变换图标模仿mac的Dock菜单, 水平或者垂直，以图标扩大过渡可选的标签。 Preview &#124;&#124; Download 6.Jquery滑动菜单 这篇教程是像我们讲解与下载jquery滑动菜单，你可以在PSDtuts网页右上角查看效果。 This is how looks finished demo version: Preview [...]]]></description>
			<content:encoded><![CDATA[<p>导航菜单在任何网站中都占有举足轻重的地位。对于充满了大量页面与文章的大型网站来说，下拉菜单于选项卡菜单非常受欢迎，这是因为用户可以通过他们   轻松的浏览网站，同时运用动态的选项卡显示内容能节省网站大量的空间。加入你也想创建一个属于自己的与众不同导航菜单的话，jQuery是提供一套定制选  项的正确选择。这就是为什么我想大家推荐36个jquery导航菜单实例的原因。</p>
<h2>1.<a href="http://www.queness.com/post/106/jquery-tabbed-interfacetabbed-structure-menu-tutorial" target="_blank">jQuery 选项卡界面 / 选项卡结构菜单教程</a></h2>
<p>这种类型的菜单在网页设计与开发中非常著名的。此片教程是向大家展示如何使用jQuery的向下滑动/向上滑动效果创建属于你自己的选项卡菜单。要 非常留心此演示哟，你一定会喜欢上它的。</p>
<p><a href="http://www.queness.com/post/106/jquery-tabbed-interfacetabbed-structure-menu-tutorial" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-tabbed-interface.jpg" alt="jquery-tabbed-interface" width="570" height="238" /></a></p>
<p><a href="http://www.queness.com/resources/html/tabmenu/jquery-tabbed-menu-queness.html" target="_blank">Preview </a> || <a href="http://www.queness.com/resources/archives/jquery-tab-menu.zip" target="_blank">Download</a></p>
<h2>2.<a href="http://www.shopdev.co.uk/blog/animated-menus-using-jquery/" target="_blank">效果生动逼真的jQuery菜单</a></h2>
<p>学习如何使用简易的XHTML/CSS/JS创建令人惊奇的效果生动逼真的菜单，类似 <a href="http://dragoninteractive.com/" target="_blank">Dragon Interactive</a> (dragoninteractive.com).</p>
<p><a href="http://www.shopdev.co.uk/blog/animated-menus-using-jquery/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-animated-menu.jpg" alt="jquery-animated-menu" width="570" height="100" /></a></p>
<p><a href="http://www.shopdev.co.uk/blog/menuDemo.html" target="_blank">Preview</a> || <a href="http://www.shopdev.co.uk/blog/menuTut.psd" target="_blank">Download</a></p>
<h2>3. <a href="http://nettuts.com/javascript-ajax/create-a-cool-animated-navigation-with-css-and-jquery/" target="_blank">使用CSS和jQuery创建非常Cool的动画效果导航 (教程 + 下载)</a></h2>
<p>动画及视觉反馈是帮助用户在浏览和网站与网站互动的有效手段。虽然传统的Adobe的Flash是可以完成各种动画效果的，但是最近使用 JavaScript的魔法，我们可以完全避免使用flash。</p>
<p><a href="http://nettuts.com/javascript-ajax/create-a-cool-animated-navigation-with-css-and-jquery/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-navigation-slide.jpg" alt="jquery-navigation-slide" width="570" height="160" /></a></p>
<p><a href="http://nettuts.com/javascript-ajax/create-a-cool-animated-navigation-with-css-and-jquery/" target="_blank">Preview</a> || <a href="http://nettuts.s3.amazonaws.com/009_jQueryMenu/sm/result.zip" target="_blank">Download</a></p>
<h2>4.<a href="http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx" target="_blank">jQuery目录导航插件</a></h2>
<p>这个jQuery插件为我们提供了添加基于字母顺序的导航小部件到有序和无序列表的方法。一个在列表之上的简易的(via  CSS)导航条，向用户展示从A到Z的检索。通过从列表中选择一个字母来显示以此字母开头的所有元素。在可选字母上面显示的计数，是表明当你点击此字母的  时候会有多少项目被现实。除此之外还有其他的基本功能可供选择。</p>
<p><a href="http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-list-nav.jpg" alt="jquery-list-nav" width="570" height="143" /></a></p>
<p><a href="http://www.ihwy.com/Labs/Demos/Current/jquery-listnav-plugin.aspx" target="_blank">Preview </a> || <a href="http://www.ihwy.com/Labs/downloads/jquery-listnav/2.0/jquery.listnav-2.0.js" target="_blank">Download</a></p>
<h2>5. <a href="http://plugins.jquery.com/project/jqDock" target="_blank">jqDock 菜单</a></h2>
<p>变换图标模仿mac的Dock菜单, 水平或者垂直，以图标扩大过渡可选的标签。</p>
<p><a href="http://plugins.jquery.com/project/jqDock" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jqdock-jquery-plugin-menu.jpg" alt="jqdock-jquery-plugin-menu" width="474" height="303" /></a></p>
<p><a href="http://www.wizzud.com/jqDock/" target="_blank">Preview</a> || <a href="http://www.wizzud.com/jqDock/" target="_blank">Download</a></p>
<h2>6.<a href="http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/" target="_blank">Jquery滑动菜单</a></h2>
<p>这篇教程是像我们讲解与下载jquery滑动菜单，你可以在PSDtuts网页右上角查看效果。</p>
<p><a href="http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-sliding-menu-tutplus.jpg" alt="jquery-sliding-menu-tutplus" width="570" height="131" /></a></p>
<p>This is how looks finished demo version:</p>
<p><a href="http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/vertical-sliding-menu.jpg" alt="vertical-sliding-menu" width="570" height="167" /></a></p>
<p><a href="http://www.hv-designs.co.uk/tutorials/sliding_menu/sliding_menu.html" target="_blank">Preview</a> || <a href="http://www.hv-designs.co.uk/tutorials/sliding_menu/sample.zip" target="_blank">Download</a></p>
<h2>7.<a href="http://www.alistapart.com/articles/sprites2" target="_blank">CSS 精灵 2 – 是JavaScript的时间</a></h2>
<h2><a href="http://www.alistapart.com/articles/sprites2" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/css-sprites-2-jquery.jpg" alt="css-sprites-2-jquery" width="570" height="110" /></a></h2>
<p><a href="http://www.alistapart.com/d/sprites2/examples/example1-css.html" target="_blank">Preview</a></p>
<h2>8. <a href="http://www.ndesign-studio.com/blog/design/css-dock-menu/" target="_blank">CSS Mac Dock 菜单</a></h2>
<p>如果你是Mac深度中毒者,你会爱上我设计的这个CSS dock菜单。他使用了Jquery  Javascript库和Fisheye部件界面以及我的一些图标。它有两种停靠风格-上端与下端。这个菜单加入到我的ITHEME中非常好。</p>
<p><a href="http://www.ndesign-studio.com/blog/design/css-dock-menu/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/css-dock-menu-jquery.jpg" alt="css-dock-menu-jquery" width="549" height="120" /></a></p>
<p><a href="http://www.ndesign-studio.com/demo/css-dock-menu/css-dock.html" target="_blank">Preview</a> || <a href="http://www.ndesign-studio.com/file/css-dock-menu.zip" target="_blank">Download</a></p>
<h2>9.<a href="http://www.jeremymartin.name/projects.php?project=kwicks" target="_blank">jQuery的Kwicks菜单</a></h2>
<p>Kwicks起源于Mootools中的一个效果(相同名字),逐渐演变成一个高度可定制的通用部件.</p>
<h2><a href="http://www.jeremymartin.name/projects.php?project=kwicks" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/kwicks-jquery-menu-navigation.jpg" alt="kwicks-jquery-menu-navigation" width="570" height="104" /></a></h2>
<p><a href="http://www.jeremymartin.name/examples/kwicks.php?example=1" target="_blank">7 Examples</a> || <a href="http://kwicks.googlecode.com/svn/branches/v1.5.1/Kwicks/Kwicks-1.5.1.zip" target="_blank">Download</a></p>
<h2>10.<a href="http://abeautifulsite.net/notebook.php?article=58" target="_blank">Jquery文件树</a></h2>
<p>jQuery文件树是一个可配置的， AJAX的文件浏览器jQuery插件  。您可以只用一行JavaScript代码创建一个定制的，完全互动的文件树。目前，服务器端连接器的脚本支持PHP, ASP, ASP.NET,  JSP, 与Lasso。如果您是开发人员，可以轻松地使用所选语言创建自己的连接。</p>
<h2><a href="http://abeautifulsite.net/notebook.php?article=58" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-file-tree-navigation.jpg" alt="jquery-file-tree-navigation" width="570" height="180" /></a></h2>
<p><a href="http://abeautifulsite.net/notebook_files/58/demo/" target="_blank">Preview</a> || <a href="http://abeautifulsite.net/notebook_files/58/jqueryFileTree.zip" target="_blank">Download</a></p>
<h2>11.<a href="http://css-tricks.com/learning-jquery-fading-menu-replacing-content/" target="_blank">学习jQuery: 褪色菜单 -更换内容</a></h2>
<p>CSS-tricks上很好的教程，讲解如何使用css和jQuery, 这次是他们教导如何使用 jquery使得菜单选项褪色。</p>
<p><a href="http://css-tricks.com/learning-jquery-fading-menu-replacing-content/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/menu-fader-jquery-navigation.jpg" alt="menu-fader-jquery-navigation" width="570" height="145" /></a></p>
<p><a href="http://css-tricks.com/examples/MenuFader/" target="_blank">Preview</a> || <a href="http://css-tricks.com/examples/MenuFader.zip" target="_blank">Download</a></p>
<h2>12. <a href="http://buildinternet.com/2009/01/how-to-make-a-smooth-animated-menu-with-jquery/" target="_blank">如何使用jQuery创建顺滑生动的菜单</a></h2>
<p>曾经见过一些优秀的jQuery导航，你有想自己创建一个的冲动么？ 这篇教程是教你怎样建立拥有顺畅动画效果的菜单。</p>
<p><a href="http://buildinternet.com/2009/01/how-to-make-a-smooth-animated-menu-with-jquery/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/smooth-animated-jquery-menu.jpg" alt="smooth-animated-jquery-menu" width="570" height="160" /></a></p>
<p><a href="http://buildinternet.com/live/smoothmenu/animated-menu.html" target="_blank">Preview</a> || <a href="http://buildinternet.com/live/smoothmenu/animated-menu.zip" target="_blank">Download</a></p>
<h2>13.<a href="http://www.jankoatwarpspeed.com/post/2009/01/19/Create-Vimeo-like-top-navigation.aspx" target="_blank">Create Vimeo-like top navigation </a></h2>
<p>学习如何创建像 Vimeo网站的导航菜单 ，虽然只用了xhtml,css used,但是我仍然想包含他。</p>
<p><a href="http://www.jankoatwarpspeed.com/post/2009/01/19/Create-Vimeo-like-top-navigation.aspx" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/create-vimeo-like-top-navigation.jpg" alt="create-vimeo-like-top-navigation" width="570" height="136" /></a></p>
<p><a href="http://www.jankoatwarpspeed.com/examples/vimeo_navigation/" target="_blank">Preview</a> + <a href="http://vimeo.com/" target="_blank">Vimeo site</a> || <a href="http://www.jankoatwarpspeed.com/file.axd?file=2009%2F1%2Fvimeo_navigation.zip" target="_blank">Download</a></p>
<h2>14. <a href="http://pupunzi.wordpress.com/2009/01/18/mbmenu/" target="_blank">jQuery (mb)菜单 2.3</a></h2>
<p>这是一个强大的jQuery 部件，轻松创建更加直观的多级树形菜单或者继承菜单 (右击)!</p>
<p>你可以添加许多子菜单；如果子菜单或者菜单在页面中没有声明，组件会通过AJAX通过调取菜单中的模板页ID来获取。你需要的（菜单属性 值）ajax页面会返回并作为下面的菜单实例而格式化代码。<br />
<span id="more-1121"></span><br />
<a href="http://pupunzi.wordpress.com/2009/01/18/mbmenu/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-mb-menu-navigation.jpg" alt="jquery-mb-menu-navigation" width="570" height="190" /></a></p>
<p><a href="http://www.open-lab.com/mb.ideas/index.html#mbMenu" target="_blank">Preview</a> || <a href="http://www.open-lab.com/mb.ideas/demo/jquery.mbMenu/jquery.mbMenu.zip" target="_blank">Download</a></p>
<h2>15. <a href="http://www.ndoherty.com/blog/category/coda-slider" target="_blank">Coda 滑动菜单</a></h2>
<p><a href="http://www.ndoherty.com/blog/category/coda-slider" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/coda-slider-jquery.jpg" alt="coda-slider-jquery" width="570" height="245" /></a></p>
<p><a href="http://www.ndoherty.com/demos/coda-slider/1.1.1/" target="_blank">Preview</a> || <a href="http://www.ndoherty.com/demos/coda-slider/1.1.1/coda-slider.1.1.1.zip" target="_blank">Download</a></p>
<h2>16. <a href="http://www.sunsean.com/idTabs/#t2" target="_blank">jQuery  idTabs</a></h2>
<p>idTabs是jQuery的插件。他能非常容易的为网站添加选项卡. 但是他也为无穷的可能性敞开大门。</p>
<p><a href="http://www.sunsean.com/idTabs/#t2" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/idtabs-jquery-navigation.jpg" alt="idtabs-jquery-navigation" width="570" height="102" /></a></p>
<p><a href="http://www.sunsean.com/idTabs/#t1" target="_blank">Preview</a> || <a href="http://www.sunsean.com/idTabs/jquery.idTabs.min.js" target="_blank">Download</a></p>
<h2>17. <a href="http://nettuts.com/tutorials/html-css-techniques/how-to-create-a-slick-tabbed-content-area/" target="_blank">使用CSS &amp; jQuery创建顺畅的选显卡内容区</a></h2>
<p>网页设计师设法把大量的信息浓缩在一个网页上而不失可用性是最大的挑战之一。内容选项卡化是处理此类问题非常棒的方法，最近广泛被应用于博客。这是 一篇非常棒的教程讲解，使用HTML建立一个小的选项卡信息盒，最后使用一些简单js功能与jQuery库实现。</p>
<p><a href="http://nettuts.com/tutorials/html-css-techniques/how-to-create-a-slick-tabbed-content-area/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/slick-tabbed-content-area-css-jquery.jpg" alt="slick-tabbed-content-area-css-jquery" width="570" height="197" /></a></p>
<p><a href="http://nettuts.s3.amazonaws.com/001_Tabbed/site/jQuery.html" target="_blank">Preview</a></p>
<h2>18. <a href="http://www.gmarwaha.com/blog/category/client-side/jquery/" target="_blank">为jQuery爱好者准备的熔岩灯!</a></h2>
<p>轻量级Lavalamp菜单通过令人惊奇的jQuery javascript 库封装成的插件.</p>
<p><a href="http://www.gmarwaha.com/blog/category/client-side/jquery/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/lava-lamp-jquery-navigation.jpg" alt="lava-lamp-jquery-navigation" width="570" height="79" /></a></p>
<p><a href="http://www.gmarwaha.com/blog/category/client-side/jquery/" target="_blank">Preview</a> || <a href="http://www.gmarwaha.com/jquery/lavalamp/zip/lavalamp_0.1.0.zip" target="_blank">Download</a></p>
<h2>19. <a href="http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/" target="_blank">jQuery下拉动画菜单</a></h2>
<p>下拉菜单是一个非常便利的范式，使大菜单浓缩在小的初始空间内。很长一段时间人们只是使用一种形式的标准下拉模式，但是只需小小的努力你就可以使用 jQuery 和 CSS创建雨刷效果的菜单。</p>
<p><a href="http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/animated-dropdown-menu-jquery.jpg" alt="animated-dropdown-menu-jquery" width="570" height="199" /></a></p>
<p><a href="http://clarklab.net/blog/articles/dropdown/example.html" target="_blank">Preview</a> || <a href="http://clarklab.net/blog/articles/dropdown/animateddropdown.zip" target="_blank">Download</a></p>
<h2>20. <a href="http://snook.ca/technical/jquery-bg/" target="_blank">运 用jQuery使背景图片生动起来</a></h2>
<p>五种不同的方式，如何使用jquery创建生动的背景图片真实效果</p>
<p><a href="http://snook.ca/technical/jquery-bg/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-background-image-animations.jpg" alt="jquery-background-image-animations" width="570" height="75" /></a></p>
<p><a href="http://snook.ca/technical/jquery-bg/" target="_blank">Preview</a></p>
<h2>21. <a href="http://nettuts.com/html-css-techniques/how-to-create-a-mootools-homepage-inspired-navigation-effect-using-jquery/" target="_blank">怎样使用jQuery创建‘Mootools 主页’有创造性的导航效果<br />
</a></h2>
<p>正如你说知道的那样，现在有许多的相互竞争的javascript库 ，虽然我喜欢jQuery, 但是我过去总喜欢运行在MooTools  上的菜单。因此，在本指南中，我们将要使用jQuery创建相同效果的菜单!</p>
<p><a href="http://nettuts.com/html-css-techniques/how-to-create-a-mootools-homepage-inspired-navigation-effect-using-jquery/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/mootools-homepage-navigation-effect.jpg" alt="mootools-homepage-navigation-effect" width="570" height="239" /></a></p>
<p><a href="http://nettuts.s3.amazonaws.com/004_Moo/tutorial/demo/demo.html" target="_blank">Preview</a> || <a href="http://nettuts.s3.amazonaws.com/004_Moo/tutorial/demo/Download.zip" target="_blank">Download</a></p>
<h2>22. <a href="http://greengeckodesign.com/projects/menumatic.aspx" target="_blank">Menumatic Mootools</a></h2>
<p>MenuMatic是MooTools 1.2中使用语义列表或无序列表链接变成动态下拉菜单系统的类。For users without  javascript, it falls back on a CSS menu system based on Matthew  Carroll’s keyboard accessible flavor of Suckerfish Dropdowns by Patrick  Griffiths and Dan Webb.( 不知如何翻译是好，&gt;.&lt; )</p>
<p><a href="http://greengeckodesign.com/projects/menumatic.aspx" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/menumatic-vertical-menu-jquery.jpg" alt="menumatic-vertical-menu-jquery" width="570" height="324" /></a></p>
<p><a href="http://greengeckodesign.com/projects/menumatic/examples/vertical/" target="_blank">Preview Vertical</a> || <a href="http://greengeckodesign.com/projects/menumatic/examples/horizontal/" target="_blank">Preview horizontal </a> || <a href="http://menumatc.googlecode.com/files/MenuMatic_0.68.3.zip" target="_blank">Download</a></p>
<h2>23. <a href="http://www.gayadesign.com/diy/jquery-convertion-garagedoor-effect-using-javascript/" target="_blank">jQuery convertion: 使用Javascript的车库门效果</a></h2>
<p>所有的jQuery粉丝们: 这里是使用jQuery的车库门效果!</p>
<p><a href="http://www.gayadesign.com/diy/jquery-convertion-garagedoor-effect-using-javascript/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/garage-door-jquery-menu.jpg" alt="garage-door-jquery-menu" width="570" height="181" /></a></p>
<p><a href="http://www.gayadesign.com/scripts/jquerygaragedoor/" target="_blank">Preview</a> || <a href="http://www.gayadesign.com/scripts/jquerygaragedoor/jquerygarage.zip" target="_blank">Download</a></p>
<h2>24. <a href="http://www.mattweltman.com/sliding_tabs.html" target="_blank">Perspective tabs</a></h2>
<p>Perspective tabs是一个非常简单的 mootools 1.2 插件，可以在小空间内插入大量的选项卡。</p>
<p><a href="http://www.mattweltman.com/sliding_tabs.html" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/perspective-tabs-mootools-menu.jpg" alt="perspective-tabs-mootools-menu" width="570" height="255" /></a></p>
<h2>25. <a href="http://marcgrabanski.com/pages/code/fisheye-menu" target="_blank">Fisheye 菜单</a></h2>
<p>Fisheye菜单是基于MacOSX文档可展开的菜单。</p>
<p><a href="http://marcgrabanski.com/pages/code/fisheye-menu" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/fisheye-menu-jquery.jpg" alt="fisheye-menu-jquery" width="570" height="203" /></a></p>
<p><a href="http://marcgrabanski.com/webroot/mint/pepper/orderedlist/downloads/download.php?file=http%3A//marcgrabanski.com/resources/fisheye-menu/fisheye-menu.zip" target="_blank">Download</a></p>
<h2>26. <a href="http://www.leigeber.com/2008/05/sliding-javascript-menu-highlight-1kb/" target="_blank">JavaScript滑动菜单 高亮 1kb</a></h2>
<p>这滑动悬停效果脚本是为你的导航菜单添加一些风味的简单方法。使用CSS你可以方便的自定义菜单来满足你的“外观与感觉”要求。  脚本非常的简单，如下.</p>
<p><a href="http://www.leigeber.com/2008/05/sliding-javascript-menu-highlight-1kb/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/sliding-javascript-menu-highlight.jpg" alt="sliding-javascript-menu-highlight" width="570" height="106" /></a></p>
<p><a href="http://www.leigeber.com/wp-content/uploads/2008/05/menueffect.zip" target="_blank">Download</a></p>
<h2>27. <a href="http://www.chromasynthetic.com/blog/mootools-demo-redux/57/" target="_blank">Mootools Demo Redux</a></h2>
<p>简单的可展开的Javascript导航菜单</p>
<p><a href="http://www.chromasynthetic.com/blog/mootools-demo-redux/57/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/mootools-demo-redux.jpg" alt="mootools-demo-redux" width="570" height="117" /></a></p>
<p><a href="http://www.chromasynthetic.com/blog/uploads/mootools_nav_example.html" target="_blank">Preview</a></p>
<h2>28. <a href="http://berndmatzner.de/jquery/hoveraccordion/" target="_blank">HoverAccordion</a></h2>
<p>no-click二级菜单jQuery插件  (你可以用它他做任何你想做的).</p>
<p><a href="http://berndmatzner.de/jquery/hoveraccordion/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/hover-accordion-jquery.jpg" alt="hover-accordion-jquery" width="570" height="325" /></a></p>
<h2>29. <a href="http://www.dezinerfolio.com/2007/07/19/simple-javascript-accordions/" target="_blank">简单的Javascript手风琴菜单</a></h2>
<p>Javascript手风琴菜单在如今的网页设计师世界广为使用。我们看到有很多的这样的脚本。这是其中一个非常小的极其简单容易使用的手风琴菜单 脚本。不需要任何的框架并跨浏览器兼容。</p>
<p><a href="http://www.dezinerfolio.com/2007/07/19/simple-javascript-accordions/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/simple-javascript-accordion-jquery.jpg" alt="simple-javascript-accordion-jquery" width="468" height="193" /></a></p>
<p><a href="http://www.dezinerfolio.com/wp-content/uploads/accordemo/01.html" target="_blank">Preview</a> || <a href="http://www.dezinerfolio.com/system/files/simple_accordions_with_src.zip" target="_blank">Download</a></p>
<h2>30. <a href="http://tools.uvumi.com/dropdown.html" target="_blank">UvumiTools  下拉菜单</a></h2>
<p>UvumiTools下拉菜单是非常简单的多级菜单，由HTML无序列表构造而成，使用 Mootools Javascript  框架，通过简单的 &lt;ul&gt; HTML 元素进行编辑.<br />
<!--more--><br />
<a href="http://tools.uvumi.com/dropdown.html" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/uvumi-tools-dropdown-menu.jpg" alt="uvumi-tools-dropdown-menu" width="570" height="161" /></a></p>
<h2>31. <a href="http://www.kriesi.at/archives/create-a-multilevel-dropdown-menu-with-css-and-improve-it-via-jquery" target="_blank">使用css和jQuery创建多级下拉菜单</a></h2>
<p><a href="http://www.kriesi.at/archives/create-a-multilevel-dropdown-menu-with-css-and-improve-it-via-jquery" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/multilevel-dropdown-menu-jquery.jpg" alt="multilevel-dropdown-menu-jquery" width="490" height="117" /></a></p>
<p><a href="http://www.kriesi.at/wp-content/extra_data/suckerfish_tutorial/step4.html" target="_blank">Preview</a> || <a href="http://www.kriesi.at/wp-content/uploads/files/dropdown.zip" target="_blank">Download</a></p>
<h2>32. <a href="http://designreviver.com/tutorials/jquery-css-example-dropdown-menu/" target="_blank">jQuery &amp; CSS 实例 – 下拉菜单</a></h2>
<p>下拉菜单与菜单条在早期的图形用户界面已经被大量使用。他们的使用变得无处不在,甚至预期，桌面应用程序，以及在网上迅速跟进。本文旨在描述最基本 的，但是最强的技术，为您的应用程序或者网站的用户界面设计添加下拉菜单。</p>
<p><a href="http://designreviver.com/tutorials/jquery-css-example-dropdown-menu/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-css-example-dropdown-menu.jpg" alt="jquery-css-example-dropdown-menu" width="510" height="183" /></a></p>
<p><a href="http://designreviver.com/wp-content/uploads/2008/10/example.html" target="_blank">Preview</a></p>
<h2>33. <a href="http://nettuts.com/html-css-techniques/creating-a-floating-html-menu-using-jquery-and-css/" target="_blank">浮动的菜单jQuery&amp;CSS</a></h2>
<p>对我们所有的人来说，为了使用菜单，处理长的页面需要滚动到页面的顶端，这有一个不错的选择，浮动的菜单帮随着页面的滚动。 HTML, CSS 与  jQuery, 完全遵守W3C。</p>
<p><a href="http://nettuts.com/html-css-techniques/creating-a-floating-html-menu-using-jquery-and-css/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/live-floating-menu-jquery.jpg" alt="live-floating-menu-jquery" width="231" height="203" /></a></p>
<p><a href="https://nettuts.s3.amazonaws.com/018_Floating_Menu/demo/dhtml_float_menu_final_nettut.html" target="_blank">Preview</a> || <a href="https://nettuts.s3.amazonaws.com/018_Floating_Menu/code-floating-menu.zip" target="_blank">Download</a></p>
<h2>34. <a href="http://users.tpg.com.au/j_birch/plugins/superfish/#getting-started" target="_blank">Superfish – jQuery菜单插件</a></h2>
<p>Superfish是Suckerfish-style 菜单的加强型 jQuery插件。现在有纯CSS下拉菜单（所以没有js降低优雅性）  并增加了以下非常抢手的改进：</p>
<p><a href="http://users.tpg.com.au/j_birch/plugins/superfish/#getting-started" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/superfish-examples-jquery.jpg" alt="superfish-examples-jquery" width="415" height="186" /></a></p>
<p><a href="http://users.tpg.com.au/j_birch/plugins/superfish/#examples" target="_blank">Preview</a> || <a href="http://users.tpg.com.au/j_birch/plugins/superfish/#download" target="_blank">Download</a></p>
<h2>35. <a href="http://plugins.jquery.com/project/Pager" target="_blank">JQuery Pager</a></h2>
<p>一个简单的JQuery插件，为数据驱动的Web应用程序提供分页功能界面。</p>
<p><a href="http://plugins.jquery.com/project/Pager" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-pager-menu.jpg" alt="jquery-pager-menu" width="417" height="139" /></a></p>
<p><a href="http://jonpauldavies.github.com/JQuery/Pager/PagerDemo.html" target="_blank">Preview</a> || <a href="http://plugins.jquery.com/files/jquery-pager-plugin_0.zip" target="_blank">Download</a></p>
<h2>36. <a href="http://www.komodomedia.com/blog/2008/10/jquery-feed-menus/" target="_blank">jQuery feed 菜单 </a></h2>
<p>当feeds变得流行，在你的网站上它有一个为读者指向的RSS或者Atom  feeds图标。做为feeds，在国外博客与网站中更为普遍。存在多个供稿的比比皆是，这里是 jquery feed 菜单解决方案!</p>
<p><a href="http://www.komodomedia.com/blog/2008/10/jquery-feed-menus/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2009/05/jquery-nav-menu/jquery-feed-menus.jpg" alt="jquery-feed-menus" width="491" height="204" /></a></p>
<p><a href="http://www.komodomedia.com/mint/pepper/orderedlist/downloads/download.php?file=http%3A//www.komodomedia.com/samples/feed_menu/jquery_feed_menu.zip" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/36-ge-yin-ren-zhu-mu-jquery-dao-hang-cai-dan-zhuan.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS浮雕效果</title>
		<link>http://zmingcx.com/css-embossed-effect.html</link>
		<comments>http://zmingcx.com/css-embossed-effect.html#comments</comments>
		<pubDate>Sat, 25 Apr 2009 15:03:34 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web设计]]></category>
		<category><![CDATA[浮雕效果]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/css-embossed-effect.html</guid>
		<description><![CDATA[一直在作仿Apple风格的主题，但是Apple有一个文字效果一直不能模仿出来，那就是浮雕效果如图，采用CSS样式制作浮雕效果文字网上搜索了很久，一直没有一个完美的答案，今天从国外网站看到一个利用CSS样式作出浮雕效果的文章，效果非常好，兼容各主流浏览器，不过要应用到WordPress主题上还得具体实践下。 ◆点击这里查看具体效果 原文（英文）：http://www.howtocreate.co.uk/textshadow.html]]></description>
			<content:encoded><![CDATA[<p>一直在作仿Apple风格的主题，但是Apple有一个文字效果一直不能模仿出来，那就是浮雕效果如图，采用CSS样式制作<span id="more-1050"></span>浮雕效果文字网上搜索了很久，一直没有一个完美的答案，今天从国外网站看到一个利用CSS样式作出浮雕效果的文章，效果非常好，兼容各主流浏览器，不过要应用到WordPress主题上还得具体实践下。</p>
<p><a href="http://zmingcx.cn/wp-content/uploads/2009/04/shadows.htm"><img class="alignnone" src="http://www.reynoldsftw.com/wp-content/uploads/2009/03/emboss7.png" alt="" width="299" height="75" /></a></p>
<p><strong><span style="color: #800000;"><a href="http://zmingcx.con/wp-content/uploads/2009/04/shadows.htm" target="_blank">◆点击这里查看具体效果</a></span></strong></p>
<p>原文（英文）：<a href="http://www.howtocreate.co.uk/textshadow.html">http://www.howtocreate.co.uk/textshadow.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/css-embossed-effect.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10个优秀的 Web UI库及框架</title>
		<link>http://zmingcx.com/10-excellent-library-and-framework-for-web-ui.html</link>
		<comments>http://zmingcx.com/10-excellent-library-and-framework-for-web-ui.html#comments</comments>
		<pubDate>Sat, 25 Apr 2009 13:41:01 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/10-excellent-library-and-framework-for-web-ui.html</guid>
		<description><![CDATA[UI(User Interface)即用户界面，也称人机界面。是指用户和某些系统进行交互方法的集合，实现信息的内部形式与人类可以接受形式之间的转换。本文为WUI用户整理了10个优秀的 Web UI 库/框架，为你的下一个Web设计的高效开发作好准备。 1. IT Mill Toolkit IT Mill Toolkit是一个开源的Web UI 框架，为富 Web 应用程序提供widgets 和工具。无需担忧Web 浏览器、DOM 、 JavaScript的兼容性性问题。 2. LivePipe UI LivePipe UI 是一系列基于 Prototype  JavaScript 框架建立的高质量Web 2.0 widgets 和 controls 应用。 每一个应用都经过正常测试，具有高扩展性，完善的文档可以帮助你更好地学习使用这个Web UI框架。 3. Iwebkit iPhone/iPod touch 框架 Iwebkit 帮助你在几分钟时间内创建一个高质量的 iPhone 和 iPod touch 网站，应用非常广泛。 4. Jitsu Jitsu 包含一系列完善的工具，帮助开发者建立和部署精密成熟的用户接口，它还包括Xml标记语言、 页面编译器、数据绑定、JavaScript runtime、控制库、 runtime [...]]]></description>
			<content:encoded><![CDATA[<p>UI(User Interface)即用户界面，也称人机界面。是指用户和某些系统进行交互方法的集合，实现信息的内部形式与人类<span id="more-1049"></span>可以接受形式之间的转换。本文为WUI用户整理了10个优秀的 Web UI 库/框架，为你的下一个Web设计的高效开发作好准备。</p>
<p><strong>1. IT Mill Toolkit</strong><br />
<img style="display: inline; margin-left: 0px; margin-right: 0px;" src="http://www.kooxo.com/uploads/allimg/090315/2214280.png" alt="" align="right" /><a href="http://www.itmill.com/itmill-toolkit/" target="_blank" onfocus="onfocus">IT Mill Toolkit</a>是一个开源的Web UI 框架，为富 Web 应用程序提供widgets 和工具。无需担忧Web 浏览器、DOM 、 JavaScript的兼容性性问题。</p>
<p><strong>2. LivePipe UI<img style="display: inline; margin-left: 0px; margin-right: 0px;" src="http://www.kooxo.com/uploads/allimg/090315/2214281.png" alt="" align="right" /></strong><br />
<a href="http://livepipe.net/" onfocus="onfocus">LivePipe UI</a> 是一系列基于 Prototype  JavaScript 框架建立的高质量Web 2.0 widgets 和 controls 应用。 每一个应用都经过正常测试，具有高扩展性，完善的文档可以帮助你更好地学习使用这个Web UI框架。</p>
<p><strong></strong></p>
<p><strong>3. Iwebkit iPhone/iPod touch 框架</strong> <img style="display: inline; margin-left: 0px; margin-right: 0px;" src="http://www.kooxo.com/uploads/allimg/090315/2214282.png" alt="" align="right" /><br />
<a href="http://www.iwebkit.net/" target="_blank" onfocus="onfocus">Iwebkit</a> 帮助你在几分钟时间内创建一个高质量的 iPhone 和 iPod touch 网站，应用非常广泛。</p>
<p><strong>4. Jitsu<img style="display: inline; margin-left: 0px; margin-right: 0px;" src="http://www.kooxo.com/uploads/allimg/090315/2214283.png" alt="" align="right" /></strong><br />
<a href="http://www.jitsu.org/" onfocus="onfocus">Jitsu</a> 包含一系列完善的工具，帮助开发者建立和部署精密成熟的用户接口，它还包括Xml标记语言、 页面编译器、数据绑定、JavaScript runtime、控制库、 runtime inspector、 animation engine、 cross-platform library、 Ajax 和 back button 等。</p>
<p><strong>5. MochaUI <img style="display: inline; margin-left: 0px; margin-right: 0px;" src="http://www.kooxo.com/uploads/allimg/090315/2214284.png" alt="" align="right" /></strong><br />
<a href="http://mochaui.com/" target="_blank" onfocus="onfocus">MochaUI</a> 是一个基于 Mootools JavaScript 框架建立的Web UI 库，它包括：Web应用、Web 桌面、 Web网站开发、 widgets、窗体、语义化等功能。</p>
<p><strong>6. Echo Web Framework<img style="display: inline; margin-left: 0px; margin-right: 0px;" src="http://www.kooxo.com/uploads/allimg/090315/2214285.png" alt="" width="169" height="169" align="right" /></strong><br />
<a href="http://echo.nextapp.com/site/" target="_blank" onfocus="onfocus">Echo</a>是一个为富 Web 应用开发的开源框架。目的时实现 Web 客户端应用接近桌面应用。</p>
<p>当前的最新版本<a href="http://echo.nextapp.com/site/echo3/download" onfocus="onfocus"><strong>Echo3:</strong> 3.0 beta7</a>，详细的文档说明可以通过官方网站<a title="http://echo.nextapp.com/site/" href="http://echo.nextapp.com/site/" onfocus="onfocus">http://echo.nextapp.com/site/</a>了解获得。</p>
<p><strong></strong></p>
<p><strong>7. The Yahoo! User Interface Library (YUI) <img style="display: inline; margin-left: 0px; margin-right: 0px;" src="http://www.kooxo.com/uploads/allimg/090315/2214286.png" alt="" align="right" /></strong><br />
<a href="http://developer.yahoo.com/yui/" onfocus="onfocus">The YUI Library</a> 这个库相信大家都不陌生，用 JavaScript 编写，目的时为建立更加完善的Web 交互性应用。包括 DOM scripting、 DHTML、AJAX等技术。 YUI 基于 BSD 协议对所有用户免费。</p>
<p><strong>8. Sigma Ajax UI builder</strong><br />
<a href="http://sourceforge.net/projects/ajaxuibuilder/" onfocus="undefined">SigmaVisual</a> 由 javascript 和 PHP 编写，是一个可视化的 AJAX UI 创建工具，开发者使用<a href="http://sourceforge.net/projects/ajaxuibuilder/" onfocus="undefined">SigmaVisual</a> 可以在建立原型和真实的Web应用过程中节省时间，提高效率。</p>
<p><strong>9. WUI Web UI 框架</strong><br />
<a href="http://wui.sourceforge.net/" onfocus="onfocus">WUI</a> (Web User Interface)Web用户界面是一个 MVC 框架，使用Java语言编写。</p>
<p><strong>10. Butterfly Web UI</strong><br />
<a href="http://butterfly.jenkov.com/webui/index.html" onfocus="onfocus">Butterfly Web UI</a> 和其他的Web UI框架比较，其优势是很好地集成  Butterfly DI Container，帮助你构建和减少在Web 应用中的内部组件使用，优化结构。</p>
<p>原文：http://www.bbon.cn/2009/03/10%e4%b8%aa%e4%bc%98%e7%a7%80%e7%9a%84-web-ui%e5%ba%93%e6%a1%86%e6%9e%b6.html</p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/10-excellent-library-and-framework-for-web-ui.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>注重SEO搜索优化的div+css命名规则</title>
		<link>http://zmingcx.com/pay-attention-to-seo-search-optimization-div-css-naming.html</link>
		<comments>http://zmingcx.com/pay-attention-to-seo-search-optimization-div-css-naming.html#comments</comments>
		<pubDate>Sat, 25 Apr 2009 13:29:10 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[DIV+CSS]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/pay-attention-to-seo-search-optimization-div-css-naming.html</guid>
		<description><![CDATA[要知道，搜索引擎可都是通过抓取你的网站源代码来进行亲密接触的，那么，如何才能更好地让搜索引擎的爬虫更快更准确地觉察到你的内容相关性，增强网站的搜索优化呢？可能从最基本的DIV+CSS的命名规则入手会有意想不到的收获，最基础的就是最有效的。 下面从前端设计的角度整理的DIV+CSS的命名规则，就很好地考虑到了搜索引擎的喜好，在页面设计的过程中，尽量做你懂，搜索引擎也懂，何乐而不为呢。 页头：header 登录条：loginBar 标志：logo 侧栏：sideBar 广告：banner 导航：nav 子导航：subNav 菜单：menu 子菜单：subMenu 搜索：search 滚动：scroll 页面主体：main 内容：content 标签页：tab 文章列表：list 提示信息：msg 小技巧：tips 栏目标题：title 加入：joinus 指南：guild 服务：service 热点：hot 新闻：news 下载：download 注册：regsiter 状态：status 按钮：btn 投票：vote 合作伙伴：partner 友情链接：friendLink 页脚：footer 版权：copyRight 1.CSS ID 的命名 外　套：　　wrap 主导航：　　mainNav 子导航：　　subnav 页　脚：　　footer 整个页面：　content 页　眉：　　header 页　脚：　　footer 商　标：　　label 标　题：　　title 主导航：　　mainNav(globalNav) 顶导航：　　topnav 边导航：　　sidebar 左导航：　　leftsideBar 右导航：　　rightsideBar 旗　志：　　logo 标　语：　　banner 菜单内容1： menu1Content [...]]]></description>
			<content:encoded><![CDATA[<p>要知道，搜索引擎可都是通过抓取你的网站源代码来进行亲密接触的，那么，如何才能更好地<span id="more-1048"></span>让搜索引擎的爬虫更快更准确地觉察到你的内容相关性，增强网站的搜索优化呢？可能从最基本的DIV+CSS的命名规则入手会有意想不到的收获，最基础的就是最有效的。</p>
<p>下面从前端设计的角度整理的DIV+CSS的命名规则，就很好地考虑到了搜索引擎的喜好，在页面设计的过程中，尽量做你懂，搜索引擎也懂，何乐而不为呢。</p>
<p>页头：header</p>
<p>登录条：loginBar</p>
<p>标志：logo</p>
<p>侧栏：sideBar</p>
<p>广告：banner</p>
<p>导航：nav</p>
<p>子导航：subNav</p>
<p>菜单：menu</p>
<p>子菜单：subMenu</p>
<p>搜索：search</p>
<p>滚动：scroll</p>
<p>页面主体：main</p>
<p>内容：content</p>
<p>标签页：tab</p>
<p>文章列表：list</p>
<p>提示信息：msg</p>
<p>小技巧：tips</p>
<p>栏目标题：title</p>
<p>加入：joinus</p>
<p>指南：guild</p>
<p>服务：service</p>
<p>热点：hot</p>
<p>新闻：news</p>
<p>下载：download</p>
<p>注册：regsiter</p>
<p>状态：status</p>
<p>按钮：btn</p>
<p>投票：vote</p>
<p>合作伙伴：partner</p>
<p>友情链接：friendLink</p>
<p>页脚：footer</p>
<p>版权：copyRight<br />
1.CSS ID 的命名</p>
<p>外　套：　　wrap</p>
<p>主导航：　　mainNav</p>
<p>子导航：　　subnav</p>
<p>页　脚：　　footer</p>
<p>整个页面：　content</p>
<p>页　眉：　　header</p>
<p>页　脚：　　footer</p>
<p>商　标：　　label</p>
<p>标　题：　　title</p>
<p>主导航：　　mainNav(globalNav)</p>
<p>顶导航：　　topnav</p>
<p>边导航：　　sidebar</p>
<p>左导航：　　leftsideBar</p>
<p>右导航：　　rightsideBar</p>
<p>旗　志：　　logo</p>
<p>标　语：　　banner</p>
<p>菜单内容1： menu1Content</p>
<p>菜单容量：　menuContainer</p>
<p>子菜单：　　submenu</p>
<p>边导航图标：sidebarIcon</p>
<p>注释：　　　note</p>
<p>面包屑：　　breadCrumb(即页面所处位置导航提示)</p>
<p>容器：　　　container</p>
<p>内容：　　　content</p>
<p>搜索：　　　search</p>
<p>登陆：　　　login</p>
<p>功能区：　　shop(如购物车，收银台)</p>
<p>当前的　　　current<br />
2.另外在编辑样式表时可用的注释可这样写：</p>
<p><– Footer –></p>
<p>内容区</p>
<p><– End Footer –><br />
3.样式文件命名</p>
<p>主要的 master.css</p>
<p>布局，版面 layout.css</p>
<p>专栏 columns.css</p>
<p>文字 font.css</p>
<p>打印样式 print.css</p>
<p>主题 themes.css</p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/pay-attention-to-seo-search-optimization-div-css-naming.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>25个CSS高级进阶教程</title>
		<link>http://zmingcx.com/high-25-css-advanced-tutorial.html</link>
		<comments>http://zmingcx.com/high-25-css-advanced-tutorial.html#comments</comments>
		<pubDate>Sat, 25 Apr 2009 13:22:04 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/high-25-css-advanced-tutorial.html</guid>
		<description><![CDATA[如果你对 CSS 的掌握已经到了一定的贯通程度,那么你手中的 CSS 将会为你做很多高级的功能,甚至有时候 CSS 可以帮助解决之前靠 JS 才能解决的问题, 要知道,在 Web 开发过程中, 减少一段 JS 可是对 Web 的运行有足够大的减压作用的。25个 CSS 高级教程，让你更了解 CSS。 1. 纯 CSS 字体渐变和背景渐变 CSS Gradients using pure CSS Background gradients and CSS CSS Gradient Text Effect Pure CSS Text Gradient 2. Z-Index 图像重叠 Understading Z-Index CSS Z-index 3. CSS 边框创意 Create a Scalable Star [...]]]></description>
			<content:encoded><![CDATA[<p>如果你对 CSS 的掌握已经到了一定的贯通程度,那么你手中的 CSS 将会为你做很多高级的功能,甚至有时候 CSS 可以帮助<span id="more-1047"></span>解决之前靠 JS 才能解决的问题, 要知道,在 Web 开发过程中, 减少一段 JS 可是对 Web 的运行有足够大的减压作用的。25个 CSS 高级教程，让你更了解 CSS。</p>
<h4>1. 纯 CSS 字体渐变和背景渐变</h4>
<p><img title="css_gradient" src="http://www.bbon.cn/wp-content/uploads/2009/04/212955mUI.jpg" alt="css_gradient" width="500" height="411" /></p>
<p><a href="http://www.designdetector.com/2005/09/css-gradients-demo.php" onfocus="onfocus">CSS Gradients</a> using pure CSS</p>
<p><a href="http://www.tankedup-imaging.com/css_dev/css-gradient.html" onfocus="onfocus">Background</a> gradients and CSS</p>
<p><img title="gradient_text" src="http://www.bbon.cn/wp-content/uploads/2009/04/212957quz.jpg" alt="gradient_text" width="379" height="132" /></p>
<p><a href="http://www.webdesignerwall.com/tutorials/css-gradient-text-effect/" onfocus="onfocus">CSS Gradient Text Effect</a></p>
<p><a href="http://cssglobe.com/lab/textgradient/" onfocus="onfocus">Pure CSS Text Gradient </a></p>
<h4>2. Z-Index 图像重叠</h4>
<p><img title="z-index" src="http://www.bbon.cn/wp-content/uploads/2009/04/213000ssl.jpg" alt="z-index" width="270" height="177" /></p>
<p><a href="http://www.tjkdesign.com/articles/z-index/teach_yourself_how_elements_stack.asp" onfocus="onfocus">Understading Z-Index </a></p>
<p><a href="http://www.quackit.com/css/properties/css_z-index.cfm" onfocus="onfocus">CSS Z-index</a></p>
<h4>3. CSS 边框创意</h4>
<p><img title="border" src="http://www.bbon.cn/wp-content/uploads/2009/04/2130012Sa.jpg" alt="border" width="400" height="120" /></p>
<p><a href="http://phoenity.com/newtedge/scalable_star/" onfocus="onfocus">Create a Scalable Star using using CSS border</a></p>
<p><a href="http://infimum.dk/HTML/slantinfo.html" onfocus="onfocus">Border Slants </a></p>
<h4>4. 超酷 CSS 效果 - 控制面板</h4>
<p><img title="osx" src="http://www.bbon.cn/wp-content/uploads/2009/04/213003J1O.jpg" alt="osx" width="450" height="387" /></p>
<p><a href="http://dbachrach.com/blog/2006/10/09/a-cool-css-effect-dashboard/" onfocus="onfocus">Dashboard</a></p>
<h4>5. 纯 CSS 创建 2D/3D 按钮</h4>
<p><img title="css_button" src="http://www.bbon.cn/wp-content/uploads/2009/04/213005l0O.jpg" alt="css_button" width="221" height="103" /></p>
<p><img title="css_button2" src="http://www.bbon.cn/wp-content/uploads/2009/04/213005X7U.jpg" alt="css_button2" width="325" height="67" /></p>
<p><a href="http://cssglobe.com/post/1614/4-uber-cool-css-techniques-for-links" onfocus="onfocus">3D Rollover Button using CSS</a></p>
<p><a href="http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html" onfocus="onfocus">How to make sexy buttons with CSS</a></p>
<p><a href="http://www.webcredible.co.uk/user-friendly-resources/css/rollover-buttons.shtml" onfocus="onfocus">CSS rollover buttons</a></p>
<h4>6. Text Embossing/Shadow Technique With CSS</h4>
<p><img title="CSS_emboss" src="http://www.bbon.cn/wp-content/uploads/2009/04/213007z1Z.png" alt="CSS_emboss" width="299" height="75" /></p>
<p><a href="http://desizntech.info/2009/03/discover-the-cool-of-css-25-advanced-css-techniques/#" onfocus="onfocus">view plain</a><a href="http://desizntech.info/2009/03/discover-the-cool-of-css-25-advanced-css-techniques/#" onfocus="onfocus">copy to clipboard</a><a href="http://desizntech.info/2009/03/discover-the-cool-of-css-25-advanced-css-techniques/#" onfocus="onfocus">print</a><a href="http://desizntech.info/2009/03/discover-the-cool-of-css-25-advanced-css-techniques/#" onfocus="onfocus">?</a></p>
<p><a href="http://www.reynoldsftw.com/2009/03/text-embossing-technique-with-css/" onfocus="onfocus">Text Embossing</a></p>
<p><a href="http://www.designmeme.com/articles/dropshadows/" onfocus="onfocus">CSS Text Drop Shadows</a></p>
<pre>   1. text-shadow: 0px 1px 0px #e5e5ee;</pre>
<h4>7. Iconize Text links/Hyperlink with CSS</h4>
<p><img title="icon_text" src="http://www.bbon.cn/wp-content/uploads/2009/04/213008Rei.jpg" alt="icon_text" width="333" height="102" /></p>
<p><a href="http://pooliestudios.com/projects/iconize/" onfocus="onfocus">Add icon to the hyperlink.</a></p>
<p><a href="http://pooliestudios.com/projects/iconize/" onfocus="onfocus">Iconize Textlinks with CSS</a></p>
<h4>8. CSS Curly Quotes</h4>
<p><img title="qoutes" src="http://www.bbon.cn/wp-content/uploads/2009/04/213010Tq3.jpg" alt="qoutes" width="500" height="135" /></p>
<p><a href="http://www.designmeme.com/articles/csscurlyquotes/" onfocus="onfocus">Curly Quotes with Pure CSS</a></p>
<p><a href="http://24ways.org/2005/swooshy-curly-quotes-without-images" onfocus="onfocus">Swooshy Curly Quotes Without Images</a></p>
<h4>9. Using CSS Opacity for Various Cool Effects</h4>
<p><img title="css_opacity_menu" src="http://www.bbon.cn/wp-content/uploads/2009/04/213011aOt.jpg" alt="css_opacity_menu" width="500" height="168" /></p>
<p><a href="http://www.cssplay.co.uk/menus/flyout_horizontal.html" onfocus="onfocus">A CSS only fly-out menu with transparency</a></p>
<p><a href="http://www.tankedup-imaging.com/css_dev/menu2.html" onfocus="onfocus">CSS Menu using CSS opacity property</a></p>
<p><a href="http://www.mandarindesign.com/opacityblending.html" onfocus="onfocus"><strong>Opacity Background Blending Effects</strong></a></p>
<p><a href="http://www.freecssmenus.co.uk/menu_opacity.php" onfocus="onfocus">Transparency Menu Watermark on an image</a></p>
<h4>10. Blurry Background Effect</h4>
<p><img title="blurry_bg" src="http://www.bbon.cn/wp-content/uploads/2009/04/2130131o9.jpg" alt="blurry_bg" width="500" height="267" /></p>
<p><a href="http://css-tricks.com/blurry-background-effect/" onfocus="onfocus">h</a><a href="http://css-tricks.com/blurry-background-effect/" onfocus="onfocus">ow to create a blurry background using CSS</a></p>
<h4>11. CSS Parallax Effect</h4>
<p><img title="parallax" src="http://www.bbon.cn/wp-content/uploads/2009/04/213015sUY.jpg" alt="parallax" width="497" height="180" /></p>
<p><a href="http://forthelose.org/examples-of-and-how-to-do-the-css-parallax-effect" onfocus="onfocus">Examples of and How to Create the CSS Parallax Effect</a></p>
<p><a href="http://demo.marcofolio.net/a_parallax_illusion_with_css/" onfocus="onfocus">A parallax illusion with CSS: The Horse in Motion </a></p>
<h4>12.Create a Lightbox effect only with CSS</h4>
<p><img title="css_lightbox" src="http://www.bbon.cn/wp-content/uploads/2009/04/213016wYD.jpg" alt="css_lightbox" width="400" height="213" /></p>
<p><a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/" onfocus="onfocus">technique </a></p>
<h4>13.CSS-Only Accordion Effect</h4>
<p><img title="css_accordian" src="http://www.bbon.cn/wp-content/uploads/2009/04/2130207jF.jpg" alt="css_accordian" width="367" height="300" /></p>
<p><a href="http://www.cssnewbie.com/css-only-accordion/" onfocus="onfocus">create Accordion using CSS</a></p>
<h4>14. Add grunge Effect to Text Using Simple CSS</h4>
<p><a href="http://www.jankoatwarpspeed.com/post/2008/08/09/Add-grunge-effect-to-text-using-simple-CSS.aspx" onfocus="onfocus"><img title="grunge1" src="http://www.bbon.cn/wp-content/uploads/2009/04/213022XZb.jpg" alt="grunge1" width="294" height="72" /></a></p>
<p><a href="http://www.jankoatwarpspeed.com/post/2008/08/09/Add-grunge-effect-to-text-using-simple-CSS.aspx" onfocus="onfocus">tutorial </a></p>
<h4>15.Create a Block Hover /Element Hover Effect</h4>
<p><img title="block_hover" src="http://www.bbon.cn/wp-content/uploads/2009/04/213025z8G.jpg" alt="block_hover" width="430" height="283" /></p>
<p><a href="http://www.smileycat.com/miaow/archives/000230.php" onfocus="onfocus">Learn how to create a block hover effect for a list of links</a></p>
<p><a href="http://phoenity.com/newtedge/element_hover/" onfocus="onfocus">CSS element hover effect.</a></p>
<h4>16. Simple Dither Effect using CSS</h4>
<p><img title="dither" src="http://www.bbon.cn/wp-content/uploads/2009/04/213028tQI.jpg" alt="dither" width="500" height="168" /></p>
<p><a href="http://www.dezinerfolio.com/2008/11/24/simple-dither-effect-using-css/" onfocus="onfocus">dither effect using</a></p>
<h4>17. Create a liDock Menu</h4>
<h4><img title="css_dock" src="http://www.bbon.cn/wp-content/uploads/2009/04/213030JE8.jpg" alt="css_dock" width="500" height="155" /></h4>
<p><a href="http://csshowto.com/menus/horizontal-menus-that-grow-on-you/" onfocus="onfocus">Horizontal Menus That Grow on You</a></p>
<h4>18. CSS Hover Swap Effect</h4>
<h4><img title="hover_swap" src="http://www.bbon.cn/wp-content/uploads/2009/04/213032pni.jpg" alt="hover_swap" width="500" height="160" /></h4>
<p><a href="http://min.frexy.com/article/css_swap_hover_effect/" onfocus="onfocus">CSS swap hover effect</a></p>
<h4>19. Polaroid effect using CSS</h4>
<p><img title="polaroid-css" src="http://www.bbon.cn/wp-content/uploads/2009/04/21303513w.jpg" alt="polaroid-css" width="500" height="227" /></p>
<ul><a href="http://jcornelius.com/articles/polaroidizing-photos-with-css/" onfocus="onfocus">Polaroid-izing photos with CSS and one Image.</a></p>
<h4>20. CSS 杂志</h4>
<h4><img title="magazine" src="http://www.bbon.cn/wp-content/uploads/2009/04/213038DRf.jpg" alt="magazine" width="500" height="314" /></h4>
<p><a href="http://www.mandarindesign.com/2004/09/magazine-style-css.html" onfocus="onfocus">Create a Magazine Type layout Using CSS</a></p>
<h4>21. CSS Hoverbox Menu</h4>
<p><img title="Hoverbox" src="http://www.bbon.cn/wp-content/uploads/2009/04/213040RfH.jpg" alt="Hoverbox" width="500" height="137" /></p>
<p><a href="http://www.designmeme.com/articles/hoverboxmenu/" onfocus="onfocus">cool CSS Menu</a></p>
<h4>22.CSS 标签切换</h4>
<p><img title="css_tab" src="http://www.bbon.cn/wp-content/uploads/2009/04/213042cme.jpg" alt="css_tab" width="500" height="202" /></p>
<p><a href="http://www.3point7designs.com/blog/2007/09/12/css-tabs-css-only-dom-tabs/" onfocus="onfocus">Create a Tabbed content</a>.</p>
<h4>23.CSS Magic with Fixed Background-attachment</h4>
<p><a href="http://www.askthecssguy.com/examples/fixedBackgroundImages/example01.html" onfocus="onfocus"><img title="css_magic" src="http://www.bbon.cn/wp-content/uploads/2009/04/213046M9p.jpg" alt="css_magic" width="499" height="324" /></a></p>
<p><a href="http://www.askthecssguy.com/2009/01/mike_asks_the_css_guy_about_a.html" onfocus="onfocus">shows a trick that reveals a magic</a></p>
<h4>24. CSS 信息提示</h4>
<p><img title="tool_tips" src="http://www.bbon.cn/wp-content/uploads/2009/04/213049jdh.jpg" alt="tool_tips" width="500" height="178" /></p>
<p><a href="http://lixlpixel.org/css_tooltip/" onfocus="onfocus">Show a message when hovering over the links.</a></p>
<h4>25. 纯 CSS 预加载效果<img title="css_loader" src="http://www.bbon.cn/wp-content/uploads/2009/04/213051cLb.jpg" alt="css_loader" width="500" height="239" /></h4>
<p><a href="http://www.dynamixlabs.com/2008/01/17/a-quick-look-add-a-loading-icon-to-your-larger-images/" onfocus="onfocus">Add a “loading” icon to your larger images</a></ul>
<p align="right">转载：<a title="http://www.booto.net/?p=2367" href="http://www.booto.net/?p=2367" onfocus="onfocus">http://www.booto.net/?p=2367</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/high-25-css-advanced-tutorial.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>28个网页设计必备工具</title>
		<link>http://zmingcx.com/28-essential-web-design-tools.html</link>
		<comments>http://zmingcx.com/28-essential-web-design-tools.html#comments</comments>
		<pubDate>Sat, 25 Apr 2009 13:17:33 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[Web设计]]></category>

		<guid isPermaLink="false">http://zmingcx.cn/28-essential-web-design-tools.html</guid>
		<description><![CDATA[任何一个行业发展到一个阶段之后，其应用都会越发的平民化，只要你够勤劳，你就可以创造自己的价值，网页设计也同样如此，如今网页设计的辅助软件和在线工具越来越多，并且都细化到了极致，各司其职，为Web设计者更好更快地提高工作效率带来了莫大的帮助，酷秀为我们翻译整理的28个优秀的快速网页设计必备工具和生成器。 1. Lorem Ipsum Generator 文本排版生成器 2. Stripe Generator 条纹背景 3. Mycoolbutton 按钮生成器 4. Web20generator Web2.0生成器 5. Buttonator 按钮生成器 6. VectorMagic 矢量图生成器 7. Free Online Web Template Generator 免费在线网页模板 8. CSS Type Set CSS效果查看 9. Free Logo Design – Logo Maker 免费Logo设计 10. Tiled backgrounds designer 背景设计 11. Web 2.0 logo creatr Web2.0 logo生成器 12. [...]]]></description>
			<content:encoded><![CDATA[<p>任何一个行业发展到一个阶段之后，其应用都会越发的平民化，只要你够勤劳，你就可以创造自己的价值，网页设计也同样<span id="more-1046"></span>如此，如今网页设计的辅助软件和在线工具越来越多，并且都细化到了极致，各司其职，为Web设计者更好更快地提高工作效率带来了莫大的帮助，<a href="http://www.kooxo.com/" target="_blank" onfocus="onfocus">酷秀</a>为我们翻译整理的28个优秀的快速网页设计必备工具和生成器。</p>
<p>1. <a href="http://www.blindtextgenerator.com/" onfocus="onfocus">Lorem Ipsum Generator</a> 文本排版生成器</p>
<p><img title="loremipsum" src="http://www.chinaz.com/upimg/allimg/090325/0719070.jpg" alt="" width="500" height="264" /></p>
<p>2. <a href="http://www.stripegenerator.com/" onfocus="onfocus">Stripe Generator</a> 条纹背景</p>
<p><img title="stripegenerator" src="http://www.chinaz.com/upimg/allimg/090325/0719071.jpg" alt="" width="499" height="386" /></p>
<p>3. <a href="http://www.mycoolbutton.com/" onfocus="onfocus">Mycoolbutton</a> 按钮生成器</p>
<p><img title="mycoolbuttons" src="http://www.chinaz.com/upimg/allimg/090325/0719072.jpg" alt="" width="500" height="370" /></p>
<p>4. <a href="http://www.web20generator.com/" onfocus="onfocus">Web20generator</a> Web2.0生成器</p>
<p><img title="web20generator" src="http://www.chinaz.com/upimg/allimg/090325/0719073.jpg" alt="" width="500" height="414" /></p>
<p>5. <a href="http://www.buttonator.com/" onfocus="onfocus">Buttonator</a> 按钮生成器</p>
<p><img title="buttonator" src="http://www.chinaz.com/upimg/allimg/090325/0719074.jpg" alt="" width="500" height="416" /></p>
<p>6. <a href="http://vectormagic.com/home" onfocus="onfocus">VectorMagic</a> 矢量图生成器</p>
<p><img title="vectormagic" src="http://www.chinaz.com/upimg/allimg/090325/0719075.jpg" alt="" width="500" height="332" /></p>
<p>7. <a href="http://www.dotemplate.com/" onfocus="onfocus">Free Online Web Template Generator</a> 免费在线网页模板</p>
<p><img title="dottemplate" src="http://www.chinaz.com/upimg/allimg/090325/0719076.jpg" alt="" width="500" height="392" /></p>
<p>8. <a href="http://csstypeset.com/" onfocus="onfocus">CSS Type Set</a> CSS效果查看</p>
<p><img title="csstypeset" src="http://www.chinaz.com/upimg/allimg/090325/0719077.jpg" alt="" width="500" height="317" /></p>
<p>9. <a href="http://www.logoease.com/" onfocus="onfocus">Free Logo Design – Logo Maker</a> 免费Logo设计</p>
<p><img title="logoease" src="http://www.chinaz.com/upimg/allimg/090325/0719078.jpg" alt="" width="500" height="319" /></p>
<p>10. <a href="http://bgpatterns.com/" onfocus="onfocus">Tiled backgrounds designer</a> 背景设计</p>
<p><img title="bgpatterns" src="http://www.chinaz.com/upimg/allimg/090325/0719079.jpg" alt="" width="500" height="304" /></p>
<p>11. <a href="http://creatr.cc/creatr/" onfocus="onfocus">Web 2.0 logo creatr</a> Web2.0 logo生成器</p>
<p><img title="logocreatorcc1" src="http://www.chinaz.com/upimg/allimg/090325/07190710.jpg" alt="" width="500" height="312" /></p>
<p>12. <a href="http://www.nameboy.com/" onfocus="onfocus">Nameboy</a> 域名搜索和建议</p>
<p><img title="nameboy" src="http://www.chinaz.com/upimg/allimg/090325/07190711.jpg" alt="" width="500" height="423" /></p>
<p>13. <a href="http://www.makewords.com/default.aspx" onfocus="onfocus">Domain name generator</a> 域名生成器</p>
<p><img title="makewords" src="http://www.chinaz.com/upimg/allimg/090325/07190712.jpg" alt="" width="500" height="356" /></p>
<p>14. <a href="http://www.logoyes.com/logocreator.php" onfocus="onfocus">Online Logo Generator</a> 在线logo生成器</p>
<p><img title="logoyes1" src="http://www.chinaz.com/upimg/allimg/090325/07190713.jpg" alt="" width="500" height="294" /></p>
<p>15. <a href="http://www.loonapix.com/" onfocus="onfocus">Loona Pix</a> 特效图片生成器</p>
<p><img title="loonapix" src="http://www.chinaz.com/upimg/allimg/090325/07190714.jpg" alt="" width="500" height="345" /></p>
<p>16. <a href="http://designertext.com/" onfocus="onfocus">Fancy text generator</a> 文本特效生成器</p>
<p><img title="designertext" src="http://www.chinaz.com/upimg/allimg/090325/07190715.jpg" alt="" width="500" height="365" /></p>
<p>17. <a href="http://www.webscriptlab.com/" onfocus="onfocus">Webscriptlab</a>Web脚本生成器</p>
<p><img title="webscriptlab" src="http://www.chinaz.com/upimg/allimg/090325/07190716.jpg" alt="" width="500" height="376" /></p>
<p>18. Form Generator 表单生成器</p>
<p><img title="phpform" src="http://www.chinaz.com/upimg/allimg/090325/07190717.jpg" alt="" width="500" height="356" /></p>
<p>19. <a href="http://www.reflectionmaker.com/" onfocus="onfocus">ReflectionMaker.com</a> 图片倒影生成器</p>
<p><img title="reflection" src="http://www.chinaz.com/upimg/allimg/090325/07190718.jpg" alt="" width="500" height="379" /></p>
<p>20. <a href="http://lab.xms.pl/markup-generator/" onfocus="onfocus">XHTML/CSS Markup Generator</a> XHTML/CSS标签生成器</p>
<p><img title="markeupgenerator" src="http://www.chinaz.com/upimg/allimg/090325/07190719.jpg" alt="" width="500" height="386" /></p>
<p>21. <a href="http://www.roundedcornr.com/" onfocus="onfocus">Roundedcornr</a> 圆角图片效果生成器</p>
<p><img title="roundedcornr" src="http://www.chinaz.com/upimg/allimg/090325/07190720.jpg" alt="" width="500" height="384" /></p>
<p>22. <a href="http://www.favicon.cc/" onfocus="onfocus">favicon.cc</a> favicon生成器</p>
<p><img title="favicon" src="http://www.chinaz.com/upimg/allimg/090325/07190721.jpg" alt="" width="500" height="337" /></p>
<p>23. <a href="http://www.genfavicon.com/" onfocus="onfocus">Genfavicon</a> favicon生成器</p>
<p><img title="genfavicon" src="http://www.chinaz.com/upimg/allimg/090325/07190722.jpg" alt="" width="500" height="364" /></p>
<p>24. <a href="http://www.stripedesigner.com/" onfocus="onfocus">stripedesigner.com</a> 条纹背景生成器</p>
<p><img title="stripedeisgner" src="http://www.chinaz.com/upimg/allimg/090325/07190723.jpg" alt="" width="500" height="309" /></p>
<p>25. <a href="http://3d-pack.com/" onfocus="onfocus">3D Pack</a> 3D图片效果</p>
<p><img title="3d" src="http://www.chinaz.com/upimg/allimg/090325/07190724.jpg" alt="" width="500" height="294" /></p>
<p>26. <a href="http://www.csstextwrap.com/" onfocus="onfocus">CSS Text Wrapper</a> CSS特殊文字形状</p>
<p><img title="textwrapper" src="http://www.chinaz.com/upimg/allimg/090325/07190725.jpg" alt="" width="500" height="394" /></p>
<p>27. <a href="http://www.htmlkit.com/services/favicon/" onfocus="onfocus">Favicon Generator</a> Favicon生成器</p>
<p><img title="favison" src="http://www.chinaz.com/upimg/allimg/090325/07190726.jpg" alt="" width="500" height="400" /></p>
<p>28. <a href="http://www.web20badges.com/" onfocus="onfocus">Web 2.0 Badges</a> Web2.0徽章生成器</p>
<p><img title="web20badges" src="http://www.chinaz.com/upimg/allimg/090325/07190727.jpg" alt="" width="500" height="416" /></p>
<p align="right">原始出处：<a href="http://www.graphicfetish.com/28-fantastic-generators-for-easier-web-designing/" onfocus="onfocus">28 Web Design Tools and Generators For Easy Web Design</a></p>
<p align="right">翻译整理：<a href="http://www.kooxo.com/" target="_blank" onfocus="onfocus">酷秀网编辑团队</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/28-essential-web-design-tools.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

