<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><fs:self_link href="http://feed.feedsky.com/qianduan" type="application/rss+xml" /><lastBuildDate>Tue, 10 Nov 2009 10:21:09 GMT</lastBuildDate><title>前端观察</title><description>关注网站前端设计和开发的专业博客</description><image><url>http://www.feedsky.com/feed/qianduan/sc/gif</url><title>前端观察</title><link>http://www.qianduan.net</link></image><link>http://www.qianduan.net</link><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><language>en</language><pubDate>Tue, 10 Nov 2009 13:41:49 GMT</pubDate><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/qianduannet" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>CSS雪碧:要还是不要？</title><link>http://feedproxy.google.com/~r/qianduannet/~3/xv5-BSWJIgE/to-sprite-or-not-to-sprite.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/vVeDs2Ff0Q6PhYNcSZVhu8jhx98/0/da"><img src="http://feedads.g.doubleclick.net/~a/vVeDs2Ff0Q6PhYNcSZVhu8jhx98/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vVeDs2Ff0Q6PhYNcSZVhu8jhx98/1/da"><img src="http://feedads.g.doubleclick.net/~a/vVeDs2Ff0Q6PhYNcSZVhu8jhx98/1/di" border="0" ismap="true"></img></a></p><p><strong>声明</strong>，本文中所称CSS雪碧即为CSS Sprites，这个词组一直没有一个固定或者约定俗成的中文翻译，一些人开始称之为CSS雪碧，我们且当作一次尝试吧，如果大家觉得不妥，今后还会继续直称CSS Sprites。——神飞</p>
<p><a href="http://http://www.qianduan.net/tag/css-sprites">CSS雪碧</a>已经出现一段时间了，并上升为一种可以让你的网站速度变快的方式。Steve Souders刚刚在<a href="http://www.stevesouders.com/spriteme/">Velocity &#8216;09上展示了SpriteMe!</a> (讨论——为什么在你可以使用canvase和toDataURL和及时生成雪碧的时候还要使用CSS雪碧生成器或其它基于服务器的工具？）。然而，关于CSS雪碧有一些误解，最主要的一个就是它们没有缺点。</p>
<p><span id="more-11520"></span></p>
<p>CSS雪碧的基本原理是把你的网站上用到的一些图片整合到一张单独的图片中，从而减少你的网站的HTTP请求数量。该图片使用CSS background和background-position属性渲染(值得一提的是，这也就意味着你的标签变得更加复杂了，图片是在CSS中定义，而非&lt;img&gt;标签)。</p>
<p>CSS雪碧的最大问题是内存使用。除非这个雪碧图片是被非常小心的组织，你就会最终使用大量的无用的空白。我最喜欢的例子是来自于WHIT TV的网站，那里的<a href="http://www.wthitv.com/images/bg_module.png">这张图片</a>用作精灵。注意这是一个1299&#215;15,000像素的PNG图片。它也被压缩的很好——实际下载大小只有大概26K — 但是浏览器并不会渲染压缩后的图片数据。当这个图片被下载并被解压缩之后，它将占用<em>差不多<strong>75MB</strong>的内存</em> (1299 * 15000 * 4)。如果这个图片并没有使用alpha透明，它将会被优化至1299 * 15000 * 3，但是要在损失渲染速度的情况下。即使那样，我们也会讨论55MB。这张图片的大部分其实就是<strong>空白</strong>，那里什么都没有，没没有任何有用的内容。只是加载<a href="http://www.wthitv.com/" >WHIT主页</a>就会导致你的浏览器的内存占用上升到至少75+MB，仅仅是因为那一张图片。<span style="color:#999">（PS:遗憾的是，该网站最近已经改版，文中提到的图片已经不存在了）</span></p>
<p>有利于网站的正确的取舍并不存在。</p>
<p>另外一个(虽然并没有那么重要)不足就是如果一个使用CSS雪碧的页面使用一些浏览器提供的整页缩放功能缩放了，浏览器就需要做一些额外的工作来纠正这些图片边缘的行为——基本上来说，是为了避免雪碧中相邻的图片被“露进来”。这对于小图片没有什么问题，但是对于大图片会是一个性能下降。</p>
<p>当然有一些显示CSS 雪碧的明显的好处的例子，主要的例子就是合并一批相同大小的图片到一个文件中。例如，一系列用作标识你的网站中的很多东西的16&#215;16图标，或者是一些用作分类的头之类的32&#215;32 的图标。但是整合严重不同尺寸的图片，特别是将又瘦又高的图片和又宽又矮的图片放到一起从来不是什么好主意。</p>
<p>然而，CSS雪碧确实提高页面加载时间(至少在初始的页面加载中——在后续的页面加载中，浏览器就将图片缓存了)。有没有什么可以替代的？不幸的是，还没有一个可以替代的方案。很多浏览器开始支持离线清单了，将其扩展到允许下载一个包含一系列资源和对应的URL的清单的文件(比如一个jar/zip文件)或许是有可能的。但是任何此类做法在一段时间内还不会见到……</p>
<p>所以，在决定是否要使用CSS雪碧的时候，要注意在最初页面加载性能之外还有很多的因素。作为一个普通的经验法则，如果你的CSS 雪碧的大部分地方不包含真正的图片内容，你应该相应的避免使用它。同样，关注将来可能出现的既保持页面加载速度，同时注意避免内存的缺陷和雪碧的性能影响。</p>
<h3>其它的CSS雪碧的不足</h3>
<p>下面是一些网友在该文评论中提到的CSS雪碧的某些不足：</p>
<ul>
<li>CSS 雪碧调用的图片不能被打印，除非在@media中特别添加 print声明——by RichB</li>
<li>如果要修改雪碧中的一个图片，你就要修改整张图片，这无疑会增大工作量——by Tom B</li>
</ul>
<p>如果你在使用的过程中，有发现其它的CSS雪碧的不足，欢迎提出来。</p>
<div>
<hr />原文：<a href="http://www.qianduan.net/to-sprite-or-not-to-sprite.html">CSS雪碧:要还是不要？</a><br />
	译自：<a href="http://blog.vlad1.com/2009/06/22/to-sprite-or-not-to-sprite/">To Sprite Or Not To Sprite</a><br />
	转载请注明出处，多谢！
</div><img src="http://www1.feedsky.com/t1/294704830/qianduan/feedsky/s.gif?r=http://www.qianduan.net/to-sprite-or-not-to-sprite.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704830/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704830/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/xv5-BSWJIgE" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/to-sprite-or-not-to-sprite.html/feed</wfw:commentRss><slash:comments>4</slash:comments><description>本文讨论了CSS雪碧的一些不足，以纠正大家对CSS雪碧这种技术的盲目跟从或者误解。很少有一种技术是完美的…...&lt;img src="http://www1.feedsky.com/t1/294704830/qianduan/feedsky/s.gif?r=http://www.qianduan.net/to-sprite-or-not-to-sprite.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704830/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704830/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>CSS</category><category>雪碧</category><category>Tips</category><category>css sprites</category><category>css</category><pubDate>Tue, 10 Nov 2009 18:21:09 +0800</pubDate><author>神采飞扬</author><comments>http://www.qianduan.net/to-sprite-or-not-to-sprite.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11520</guid><dc:creator>神采飞扬</dc:creator><fs:srclink>http://www.qianduan.net/to-sprite-or-not-to-sprite.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704830/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/to-sprite-or-not-to-sprite.html</feedburner:origLink></item><item><title>神圣的精灵</title><link>http://feedproxy.google.com/~r/qianduannet/~3/jbANlUCcTd4/holy-sprites.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/U4jiVA_Tv7k-_sZUfsWQd_76MKg/0/da"><img src="http://feedads.g.doubleclick.net/~a/U4jiVA_Tv7k-_sZUfsWQd_76MKg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/U4jiVA_Tv7k-_sZUfsWQd_76MKg/1/da"><img src="http://feedads.g.doubleclick.net/~a/U4jiVA_Tv7k-_sZUfsWQd_76MKg/1/di" border="0" ismap="true"></img></a></p><div>原文：<a href="http://www.qianduan.net/holy-sprites.html" >神圣的精灵</a><br />
	整理自：<a href="http://css-tricks.com/holy-sprites/" >Holy Sprites</a></p>
<hr />
</div>
<p>CSS Tricks 前段时间搞了一个名为<a href="http://css-tricks.com/sprites-contest/">炫耀一下你的精灵吧!</a>的比赛，很多网友贴出了很多很棒的CSS精灵图片。这里是CSS Tricks精选出来的一些精灵图片。从中我们可以膜拜一下这些牛站们对CSS中用到的图片的处理方法。</p>
<p><span id="more-11514"></span></p>
<p>这些图片中的一些根据我们网站的需要可能有些压缩。但是本文的意思并不是让大家模仿他们，只是希望它们能给你一些灵感的火花！</p>
<p>PS:现在很多人开始称呼CSS sprite为CSS雪碧，我认为这是个很好的叫法，大家认为呢？——神飞</p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/sprite-1.png" alt="" title="" width="382" height="196"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/nav_logo7.png" alt="" title="" width="164" height="106"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/dragon-sprite.jpg" alt="" title="" width="556" height="350"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/STORMINKspriteOLD.png" alt="" title="" width="416" height="157"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/apple-sprite.png" alt="" title="" width="558" height="152"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/socialbuttons.png" alt="" title="" width="432" height="72"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/jquery-ui.png" alt="" title="" width="256" height="240"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/yahoo-cn.png" alt="" title="" width="557" height="270"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/amazon.png" alt="" title="" width="410" height="307"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/cycle-news.png" alt="" title="" width="528" height="378"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/tech-icons.png" alt="" title="" width="210" height="140"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/youtube-sprite.png" alt="" title="" width="169" height="468"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/warsprite.png" alt="" title="" width="549" height="335"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/makesometime.png" alt="" title="" width="370" height="304"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/rachel.png" alt="" title="" width="391" height="414"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/tut9sprite2.jpg" alt="" title="" width="553" height="240"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/buttons_sprite.gif" alt="" title="" width="240" height="341"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/princespriteswb3.jpg" alt="" title="" width="561" height="637"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/timwright.jpg" alt="" title="" width="400" height="475"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/beersprite.jpg" alt="" title="" width="570" height="304"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/tommyday.jpg" alt="" title="" width="526" height="312"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/designbumb.jpg" alt="" title="" width="553" height="641"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/social_sprite16.png" alt="" title="" width="112" height="32"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/login-v2.png" alt="" title="" width="175" height="300"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/bg_sprites.jpg" alt="" title="" width="257" height="297"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/netsprite.png" alt="" title="" width="383" height="445"></p>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/11/holy_sprites/mine-sprite.png" alt="" title="" width="64" height="48"></p><img src="http://www1.feedsky.com/t1/294704831/qianduan/feedsky/s.gif?r=http://www.qianduan.net/holy-sprites.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704831/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704831/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/jbANlUCcTd4" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/holy-sprites.html/feed</wfw:commentRss><slash:comments>10</slash:comments><description>CSS Tricks 前段时间搞了一个名为“炫耀一下你的精灵吧!”的比赛，很多网友贴出了很多很棒的CSS精灵图片。这里是CSS Tricks精选出来的一些精灵图片...&lt;img src="http://www1.feedsky.com/t1/294704831/qianduan/feedsky/s.gif?r=http://www.qianduan.net/holy-sprites.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704831/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704831/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>CSS</category><category>雪碧</category><category>精灵</category><category>Resource</category><category>css sprites</category><category>css</category><pubDate>Sun, 08 Nov 2009 22:37:09 +0800</pubDate><author>神采飞扬</author><comments>http://www.qianduan.net/holy-sprites.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11514</guid><dc:creator>神采飞扬</dc:creator><fs:srclink>http://www.qianduan.net/holy-sprites.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704831/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/holy-sprites.html</feedburner:origLink></item><item><title>行动召唤按钮：实例与最佳实践</title><link>http://feedproxy.google.com/~r/qianduannet/~3/rC_18pSQVF8/call-to-action-buttons-examples-and-best-practices.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/SvI2ob8CiYIIZxY4mT1E5CkUR-k/0/da"><img src="http://feedads.g.doubleclick.net/~a/SvI2ob8CiYIIZxY4mT1E5CkUR-k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SvI2ob8CiYIIZxY4mT1E5CkUR-k/1/da"><img src="http://feedads.g.doubleclick.net/~a/SvI2ob8CiYIIZxY4mT1E5CkUR-k/1/di" border="0" ismap="true"></img></a></p><div>中文翻译<a href="http://www.qianduan.net/call-to-action-buttons-examples-and-best-practices.html">行动召唤按钮：实例与最佳实践</a><br />
	英文原文<a href="http://www.smashingmagazine.com/2009/10/13/call-to-action-buttons-examples-and-best-practices/" >Call to Action Buttons: Examples and Best Practices</a><br />
	版权所有，转载请注明出处，多谢！</p>
<hr />
</div>
<p><strong>行动召唤</strong>在网页设计中——尤其是在用户体验方面——是一个描述在网页中用于诱导用户行为的元素的术语。在网站界面中，最流行的行动召唤的表现是出现在点击表单按钮、完成一个行动(比如&#8221;Buy this now!&#8221;)或使用附加信息带到一个页面(比如&#8221;Learn more …&#8221;)等请求用户来采取行动的地方。</p>
<p>我们如何创建有效的行动召唤按钮来吸引用户的注意并引诱他们点击？我们将在本文中通过分享一些有效的设计技术和查看一些实例来尝试回答这个问题。</p>
<h3>有效的行动召唤按钮的最佳实践</h3>
<p>设计行动召唤按钮到网站界面需要一些远见和计划；它必须是你的原型和信息结构流程的一部分以使他们能够正常工作。在本节中，我们将讨论行动召唤按钮的设计技术。</p>
<h4>用大小吸引用户注意</h4>
<p>在网页中，一个元素相对于其周围元素的大小表明其重要性：元素越大，它就越重要。判断网站的某种行为有多么至关重要，行动召唤按钮的型号也应相应的调整。</p>
<p><strong>行动召唤按钮与周边元素</strong></p>
<p><strong><a href="http://www.lifetreecreative.com/">Lifetree Creative</a></strong>展示大小的主意以表明他们的行动召唤按钮的重要性。将按钮的大小与公司的logo对比。为了吸引用户的注意，这个行动召唤按钮在宽度方面比logo大了<strong>大约20%</strong>。尽管logo在页面中放的比较高，你的眼睛还是被吸引到了行动召唤按钮，因为它相对于周边元素比较大。</p>
<p><a href="http://www.lifetreecreative.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/lifetree_creative_size.jpg" alt="Lifetree Creative" height="396" width="481"></a></p>
<p><strong>行动召唤按钮与不太重要的行动召唤的大小</strong></p>
<p>一个网页可能有多个行动召唤。为了区分一个行动召唤与其它行动的相关重要性，你可以改变他们的大小。这里在<strong><a href="http://paramoreredd.com/">paramore|redd</a></strong>网站有一个使用这个理念的实例，那个页面的让用户注册以获取邮件通知的行动召唤按钮明显的比继续阅读性东召唤按钮大一些，表明在该网页中，与继续阅读日志相比他们更希望你采取订阅</p>
<p><a href="http://paramoreredd.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/paramoreredd_size_vs_ctas.jpg" alt="paramore|redd" height="229" width="481"></a></p>
<h4>使用突出的位置吸引用户注意</h4>
<p>页面中的行动召唤按钮的位置是吸引访问者的注意的关键。放置在突出的位置，比如页面的章节的头部可以带来较高的页面转换因为用户将很可能注意到行动召唤按钮并采取行动。</p>
<p><strong>放置在明显的区域、</strong></p>
<p>将一个行动召唤按钮放置在一个明显的区域是一个让它在页面布局中突出的一个方法。你可以在<a href="http://www.dailymile.com/">dailymile</a>看到这个概念，行动召唤按钮看起来在一个比其它元素比如图形条高的层面上(在顶部)。</p>
<p><a href="http://www.dailymile.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/dailymile_placement_distinguished.jpg" alt="dailymile" height="375" width="481"></a></p>
<p><strong>放到页面的头部</strong></p>
<p>为了阐述这个概念，看一下位于<strong><a href="http://yourwebjob.com/">Your Web Job</a></strong>页面最右上角的&#8221;Post a Job!&#8221;行动召唤按钮。通过将行动召唤按钮放到一个非常醒目的区域，这样好像用户会注意到它或者稍后记住它，在他们看过网站的内容之后。比如一个职位发布者想要在他们发布职位之前浏览一下网站，&#8221;Post a Job!&#8221;按钮将随时为他们准备好，无论哪个页面引导他们跳转，他们会更可能记得他们可以很容易的执行这个行动的地方，因为它的位置足够显眼。</p>
<p><a href="http://yourwebjob.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/yourwebjob_placement_high.jpg" alt="Your Web Job" height="300" width="481"></a></p>
<p><strong>放在布局的中间</strong></p>
<p>将一个行动召唤按钮定位到页面布局的中间——而不是两侧(或明显比较小或者不重要)的位置——可以是一个很有效的吸引注意和诱导一个行动的方法。在例子<strong><a href="http://www.picsengine.com/">PicsEngine</a></strong>中，尽管这个行动召唤按钮没有使用与其背景色和页面中周边元素高对比的色彩，它依然能够因为其居中的位置而很容易引起注意。</p>
<p><a href="http://www.picsengine.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/picsengine_placement_centered.jpg" alt="PicsEngine" height="400" width="481"></a></p>
<h4>使用空白来从其他页面元素中区分行动召唤按钮</h4>
<p>行动召唤按钮周围的空白（或者无效空间）的使用是一个让它在有很多元素的区域中突出的很有效的方法。</p>
<p><strong>用于区分行动召唤按钮的空白</strong></p>
<p><strong><a href="http://icondock.com/">IconDock</a></strong>展示如何有效的利用空白。即便使用一个很小而且简单设计的行动召唤按钮，它依然很突出，因为在它和邻近元素之间的空间。</p>
<p><a href="http://icondock.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/icondock_whitespace_around_button.jpg" alt="IconDock " height="343" width="481"></a></p>
<p><strong>改变空白的数量以表明逻辑关系</strong></p>
<p>行动召唤按钮与其周边的元素之间的空白越多，他们的联系越少。因此，如果你有其它元素能够有助于说服用户采取行动，减少那些元素之间的空白和间隔。</p>
<p>例如，<strong><a href="http://www.donortools.com/">Donor Tools</a></strong>在他们的&#8221;Sign Up&#8221;行动召唤按钮上面有些文字，它们告诉用户注册的好处。在它的右边是一个浏览器截图只是用于美化的，而且对激励用户点击&#8221;Sign Up&#8221;行动召唤按钮不是必须的。通过减少文字和行动召唤按钮之间的空白，你将这两个元素可视的组织到了一起。浏览器截图和一个图片保证用户的实现不会从行动召唤按钮上面转移走。</p>
<p><a href="http://www.donortools.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/donortools_whitespace_grouped.jpg" alt="Donor Tools" height="375" width="481"></a></p>
<h4>使用高对比度的颜色</h4>
<p>决定在行动召唤按钮上使用哪个颜色很重要。在你的行动召唤按钮上使用一个相对于周边元素和背景色对比度高的色彩，因为这是让用户注意到你的行动召唤按钮的关键。</p>
<p><strong>与周边元素形成对比的颜色</strong></p>
<p><strong><a href="http://notepod.net/">Notepod</a></strong>例证在一个行动召唤按钮和它周边元素的色彩反差是如何能够有效的吸引用户的注意的。周围元素都是黑色的，而这个行动召唤按钮却是浅蓝色。</p>
<p><a href="http://notepod.net/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/notepod_color_contrast_surrounding_elements.jpg" alt="Notepod" height="450" width="481"></a></p>
<p><strong>背景/前景色彩反差</strong></p>
<p><strong><a href="http://www.valleycreek.org/">Valley Creek Church</a></strong>设置它的浅黄色&#8221;Learn More&#8221;召唤按钮到一个灰度图片上面。就算使用一个简单的行动召唤按钮设计在一个复杂元素的上面(此处是一个图片)，它依然因为色彩选择而醒目。</p>
<p><a href="http://www.valleycreek.org/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/valley_creek_church_color_choice_contrast.jpg" alt="Valley Creek Church" height="146" width="481"></a></p>
<h4>提供次要的替代行动</h4>
<p>一个页面可以有多个行动召唤按钮。有时候有必要提供一个次要行动以便于说服用户稍后访问你希望的主要的行动召唤。比如，在用户注册一些网络服务之前，一些用户需要了解更多的信息才去执行注册的行为；次要行为可以请求他们体验一次产品之旅或者访问展示产品的更多信息的页面。</p>
<p><strong>在主要行动旁边显示次要行动</strong></p>
<p><strong><a href="http://www.officevp.com/">OfficeVP</a></strong>显示两个挨着的行动召唤按钮——居中并放在页面头部。通过区分颜色，用户可以看到他们有两条不同的路：他们可以直接注册(主要行动)，或者如果他们在注册前希望了解更多，他们可以选择第二个行为，体验一下先。</p>
<p><a href="http://www.officevp.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/officevp_primary_action.jpg" alt="OfficeVP" height="167" width="481"></a></p>
<p><strong><a href="http://transmissionapps.com/">Transmissions</a></strong> 也展示了在期望的重要行动旁边放一个次要行动按钮的概念。这样的话，主要行动就是让用户购买该应用。如果他们想在购买前试用一下，那么第二期望的行动就是先下载该应用。注意主要行动通过做的比次要行动按钮更醒目来被标识出来，相对于背景色比次要行动按钮有更鲜明的对比色。这样，你就很有效的从左到右移动目光。。</p>
<p>另外，注意两个行动召唤按钮之间相对于该区域其它元素的缩少的空白的使用，有效的将按钮组织到了一起。</p>
<p><a href="http://transmissionapps.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/transmission_secondary_group.jpg" alt="Transmissions" height="400" width="481"></a></p>
<p><strong>在主要行动召唤按钮下面显示次要行动按钮</strong></p>
<p>另外，你可能想将次要按钮放到主要行动下面。如果你需要更好的区分你的行动召唤按钮的话，这可能就是有必要的了。<strong><a href="http://virb.com/">Virb</a></strong> 展示了这个方案，&#8221;Join Now&#8221; 行动召唤按钮被放在次要行动“体验产品之旅”的上面。注意，次要行动按钮因为它的默认状态被用比较弱的色彩远远的从主要行动隔开了。</p>
<p><a href="http://virb.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/virb_secondary_stacked.jpg" alt="Virb" height="400" width="481"></a></p>
<h4>传递一种紧迫感</h4>
<p>通过使用大胆的、肯定的和命令的词语表达这个行动可以改变用户的看法，用这种方法说服他们不应再等待才去采取行动，以及等待可能会造成某些惩罚或者错失良机。</p>
<p><strong><a href="http://www.taptaptap.com/#convert">tap tap tap</a></strong>通过给一个行动召唤按钮添加紧迫性来证明了这个主意。&#8221;Buy Now&#8221;行动召唤按钮上面有“价格信息(Intro price)”的文字，巧妙的暗示用户行动拖延越久，将来在这个介绍的价格过期的时候可能要支付的更多的风险就越高。</p>
<p><a href="http://www.taptaptap.com/#convert"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/taptaptap_urgency.jpg" alt="tap tap tap" height="252" width="481"></a></p>
<p>通常，创造紧迫感可以有效的暗示用户去采取行动。使用单词比如&#8221;now&#8221;、&#8221;immediately&#8221;和&#8221;right now&#8221;可以传递这种紧迫感。看一看<strong><a href="http://www.barackobama.com/">Organizing for America</a></strong> (BarackObama.com) 呼吁网站访问者&#8221;DONATE NOW&#8221;的例子。如果只是简单的说&#8221;Donate&#8221;，紧迫感就会消失，用户也可能会更少的去采取行动。</p>
<p><a href="http://www.barackobama.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/barack_obama_urgent_nowuse.jpg" alt="Organizing for America" height="155" width="481"></a></p>
<h4>告诉用户采取行动是很容易的</h4>
<p>通常，用户迟疑采取行动是源于考虑一个姓对可能会比较困难、昂贵或者费时。通过照顾这些担心，你的行动召唤按钮能带来更多的转换(点击)。</p>
<p>你如，在<strong><a href="http://basecamphq.com/">Basecamp</a></strong>上，行动召唤按钮明确显示用户注册将会花费的时间以及注册是不花钱的(free)。 这种做法消除了用户将要在线采取行动是的两个主要顾虑：费用(这也会要求他们采取格外的操作比如拿出他们的信用卡) 和时间限制。</p>
<p><a href="http://basecamphq.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/basecamp_easy.jpg" alt="Basecamp" height="200" width="481"></a></p>
<p>在<strong><a href="http://tearoundapp.com/">Tea Round App</a></strong>的例子中，他们告诉用户注册他们的邮件服务将不会受到垃圾邮件，这是无论何时将你的Email提供给第三方服务时担心的一个事情。</p>
<p><a href="http://tearoundapp.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/tea_round_app_easy.jpg" alt="Tea Round App" height="136" width="481"></a></p>
<h4>告诉用户期待什么</h4>
<p>大部分网站用户犹豫于相信在网页上呈现的表面价值。根据经验，他们的信任已经被烧光了——声称免费服务的链接，却不得不输入他们的信用卡号码才能得到他们想要的服务。为了增加点击转换率和重建信任，预期用户的怀疑并告诉他们通过采取你为他们准备的行动将会得到什么。当设计一个行动召唤按钮，考虑到用户可能会有的所有潜在的问题，然后确定你可以及时的回答他们。</p>
<p><strong><a href="http://www.mozilla.com/en-US/firefox/firefox.html">Mozilla Firefox</a></strong> 告诉用户通过点击他们的行动召唤按钮的详细的预期。这个行动召唤按钮告诉你你将会得到Firefox 3.5，它是免费的，以及(对那些更多的特性)它的确切的版本是<em>3.5.3</em> for<em>Windows</em> 操作系统，语言是<em>English</em>，然后你可以预期一个<em>7.7MB</em> 的下载。</p>
<p><a href="http://www.mozilla.com/en-US/firefox/firefox.html"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/firefox_tell_expect.jpg" alt="Mozilla Firefox" height="150" width="481"></a></p>
<p><strong><a href="http://onehub.com/">Onehub</a></strong>预料到用户是否(在采取行动上)需要先支付或者他们是否能够用一下产品作一下测试的问题，告诉用户如果他们采取注册的行为，他们将获得30天的免费试用。</p>
<p><a href="http://onehub.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/onehub_tell_users_expect.jpg" alt="Onehub" height="150" width="481"></a></p>
<hr />
<p>转载请注明出处：<a href="http://www.qianduan.net">前端观察</a>。</p>
<h3>行动召唤按钮设计展示</h3>
<p>现在我们已经讲了一些设计行动召唤按钮的最佳实践，让我们看一些网页上的行动召唤按钮的典型实现。我们将配合这些设计和上面的技术和最佳实践，并浏览他们如何帮助实现这些良好的设计。</p>
<p><a href="http://www.campaignmonitor.com/">Campaign Monitor</a><br />
	这套行动召唤按钮显示两个潜在的用户行为：&#8221;Try it for free&#8221;和&#8221;View features&#8221;。对于已经了解Campaign Monitor 和想要现在尝试的用户来说，他们可以执行首要期望的行动，而其它的想要在作出时间承诺之前浏览一下可以选择查看该网络应用的更多特性的次要行动。</p>
<p><a href="http://www.campaignmonitor.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/campaign_monitor_showcase.jpg" alt="Campaign Monitor" height="250" width="481"></a></p>
<p><a href="http://www.filesharehq.com/">Fileshare HQ</a><br />
	这个行动召唤按钮告诉用户预期的事情(&#8221;开始在片刻间分享文件(start sharing files in minutes)&#8221;).</p>
<p><a href="http://www.filesharehq.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/fileshare_hq_showcase.jpg" alt="Fileshare HQ" height="153" width="481"></a></p>
<p><a href="http://www.livestream.com/platform/premium_features_and_pricing">Livestream.com</a><br />
	这组行动召唤按钮使用垂直排列分组以表示展示给用户的这些行动的期待的重要性顺序。主要期望的行动是获取一次评估，接着是了解服务的详情，最后是对比不同方案之间的差别。</p>
<p><a href="http://www.livestream.com/platform/premium_features_and_pricing"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/livestreamdotcom_showcase.jpg" alt="Livestream.com" height="300" width="481"></a></p>
<p><a href="http://www.playintraffik.com/">Traffik CMS</a><br />
	这个行动召唤按钮被放在一个非常醒目的位置，在页面的最顶部，并用型号和色彩从周边相关元素中高亮了出来。</p>
<p><a href="http://www.playintraffik.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/traffik_showcase.jpg" alt="Traffik CMS" height="187" width="481"></a></p>
<p><a href="http://www.hambodesign.com.au/">Hambo Design</a><br />
	这个行动召唤按钮告诉用户预期的事情：通过获得报价，没有附加的东西。它预料到了&#8221;如果我要花费时间进行这个流程的话一份报价将花费我多少?&#8221;的问题。(该网站已经被改版——译者，神飞。)</p>
<p><a href="http://www.hambodesign.com.au/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/hambo_design_showcase.jpg" alt="Hambo Design" height="187" width="481"></a></p>
<p><a href="http://www.theresumator.com/home/">The Resumator</a><br />
	你可以在这个行动召唤按钮上看到很多最佳实践。首先，它使用了空白、大小和颜色来清晰的将自己和页面其它元素区分开来。然后，为了创造逻辑的分组以说服用户采取行动，它在按钮上面的推荐文字上使用较少的空白，然后将次要行动&#8221;Take a tour first&#8221;放到它的下面。</p>
<p>本文由<a href="http://www.qianduan.net">前端观察</a>译自<a href="http://www.smashingmagazine.com">Smashing Magazine</a>，转载请注明出处，多谢。</p>
<p><a href="http://www.theresumator.com/home/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/resumator_showcase.jpg" alt="The Resumator" height="400" width="481"></a></p>
<p><a href="http://wufoo.com/">Wufoo</a><br />
	Wufoo提供了两个行动，用户可以看到一个水平排列的样式，主要期待行动是左边的那个。这些按钮很大而且很难错过，尽管看网站的全局设计的时候它们并不是很显眼。</p>
<p><a href="http://wufoo.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/wufoo_showcase.jpg" alt="Wufoo" height="278" width="481"></a></p>
<p><a href="http://mobilewebbook.com/">Mobile Web Design</a><br />
	这个行动召唤按钮被放在一个醒目的位置；它有较大的型号和一个独特的颜色——尊重了周边的元素。为了“Purchas the book”上提供附加的上下文，这个行动召唤按钮下面防止了一些文字注释的价格和可用的格式(传统图书或者PDF)。</p>
<p><a href="http://mobilewebbook.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/mobile_web_design_showcase.jpg" alt="Mobile Web Design" height="300" width="481"></a></p>
<p><a href="http://www.ncover.com/">NCover</a><br />
	这些行动召唤按钮很整齐。主要行动在蓝色的次要行动的上面。用户被吸引到这个按钮是因为大小，而且对次要期望行动使用蓝色调可以减弱它对相对于主要期望的行动。注意空白的使用以创建三个相关元素的逻辑分组有助于实现销售：文字告诉用户Ncover是干什么的，注册行动召唤按钮，以及体验行动召唤按钮。相比之下，注意此组和右边的元素之间的空白变化。</p>
<p><a href="http://www.ncover.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/ncover_showcase.jpg" alt="NCover" height="300" width="481"></a></p>
<p><a href="http://www.xero.com/">Xero</a><br />
	本组行动召唤按钮展示听过一个次要行动的用法。在主要期待行动的右边，有一个文字链接请求用户“了解更多(find out more)”，对于不想立马注册的用户来说，这个设计增加了用户会在注册之前“了解更多”的可能性。</p>
<p><a href="http://www.xero.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/xero_showcase.jpg" alt="Xero" height="300" width="481"></a></p>
<p><a href="http://www.taoeffect.com/espionage/">Tao Effect –  Espionage</a><br />
	这是一组行动召唤按钮，为用户提供三个选择：Download、Buy Now或者Upgrade。这样的话，主要期待行动就是下载这个应用，紧跟着两个同样的行动“Buy Now”和“upgrade”。区别是在行动召唤按钮上使用不同哦你高的颜色，主要行动比两个次要行动的颜色更醒目。</p>
<p><a href="http://www.taoeffect.com/espionage/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/tao_effect_showcase.jpg" alt="Tao Effect - Espionage" height="179" width="481"></a></p>
<p><a href="http://invoicemachine.com/home">The Invoice Machine</a><br />
	这里你可以看到两个使用蓝色边框高亮的行动召唤按钮，因为它们使用了同样的风格，我们可以假定它们有相同的重要性。或许该公司确定用户在看到他们提供的东西之前不太可能选择注册的行为，也或者他们确信产品之旅将更有效的帮他们将访问者转换为会员。</p>
<p><a href="http://invoicemachine.com/home"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/invoice_machine_showcase.jpg" alt="The Invoice Machine" height="179" width="481"></a></p>
<p><a href="http://www.ekklesia360.com/">Ekklesia 360</a><br />
	这套行动召唤按钮展示使用图标来指示向前的感觉(用指向右边的箭头表示)。他们使用了一个相对于黑蓝色背景的高对比的色彩以使行动召唤按钮从页面设计中突出出来。</p>
<p><a href="http://www.ekklesia360.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/ekklesia_showcase.jpg" alt="Ekklesia 360" height="179" width="481"></a></p>
<p><a href="http://www.checkoutapp.com/">Checkout</a><br />
	通过使用一个相对于全局设计的非常突出的颜色到他们的行动召唤按钮，尽管在它上面的图片明显比按钮的型号还要大，它依然能够吸引用户的注意。</p>
<p><a href="http://www.checkoutapp.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/checkout_showcase.jpg" alt="Checkout" height="300" width="481"></a></p>
<p><a href="http://www.spinen.com/">spinen</a><br />
	使用直接而清晰的语言告诉用户当他们采取行动后预期的事情：这样的话，点击这个行动召唤按钮将让他们找到产品的更多信息。</p>
<p><a href="http://www.spinen.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/spinen_showcase.jpg" alt="spinen" height="205" width="480"></a></p>
<p><a href="http://www.codebasehq.com/">Codebase</a><br />
	这个行动召唤按钮告诉用户，通过执行这个行动他们能得到什么：免费15天的试用。它通过使用高对比色彩、在左边的一个图标以及大量的空白来吸引用户的注意。</p>
<p><a href="http://www.codebasehq.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/codebase_screenshot.jpg" alt="Codebase" height="205" width="480"></a></p>
<p><a href="http://goodbarry.com/obnw-designers">GoodBarry</a><br />
	在这个行动召唤按钮中，你可以看到空白、型号以及聪明的色彩选择是如何有效的让一个行动召唤按钮变得非常醒目。强调这个行动是免费的&#8221;FREE&#8221;能够暗示用户他们的预期。</p>
<p><a href="http://goodbarry.com/obnw-designers"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/goodbarry_showcase.jpg" alt="GoodBarry" height="205" width="480"></a></p>
<p><a href="http://www.wakeinteractive.com/">Wake Interactive</a><br />
	这里，这个行动召唤按钮相对于其周边元素的色彩令它突出出来，尽管它的周围的空白比较小。</p>
<p><a href="http://www.wakeinteractive.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/wake_interactive_showcase.jpg" alt="Wake Interactive" height="205" width="480"></a></p>
<p><a href="http://www.ohmedia.ca/">OH! Media</a><br />
	这个行动召唤按钮真的从页面中脱颖而出了——因为它的位置、周围的空白以及——最重要的——颜色的选择。看一下这个页面，目光被直接吸引到这个行动召唤按钮上了。</p>
<p><a href="http://www.ohmedia.ca/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/oh_media_showcase.jpg" alt="OH! Media" height="400" width="480"></a></p>
<p><a href="http://xhtml.pixelcrayons.com/">Pixelcrayons</a><br />
	看看空白能够如何很棒的提升行动召唤按钮吸引注意的效果。</p>
<p><a href="http://xhtml.pixelcrayons.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/pixelcrayons_showcase.jpg" alt="Pixelcrayons" height="314" width="480"></a></p>
<p><a href="http://getballpark.com/">Ballpark</a><br />
	这个行动召唤按钮的型号有效的吸引了用户的注意。它的清晰而直接的语言明确地告诉用户执行行动之后的预期结果。</p>
<p><a href="http://getballpark.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/ballpark_showcase.jpg" alt="Ballpark" height="314" width="480"></a></p>
<p><a href="http://onethemepermonth.com/knowpress-wordpress-theme/#start">One Theme  Per Month</a><br />
	这个行动召唤按钮组将主要希望行动放到替代行动的中间。通过为主要期望行动添加一个非常醒目的颜色，以及一个较大的空间，它试图将它的重要性放到次要行动的上面。</p>
<p><a href="http://onethemepermonth.com/knowpress-wordpress-theme/#start"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/one_theme_a_month_showcase.jpg" alt="One Theme Per Month" height="169" width="480"></a></p>
<p><a href="http://www.scrapblog.com/">Scrapblog</a><br />
	你可以看到使用相对于周边元素的鲜明的色彩、足够的空间、以及型号的一些用户注意的效果。简单的语言传递一种很容易的感觉，生存你可以通过点击立马“开始(start)”。</p>
<p><a href="http://www.scrapblog.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/scrapblog_showcase.jpg" alt="Scrapblog" height="400" width="480"></a></p>
<p><a href="http://www.13creative.com/">13 Creative</a><br />
这个行动召唤按钮显示如何通过使用一个非传统的设计，你依然可以在周围元素比较大的情况下吸引用户的注意。</p>
<p><a href="http://www.13creative.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/13_creative_showcase.jpg" alt="13 Creative" height="287" width="480"></a></p>
<p><a href="http://koombea.com/kalculator/">Kalculator</a><br />
	这个行动召唤按钮明确的高速用户：通过点击这个行动召唤按钮，他们可以只付$3.99。使用单词&#8221;only&#8221;提示这是个相当不错的交易，这显然有利于销售。</p>
<p><a href="http://koombea.com/kalculator/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/kalculator_showcase.jpg" alt="Kalculator" height="287" width="480"></a></p>
<p><a href="http://www.webdesignbeach.com/">Web Design Beach</a><br />
	下面是一组使用两种不同颜色的行动召唤按钮。更醒目的那个，&#8221;get a quote&#8221; 暗示它就是主要期待行动。</p>
<p><a href="http://www.webdesignbeach.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/webdesign_beach_showcase.jpg" alt="Web Design Beach" height="287" width="480"></a></p>
<p><a href="http://thehighlandfling.com/">The Highland Fling</a><br />
	该行动召唤按钮设法通过大量的空白、显眼的位置和使用一个图标以使自己显眼以吸引注意力。通过使用单词&#8221;now&#8221;，它传递了一种紧迫感和立马行动的需求。</p>
<p><a href="http://thehighlandfling.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/highland_fling_showcase.jpg" alt="The Highland Fling" height="359" width="480"></a></p>
<p><a href="http://www.commercialiq.com/">Commercial IQ</a><br />这个行动召唤按钮的型号和项目位置吸引了用户的注意。放大镜图标给行动添加了语境。添加“Free for search”文字消除了用户关于行动的费用的顾虑。</p>
<p><a href="http://www.commercialiq.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/commercial_iq_showcase.jpg" alt="Commercial IQ" height="314" width="480"></a></p>
<p><a href="http://leadlogsys.com/">dashboard</a><br />
	这里，你可以看到使用高对比色彩的以使行动召唤按钮脱颖而出的做法，尽管是在明显较大的页面元素中间。</p>
<p><a href="http://leadlogsys.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/dashboard_showcase.jpg" alt="dashboard" height="314" width="480"></a></p>
<h3>行动召唤按钮的附加资源</h3>
<p>如果你想了解更多的关于行动召唤按钮的信息，这里是一些其它网站上的相关资源和文章：</p>
<p><a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-slick-and-clean-button-in-photoshop/">如何在Photoshop中制作一个光滑而简洁的按钮</a><br />
	这个教程是在Six Revision，由我(Jacob Gube)编写，将一步步向你展示如何制作大号的和能引起注意的行动召唤按钮。</p>
<p><a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-slick-and-clean-button-in-photoshop/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/additional_resources_sixrevisions.jpg" alt="How to Create a Slick and Clean Button in Photoshop" height="218" width="480"></a></p>
<p><a href="http://patterntap.com/tap/collection/buttons">网页设计中的灵感按钮</a><br />
	如果你需要一些优秀按钮设计的灵感，看一下这个Pattern Tap的收集吧。</p>
<p><a href="http://patterntap.com/tap/collection/buttons"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/additional_resources_patterntap.jpg" alt="Inspirational Buttons in web design - Pattern Tap" height="250" width="480"></a></p>
<p><a href="http://boagworld.com/design/10-techniques-for-an-effective-call-to-action">有效的行动召唤按钮的10种技术</a><br />
	Paul Boag讨论一些关于制作良好的行动召唤按钮的技术</p>
<p><a href="http://boagworld.com/design/10-techniques-for-an-effective-call-to-action"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/additional_resources_techniques.jpg" alt="10 techniques for an effective 'call to action'" height="272" width="480"></a></p>
<p><a href="http://www.uxbooth.com/blog/good-call-to-action-buttons/">良好的行动召唤按钮</a><br />
	UX Booth关于“好的行动召唤按钮的组成”方面有一篇好文章</p>
<p><a href="http://www.uxbooth.com/blog/good-call-to-action-buttons/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/additional_resources_good_cta.jpg" alt="Good Call-To-Action Buttons" height="166" width="313"></a></p>
<p><a href="http://www.grokdotcom.com/2007/02/15/large-red-buttons-oh-my/">Firefox展示一个强大的行动召唤按钮是如何提升入口页面的性能的</a><br />
	阅读一下一个好的行动召唤按钮如何提高转换。你将发现一个Firefox、Opera和IE使用的行动召唤按钮之间的对比。</p>
<p><a href="http://www.grokdotcom.com/2007/02/15/large-red-buttons-oh-my/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/additional_resources_firefox.jpg" alt="Firefox Shows How a Strong Call to Action Can Boost Landing Page Performance" height="250" width="480"></a></p>
<p><a href="http://www.qianduan.net/web-design-trends-act-guide-button.html">网站设计趋势：行动召唤按钮(中文翻译)</a><br />
	Lee Munroe将一系列的行动召唤按钮放到一起，并附加了一个在当前设计趋势方面的讨论。</p>
<p><a href="http://www.leemunroe.com/web-design-trends-call-to-action-signup-download-buttons/"><img src="http://www.qianduan.net/wp-content/uploads/2009/11/call-to-action/additional_resources_webdesign_trend.jpg" alt="Web Design Trends: Call To Action Buttons" height="53" width="480"></a></p>
<h4>关于原作者</h4>
<p><em>Jacob Gube是<a href="http://sixrevisions.com/">Six Revisions</a>的创立者和主编。他同时也是一个专注于远程教育、前端开发和网站可用性的网页开发者/设计师，如果你想联系他，可以follow他的Twitter: @<a href="http://twitter.com/sixrevisions">sixrevisions</a>。</em></p><img src="http://www1.feedsky.com/t1/294704832/qianduan/feedsky/s.gif?r=http://www.qianduan.net/call-to-action-buttons-examples-and-best-practices.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704832/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704832/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/rC_18pSQVF8" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/call-to-action-buttons-examples-and-best-practices.html/feed</wfw:commentRss><slash:comments>8</slash:comments><description>行动召唤在网页设计中——尤其是在用户体验方面——是一个描述在网页中用于诱导用户行为的元素的术语。在网站界面中，最流行的行动召唤的表现是出现在点击表单按钮、完成一个行动或...&lt;img src="http://www1.feedsky.com/t1/294704832/qianduan/feedsky/s.gif?r=http://www.qianduan.net/call-to-action-buttons-examples-and-best-practices.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704832/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704832/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>按钮</category><category>最佳实践</category><category>行动召唤</category><category>ShowCase</category><category>Tips</category><category>Resource</category><pubDate>Wed, 04 Nov 2009 18:21:01 +0800</pubDate><author>神采飞扬</author><comments>http://www.qianduan.net/call-to-action-buttons-examples-and-best-practices.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11510</guid><dc:creator>神采飞扬</dc:creator><fs:srclink>http://www.qianduan.net/call-to-action-buttons-examples-and-best-practices.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704832/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/call-to-action-buttons-examples-and-best-practices.html</feedburner:origLink></item><item><title>Firefox Bug: inline/inline-block的间隙</title><link>http://feedproxy.google.com/~r/qianduannet/~3/PZ2wP7WONvY/firefox-bug-inline-inline-block-gap.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/YywbFjQVa-veTNsoPDR5AesUD-U/0/da"><img src="http://feedads.g.doubleclick.net/~a/YywbFjQVa-veTNsoPDR5AesUD-U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YywbFjQVa-veTNsoPDR5AesUD-U/1/da"><img src="http://feedads.g.doubleclick.net/~a/YywbFjQVa-veTNsoPDR5AesUD-U/1/di" border="0" ismap="true"></img></a></p><div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">首先要说明的是，这个标题有点标题党的意思，这个 bug 也存在于 IE8 下，在 IE6 和 IE7 下正常。之前写过两篇关于 IE bug 的文章，这里特意用了 Firefox bug 作为标题，是为了给自己找点心里安慰，省得总是埋怨 IE :)。</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">关于 inline-block，可以参考之前的一篇文章 &lt;a href=&#8221;http://www.qianduan.net/cross-browser-inline-block.html&#8221;&gt;跨浏览器的inline-block&lt;/a&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">这个 bug 是“痛在远方&#8221;同学碰到的，确实很诡异啊，貌似对标准支持越好的浏览器才会有这个问题。</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">如下图：</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">在 Firefox 下，inline/inline-block 的元素直接会有莫名的几像素(貌似是6px)的空隙。这个 bug 比较难发现，因为为了美观，一般的这种设计，inline/inline-block 的元素直接都会有一定的间距，再加上目前的浏览器对 inline-block 这个属性的支持并不是很好，这个属性应用的也不是很频繁。由&lt;a href=&#8221;http://www.qianduan.net/cross-browser-inline-block.html&#8221;&gt;跨浏览器的inline-block&lt;/a&gt;来看，要对浏览器做不少hack，代码量以及方便性上不如直接使用浮动。因此这个 bug 的影响其实不大。</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">要解决这个 bug，貌似目前没有什么好的方法，只能改变代码的缩进，把换行去掉，整个代码写入一行。</div>
<p>首先要说明的是，这个标题有点标题党的意思，这个 bug 也存在于 IE8 下，在 IE6 和 IE7 下正常。之前写过两篇关于 IE bug 的文章，这里特意用了 Firefox bug 作为标题，是为了给自己找点心里安慰，省得总是埋怨 IE :)。</p>
<p>关于 inline-block，可以参考之前的一篇文章 <a href="http://www.qianduan.net/cross-browser-inline-block.html">跨浏览器的inline-block</a></p>
<p>这个 bug 是“痛在远方&#8221;同学碰到的，确实很诡异啊，貌似对标准支持越好的浏览器才会有这个问题。本文来自<a href="http://qianduan.net">前端观察</a>，转载请以链接形式注明出处。</p>
<p>如下图：</p>
<p><a rel="attachment wp-att-11507" href="http://www.qianduan.net/firefox-bug-inline-inline-block-gap.html/inline-and-inline-block_1257148494562"><img class="alignnone size-full wp-image-11507" title="inline and inline-block_1257148494562" src="http://www.qianduan.net/wp-content/uploads/2009/11/inline-and-inline-block_1257148494562.png" alt="inline and inline-block_1257148494562" width="378" height="293" /></a></p>
<p>在 Firefox 下，inline/inline-block 的元素直接会有莫名的几像素(貌似是6px)的空隙。这个 bug 比较难发现，因为为了美观，一般的这种设计，inline/inline-block 的元素直接都会有一定的间距，再加上目前的浏览器对 inline-block 这个属性的支持并不是很好，这个属性应用的也不是很频繁。由<span style="background-color: #ffffff;"><a href="http://www.qianduan.net/cross-browser-inline-block.html">跨浏览器的inline-block</a></span>来看，要对浏览器做不少hack，代码量以及方便性上不如直接使用浮动。因此这个 bug 的影响其实不大。<span style="background-color: #ffffff; ">本文来自<a href="http://qianduan.net">前端观察</a>，转载请以链接形式注明出处。</span></p>
<p>要解决这个 bug，貌似目前没有什么好的方法，只能改变代码的缩进，把换行去掉，整个代码写入一行。</p>
<p>具体可以参见 <a href="http://labs.qianduan.net/inline-block/default.html">demo</a>。</p>
<p><span style="background-color: #ffffff; ">本文来自<a href="http://qianduan.net">前端观察</a>，转载请以链接形式注明出处。</span></p><img src="http://www1.feedsky.com/t1/294704833/qianduan/feedsky/s.gif?r=http://www.qianduan.net/firefox-bug-inline-inline-block-gap.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704833/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704833/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/PZ2wP7WONvY" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/firefox-bug-inline-inline-block-gap.html/feed</wfw:commentRss><slash:comments>16</slash:comments><description>首先要说明的是，这个标题有点标题党的意思，这个 bug 也存在于 IE8 下，在 IE6 和 IE7 下正常。之前写过两篇关于 IE bug 的文章，这里特意用了 Firefox bug 作为标题，是为了给自己找点心里安慰，...&lt;img src="http://www1.feedsky.com/t1/294704833/qianduan/feedsky/s.gif?r=http://www.qianduan.net/firefox-bug-inline-inline-block-gap.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704833/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704833/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>CSS</category><category>Tips</category><category>css</category><category>Firefox</category><pubDate>Mon, 02 Nov 2009 16:51:06 +0800</pubDate><author>糖伴西红柿</author><comments>http://www.qianduan.net/firefox-bug-inline-inline-block-gap.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11506</guid><dc:creator>糖伴西红柿</dc:creator><fs:srclink>http://www.qianduan.net/firefox-bug-inline-inline-block-gap.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704833/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/firefox-bug-inline-inline-block-gap.html</feedburner:origLink></item><item><title>漂亮的使用纹理的网站设计展示</title><link>http://feedproxy.google.com/~r/qianduannet/~3/sNj5Ep_soQM/showcase-of-beautiful-textured-web-designs.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/ec1C3qepHT3dcbONbX0KMCr1YYA/0/da"><img src="http://feedads.g.doubleclick.net/~a/ec1C3qepHT3dcbONbX0KMCr1YYA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ec1C3qepHT3dcbONbX0KMCr1YYA/1/da"><img src="http://feedads.g.doubleclick.net/~a/ec1C3qepHT3dcbONbX0KMCr1YYA/1/di" border="0" ismap="true"></img></a></p><div>原文：<a href="http://www.qianduan.net/showcase-of-beautiful-textured-web-designs.html">漂亮的使用纹理的网站设计展示</a><br />
译自：<a href="http://www.smashingmagazine.com/2009/10/29/showcase-of-beautiful-textured-web-designs/">Showcase Of Beautiful Textured Web Designs</a><br />
版权所有，转载请注明出处，多谢！</p>
<hr /></div>
<p><strong>纹理</strong>这几年已经变得越来越流行了，而且被更好的应用了。当然它们并没有被限制在网站设计方面；各种纹理也被广泛应用于印刷设计、插图、传统艺术、电视广告&#8230;只要你想到的地方！纹理是给你的设计增加深度的最佳方式之一，无论它是在简洁的矢量插画上的隐约的噪点还是跨越一个布局的涂鸦。</p>
<p><span id="more-11493"></span></p>
<p>在过去的几周，我们收集了众多<strong>漂亮的纹理网站设计实例</strong>以启发你，夏满就是收集的一小撮链接，可以帮助你开始在你自己的设计中使用纹理。</p>
<h3>使用纹理的网站设计</h3>
<p><a href="http://www.loukotka.com/">Loukotka</a></p>
<p><a href="http://www.loukotka.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/lou.jpg" alt="Loukotka" /></a></p>
<p><a href="http://ftdesigner.net/">FT Designer</a></p>
<p><a href="http://ftdesigner.net/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/ftdesignernet.jpg" alt="FT Designer" /></a></p>
<p><a href="http://coleweber.com/">Cole &amp; Weber</a></p>
<p><a href="http://coleweber.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/colewebercom.jpg" alt="Cole &amp; Weber" /></a></p>
<p><a href="http://jasonjulien.com/">Jason Julien</a></p>
<p><a href="http://jasonjulien.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/jasonjuliencom.jpg" alt="Jason Julien" /></a></p>
<p><a href="http://thetrinitypub.com/">Trinity Irish Pub</a></p>
<p><a href="http://thetrinitypub.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/trinity.jpg" alt="Trinity Irish Pub" /></a></p>
<p><a href="http://www.koodoz.com.au/klog/">The Klog</a></p>
<p><a href="http://www.koodoz.com.au/klog/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/klog.jpg" alt="Klog" /></a></p>
<p><a href="http://alexcoleman.net/">Alex Coleman</a></p>
<p><a href="http://alexcoleman.net/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/alexcolemannet.jpg" alt="Alex Coleman" /></a></p>
<p><a href="http://bergedorf.dk/">Bergedorf</a></p>
<p><a href="http://bergedorf.dk/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/bergedorfdk.jpg" alt="Bergedorf" /></a></p>
<p><a href="http://bigcartel.com/">Big Cartel</a></p>
<p><a href="http://bigcartel.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/bigcartelcom.jpg" alt="Big Cartel" /></a></p>
<p><a href="http://stuckincustoms.com/">Stuck in Customs</a></p>
<p><a href="http://stuckincustoms.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/stuckincustomscom.jpg" alt="Stuck in Customs" /></a></p>
<p><a href="http://billcenglish.com/">Bill C. English</a></p>
<p><a href="http://billcenglish.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/billcenglishcom.jpg" alt="Bill C. English" /></a></p>
<p><a href="http://boernewildwestday.com/">Boerne Wild West Day</a></p>
<p><a href="http://boernewildwestday.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/boernewildwestdaycom.jpg" alt="Boerne Wild West Day" /></a></p>
<p><a href="http://brownblogfilms.com/">Brown Blog Films</a></p>
<p><a href="http://brownblogfilms.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/brownblogfilmscom.jpg" alt="Brown Blog Films" /></a></p>
<p><a href="http://www.chouteauslanding.com/">Chouteaus Landing</a></p>
<p><a href="http://www.chouteauslanding.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/chouteauslandingcom.jpg" alt="Chouteaus Landing" /></a></p>
<p><a href="http://ctrln.comyr.com/">Ctrl+N Diseño Gráfico</a></p>
<p><a href="http://ctrln.comyr.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/ctrlncomar.jpg" alt="Ctrl+N Diseño Gráfico" /></a></p>
<p><a href="http://cubeclub-chemnitz.de/">Cubeclub Chemnitz</a></p>
<p><a href="http://cubeclub-chemnitz.de/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/cubeclub-chemnitzde.jpg" alt="Cubeclub Chemnitz" /></a></p>
<p><a href="http://dannydiablo.de/">Danny Diablo</a></p>
<p><a href="http://dannydiablo.de/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/dannydiablode.jpg" alt="Danny Diablo" /></a></p>
<p><a href="http://demainjarrete.stpo.fr/blog-52-demain-j-arrete-faith-no-more.html">Demain Jarrete</a></p>
<p><a href="http://demainjarrete.stpo.fr/blog-52-demain-j-arrete-faith-no-more.html"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/demainjarrete.jpg" alt="Demain Jarrete" /></a></p>
<p><a href="http://dhcards.com/">DH Cards</a></p>
<p><a href="http://dhcards.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/dhcardscom.jpg" alt="DH Cards" /></a></p>
<p><a href="http://dibtych.de/">Dibtych</a></p>
<p><a href="http://dibtych.de/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/dibtychde.jpg" alt="Dibtych" /></a></p>
<p><a href="http://douglasmenezes.com/wp">Douglas Menezes</a></p>
<p><a href="http://douglasmenezes.com/wp"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/douglasmenezescomslashwp.jpg" alt="Douglas Menezes" /></a></p>
<p><a href="http://eliseos.net/">Eliseos</a></p>
<p><a href="http://eliseos.net/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/eliseosnet.jpg" alt="Eliseos" /></a></p>
<p><a href="http://madebyfudge.com/">Fudge</a></p>
<p><a href="http://madebyfudge.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/fudgecom.jpg" alt="Fudge" /></a></p>
<p><a href="http://5pieces.com/">5 Pieces</a></p>
<p><a href="http://5pieces.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/5piecescom.jpg" alt="5 Pieces" /></a></p>
<p><a href="http://glocalventures.org/">Glocal Ventures</a></p>
<p><a href="http://glocalventures.org/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/glocalventuresorg.jpg" alt="Glocal Ventures" /></a></p>
<p><a href="http://handcraftedcss.com/">Handcrafted CSS</a></p>
<p><a href="http://http//handcraftedcss.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/handcraftedcsscom.jpg" alt="Handcrafted CSS" /></a></p>
<p><a href="http://innermetrogreen.com/">Inner Metro Green</a></p>
<p><a href="http://innermetrogreen.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/innermetrogreencom.jpg" alt="Inner Metro Green" /></a></p>
<p><a href="http://introzo.com/">Introzo</a></p>
<p><a href="http://introzo.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/introzocom.jpg" alt="Introzo" /></a></p>
<p><a href="http://53mondays.com/">53 Mondays</a></p>
<p><a href="http://53mondays.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/53mondayscom.jpg" alt="53 Mondays" /></a></p>
<p><a href="http://islandphotobooth.com/">Island Photobooth</a></p>
<p><a href="http://islandphotobooth.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/islandphotoboothcom.jpg" alt="Island Photobooth" /></a></p>
<p><a href="http://mutantlabs.co.uk/">Mutant Labs</a></p>
<p><a href="http://mutantlabs.co.uk/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/mutantlabscouk.jpg" alt="Mutant Labs" /></a></p>
<p><a href="http://legworkstudio.com/">Legwork Studio</a></p>
<p><a href="http://legworkstudio.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/legworkstudiocom.jpg" alt="Legwork Studio" /></a></p>
<p><a href="http://lewebdefi.com/">Le Web Défi</a></p>
<p><a href="http://lewebdefi.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/lewebdeficom.jpg" alt="Le Web Défi" /></a></p>
<p><a href="http://lillystable.com/">Lilly Stable</a></p>
<p><a href="http://lillystable.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/lillystablecom.jpg" alt="Lilly Stable" /></a></p>
<p><a href="http://lovefreelancing.com/">Love Freelancing</a></p>
<p><a href="http://lovefreelancing.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/lovefreelancingcom.jpg" alt="Love Freelancing" /></a></p>
<p><a href="http://markforrester.co.za/">Mark Forrester</a></p>
<p><a href="http://markforrester.co.za/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/markforrestercoza.jpg" alt="Mark Forrester" /></a></p>
<p><a href="http://markupandstyle.org/">Markup &amp; Style</a></p>
<p><a href="http://markupandstyle.org/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/markupandstyleorg.jpg" alt="Markup &amp; Style" /></a></p>
<p><a href="http://martinanderle.de/">Martin Anderle</a></p>
<p><a href="http://martinanderle.de/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/martinanderlede.jpg" alt="Martin Anderle" /></a></p>
<p><a href="http://mattsalik.com/">Matt Salik</a></p>
<p><a href="http://mattsalik.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/mattsalikcom.jpg" alt="Matt Salik" /></a></p>
<p><a href="http://mergeweb.com/">Merge Web</a></p>
<p><a href="http://mergeweb.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/mergewebcom.jpg" alt="Merge Web" /></a></p>
<p><a href="http://mesonprojekt.com/blog">Meson Projekt Blog</a></p>
<p><a href="http://mesonprojekt.com/blog"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/mesonprojektcomslashblog.jpg" alt="Meson Projekt Blog" /></a></p>
<p><a href="http://morphix.si/">Morphix</a></p>
<p><a href="http://morphix.si/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/morphixsi.jpg" alt="Morphix" /></a></p>
<p><a href="http://motherearthbrewing.com/">Mother Earth Brewing</a></p>
<p><a href="http://motherearthbrewing.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/motherearthbrewingcom.jpg" alt="Mother Earth Brewing" /></a></p>
<p><a href="http://newtoyork.com/">New to York</a></p>
<p><a href="http://newtoyork.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/newtoyorkcom.jpg" alt="New to York" /></a></p>
<p><a href="http://orangelabel.com/">Orange Label</a></p>
<p><a href="http://orangelabel.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/orangelabelcom.jpg" alt="Orange Label" /></a></p>
<p><a href="http://pampaneo.es/">Pampaneo</a></p>
<p><a href="http://pampaneo.es/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/pampaneoes.jpg" alt="Pampaneos" /></a></p>
<p><a href="http://www.pizzaza.ca/restaurant/bar_a_vin.php">Piz’za-za</a></p>
<p><a href="http://www.pizzaza.ca/restaurant/bar_a_vin.php"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/pizzazaca.jpg" alt="Piz'za-za" /></a></p>
<p><a href="http://rccjax.com/">River City Church</a></p>
<p><a href="http://rccjax.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/rccjaxcom.jpg" alt="River City Church" /></a></p>
<p><a href="http://roar4milk.ca/">Roar 4 Milk</a></p>
<p><a href="http://roar4milk.ca/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/roar4milkca.jpg" alt="Roar 4 Milk" /></a></p>
<p><a href="http://saddlebackleather.com/">Saddleback Leather</a></p>
<p><a href="http://saddlebackleather.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/saddlebackleathercom.jpg" alt="Saddleback Leather" /></a></p>
<p><a href="http://stackoverflow.carsonified.com/">Stack Overflow</a></p>
<p><a href="http://stackoverflow.carsonified.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/stackoverflowcarsonfied.jpg" alt="Stack Overflow" /></a></p>
<p><a href="http://storypixel.com/">Story Pixel</a></p>
<p><a href="http://storypixel.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/storypixelcom.jpg" alt="Story Pixel" /></a></p>
<p><a href="http://sushiandrobots.com/">Sushi and Robots</a></p>
<p><a href="http://sushiandrobots.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/sushiandrobotscom.jpg" alt="Sushi and Robots" /></a></p>
<p><a href="http://texturelovers.com/">Texture Lovers</a></p>
<p><a href="http://texturelovers.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/textureloverscom.jpg" alt="Texture Lovers" /></a></p>
<p><a href="http://tonychester.com/">Tony Chester</a></p>
<p><a href="http://tonychester.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/tonychestercom.jpg" alt="Tony Chester" /></a></p>
<p><a href="http://yodaa.com/">Yodaa</a></p>
<p><a href="http://yodaa.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/yodaacom.jpg" alt="Yodaa" /></a></p>
<p><a href="http://whatisblik.com/">What Is Blik</a></p>
<p><a href="http://whatisblik.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/whatisblikcom.jpg" alt="What Is Blik" /></a></p>
<p><a href="http://yellowbirdproject.com/">Yellow Bird Project</a></p>
<p><a href="http://yellowbirdproject.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/yellowbirdprojectcom.jpg" alt="Yellow Bird Project" /></a></p>
<p><a href="http://thunderfuel.com/">Thunder Fuel</a></p>
<p><a href="http://thunderfuel.com/"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/thunderfuelcom.jpg" alt="Thunder Fuel" /></a></p>
<p><a href="http://ths.nu/ths.php">THS</a></p>
<p><a href="http://ths.nu/ths.php"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/texture/thsdotnuslashthsdotphp.jpg" alt="THS" /></a></p>
<h3>纹理下载</h3>
<ul>
<li><a href="http://www.texturelovers.com/">Texture Lovers</a></li>
<li><a href="http://lostandtaken.com/">Lost and Taken</a></li>
<li><a href="http://zentextures.com/">Zen Textures</a></li>
<li><a href="http://www.lovetextures.com/">Love Textures</a></li>
<li><a href="http://webtreats.mysitemyway.com/">WebTreats ETC</a></li>
<li><a href="http://circleboxtextures.com/">Circlebox Textures</a></li>
<li><a href="http://texturevault.net/">Texture Vault</a></li>
<li><a href="http://textur.es/">Textur.es</a></li>
</ul>
<h3>教程</h3>
<ul>
<li><a href="http://psd.tutsplus.com/interface-tutorials/design-a-cartoon-grunge-website-layout/">Create a Cartoon Grunge Website Layout</a></li>
<li><a href="http://www.webdesigndev.com/photoshop/how-to-create-a-green-grunge-web-layout">Create a Green Grunge Web Layout</a></li>
<li><a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-textured-grungy-3d-type-design">How to Create a Textured Grungy 3D Type Design</a></li>
<li><a href="http://www.tutorialboard.net/texture-layer-modes/">Texture with Layer Modes</a></li>
<li><a href="http://www.tutorial9.net/photoshop/design-a-stylish-retro-game-boy-poster-in-photoshop/">Design a Stylish Retro Game Boy Poster</a></li>
<li><a href="http://www.tutorial9.net/photoshop/add-visual-texture-3-easy-steps/">Add Visual Texture in 3 Easy Steps</a></li>
<li><a href="http://circleboxblog.com/2009/tutorials/how-to-create-a-texture-based-poster-in-photoshop/">Create a Texture Based Poster</a></li>
</ul>
<h4>关于作者</h4>
<p><em>Callum Chapman是一位来自英国的自由设计师，他在<a href="http://circleboxblog.com/">Circlebox Blog</a>上写东西，制作免费的可下载的高质量纹理。并在twitter上<a href="http://twitter.com/callumchapman">retweet</a>设计相关的文章。</em></p><img src="http://www1.feedsky.com/t1/294704834/qianduan/feedsky/s.gif?r=http://www.qianduan.net/showcase-of-beautiful-textured-web-designs.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704834/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704834/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/sNj5Ep_soQM" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/showcase-of-beautiful-textured-web-designs.html/feed</wfw:commentRss><slash:comments>2</slash:comments><description>纹理这几年已经变得越来越流行了，而且被更好的应用了。当然它们并没有被限制在网站设计方面；各种纹理也被广泛应用于印刷设计、插图、传统艺术、电视广...&lt;img src="http://www1.feedsky.com/t1/294704834/qianduan/feedsky/s.gif?r=http://www.qianduan.net/showcase-of-beautiful-textured-web-designs.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704834/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704834/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>ShowCase</category><category>纹理</category><pubDate>Sat, 31 Oct 2009 09:43:24 +0800</pubDate><author>神采飞扬</author><comments>http://www.qianduan.net/showcase-of-beautiful-textured-web-designs.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11493</guid><dc:creator>神采飞扬</dc:creator><fs:srclink>http://www.qianduan.net/showcase-of-beautiful-textured-web-designs.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704834/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/showcase-of-beautiful-textured-web-designs.html</feedburner:origLink></item><item><title>25个简洁优美的网站设计</title><link>http://feedproxy.google.com/~r/qianduannet/~3/Bj8Ytc6BaLU/25-simple-and-elegant-web-site-design.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/D5P-s06QKGHVf8P6-jibKVj_LXk/0/da"><img src="http://feedads.g.doubleclick.net/~a/D5P-s06QKGHVf8P6-jibKVj_LXk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/D5P-s06QKGHVf8P6-jibKVj_LXk/1/da"><img src="http://feedads.g.doubleclick.net/~a/D5P-s06QKGHVf8P6-jibKVj_LXk/1/di" border="0" ismap="true"></img></a></p><div> 原文：<a href="http://www.qianduan.net/25-simple-and-elegant-web-site-design.html">25个简洁优美的网站设计</a><br />
	译自：<a href="http://www.designshard.com/inspiration/25-examples-of-clean-and-well-designed-web-sites/">25 Examples of Clean and Well designed Web Sites</a><br />
	版权所有，转载请注明出处，多谢。</p>
<hr />
</div>
<p>我曾经找遍整个网络以尝试找到一些简洁而结构良好的网站实例，这可能是一个独特的布局或者只是使用一些好的排版、间距简单的呈现出来，或者是网站的给人的第一印象，这里只是一些我喜欢的。</p>
<p><span id="more-11490"></span></p>
<p>从这些网站实例中我们很容易发现一些特性，比如大空白、巨大而且漂亮的图片、对比鲜明的色彩、主色调为浅色(白色或者浅灰)、以及网格化布局等。</p>
<h4>Brian Hoff</h4>
<p><a href="http://www.brianhoff.net/" title="brianhoff" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/brianhoff.jpg" alt="brianhoff" title="brianhoff" height="259" width="500" /></a></p>
<h4>Kyle Steed</h4>
<p><a href="http://kylesteed.com/" title="kylesteed" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/kylesteed.jpg" alt="kylesteed" title="kylesteed" height="259" width="500" /></a></p>
<h4>Spoon Graphics</h4>
<p><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/spoongraphics.jpg" alt="spoongraphics" title="spoongraphics" height="259" width="500" /></p>
<h4>Sushi and Robots</h4>
<p><a href="http://sushiandrobots.com/" title="sushiandrobots" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/sushiandrobots.jpg" alt="sushiandrobots" title="sushiandrobots" height="259" width="500" /></a></p>
<h4>New To York</h4>
<p><a href="http://www.newtoyork.com/" title="newtoyork" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/newtoyork.jpg" alt="newtoyork" title="newtoyork" height="259" width="500" /></a></p>
<h4>Adrian Pelletier</h4>
<p><a href="http://www.adrianpelletier.com/" title="adrianpelletier" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/adrianpelletier.jpg" alt="adrianpelletier" title="adrianpelletier" height="259" width="500" /></a></p>
<h4>Ribbons of Red</h4>
<p><a href="http://www.ribbonsofred.com/" title="ribbonsofred" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/ribbonsofred.jpg" alt="ribbonsofred" title="ribbonsofred" height="259" width="500" /></a></p>
<h4>Purple Rain Cloud</h4>
<p><a href="http://purpleraincloud.com/" title="purpleraincloud" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/purpleraincloud.jpg" alt="purpleraincloud" title="purpleraincloud" height="259" width="500" /></a></p>
<h4>Snook</h4>
<p><a href="http://www.snook.ca/" title="snook" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/snook.jpg" alt="snook" title="snook" height="259" width="500" /></a></p>
<h4>Tobias Ahlin</h4>
<p><a href="http://tobiasahlin.com/" title="tobiasahlin" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/tobiasahlin.jpg" alt="tobiasahlin" title="tobiasahlin" height="259" width="500" /></a></p>
<h4>Srburns</h4>
<p><a href="http://srburns.es/" title="Srburns" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/srburns.jpg" alt="srburns" title="srburns" height="259" width="500" /></a></p>
<h4>8 Interactive</h4>
<p><a href="http://8interactive.com/" title="8interactive" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/8interactive.jpg" alt="8interactive" title="8interactive" height="259" width="500" /></a></p>
<h4>Stuff and Nonsense</h4>
<p><a href="http://www.stuffandnonsense.co.uk/" title="stuffandnonsense" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/stuffandnonsense.jpg" alt="stuffandnonsense" title="stuffandnonsense" height="259" width="500" /></a></p>
<h4>Lift Interactive</h4>
<p><a href="http://liftinteractive.com/" title="liftinteractive" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/liftinteractive.jpg" alt="liftinteractive" title="liftinteractive" height="259" width="500" /></a></p>
<h4>Jason Reynolds</h4>
<p><a href="http://www.jason-reynolds.com/" title="jason-reynolds" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/jason-reynolds.jpg" alt="jason-reynolds" title="jason-reynolds" height="259" width="500" /></a></p>
<h4>Marten dejongh</h4>
<p><a href="http://www.martendejongh.com/" title="martendejongh" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/martendejongh.jpg" alt="martendejongh" title="martendejongh" height="259" width="500" /></a></p>
<h4>Mutt Ink</h4>
<p><a href="http://muttink.com/" title="muttink" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/muttink.jpg" alt="muttink" title="muttink" height="259" width="500" /></a></p>
<h4>Rainbeau Mars</h4>
<p><a href="http://www.rainbeaumars.com/" title="rainbeaumars" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/rainbeaumars.jpg" alt="rainbeaumars" title="rainbeaumars" height="259" width="500" /></a></p>
<h4>Mark Boulton</h4>
<p><a href="http://www.markboulton.co.uk/" title="markboulton" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/markboulton.jpg" alt="markboulton" title="markboulton" height="259" width="500" /></a></p>
<h4>Simple Bits</h4>
<p><a href="http://www.simplebits.com/" title="simplebits" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/simplebits.jpg" alt="simplebits" title="simplebits" height="259" width="500" /></a></p>
<h4>Ainsworth Studio</h4>
<p><a href="http://www.ainsworthstudio.com/" title="ainsworthstudio" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/ainsworthstudio.jpg" alt="ainsworthstudio" title="ainsworthstudio" height="259" width="500" /></a></p>
<h4>The Darling Tree</h4>
<p><a href="http://www.thedarlingtree.com/" title="thedarlingtree" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/thedarlingtree.jpg" alt="thedarlingtree" title="thedarlingtree" height="259" width="500" /></a></p>
<h4>Pixel Craft</h4>
<p><a href="http://www.pixelcraft.ie/" title="pixelcraft" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/pixelcraft.jpg" alt="pixelcraft" title="pixelcraft" height="259" width="500" /></a></p>
<h4>z8</h4>
<p><a href="http://z8.hu/" title="z8" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/z8.jpg" alt="z8" title="z8" height="259" width="500" /></a></p>
<h4>Glue</h4>
<p><a href="http://glue.be/en/" title="glue" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/clean/glue.jpg" alt="glue" title="glue" height="259" width="500" /></a></p><img src="http://www1.feedsky.com/t1/294704836/qianduan/feedsky/s.gif?r=http://www.qianduan.net/25-simple-and-elegant-web-site-design.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704836/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704836/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/Bj8Ytc6BaLU" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/25-simple-and-elegant-web-site-design.html/feed</wfw:commentRss><slash:comments>20</slash:comments><description>我曾经找遍整个网络以尝试找到一些简洁而结构良好的网站实例，这可能是一个独特的布局或者只是使用一些好的排版、间距简单的呈现出来，或者是网站的给人的第一印象，这里只是一些我...&lt;img src="http://www1.feedsky.com/t1/294704836/qianduan/feedsky/s.gif?r=http://www.qianduan.net/25-simple-and-elegant-web-site-design.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704836/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704836/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>优美</category><category>简洁</category><category>ShowCase</category><pubDate>Thu, 29 Oct 2009 18:29:57 +0800</pubDate><author>神采飞扬</author><comments>http://www.qianduan.net/25-simple-and-elegant-web-site-design.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11490</guid><dc:creator>神采飞扬</dc:creator><fs:srclink>http://www.qianduan.net/25-simple-and-elegant-web-site-design.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704836/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/25-simple-and-elegant-web-site-design.html</feedburner:origLink></item><item><title>IE bug: 1像素的dotted/dashed边框</title><link>http://feedproxy.google.com/~r/qianduannet/~3/xMS34Jwev1g/ie-bug-1-pixel-dotted-and-dashed-border.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/eL5TUM5wL_0Y1ip25txGWUfUxw0/0/da"><img src="http://feedads.g.doubleclick.net/~a/eL5TUM5wL_0Y1ip25txGWUfUxw0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/eL5TUM5wL_0Y1ip25txGWUfUxw0/1/da"><img src="http://feedads.g.doubleclick.net/~a/eL5TUM5wL_0Y1ip25txGWUfUxw0/1/di" border="0" ismap="true"></img></a></p><p>最近的一个页面中碰到的，本来想用 border 来模拟设计图的虚线效果，但是很明显 border 效果不如设计图来的好看。顺便研究了下 dashed 和 dotted 的区别。</p>
<p>首先，从字面上来理解，dashed 和 dotted 都是指“虚线”，他们的不同在于：</p>
<p>dashed：来自 dash（破折号），由 dash 组成的虚线<br />
dotted：来自 dot （点），由 dot 组成的虚线，也称点线</p>
<p>这里多说几句废话，其实参看下 <a href="http://labs.qianduan.net/dashed-dotted/default.html">demo</a>，就能从视觉上获得更直观的感受了。<br />
<span id="more-11480"></span>下面再说说相关的 bug 吧，当然了，这些 bug 再一次只是光荣地出现在了 IE 下，此处涉及到 IE6 和 IE7。本文来自<a href="http://qianduan.net/">前端观察</a>，转载请以链接形式注明版权。</p>
<p>Bug1: 在 IE6 下，1px 宽的 dotted 表现的和 dashed 一样。当宽度大于 1px 时，表现正常。</p>
<p><a rel="attachment wp-att-11481" href="http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html/dotted-1px"><img class="alignnone size-full wp-image-11481" title="dotted-1px" src="http://www.qianduan.net/wp-content/uploads/2009/10/dotted-1px.jpg" alt="dotted-1px" width="440" height="326" /></a></p>
<p>Bug2:在 IE7 下，当 4 条边的宽度是 1px 和 其它任意数值共存时，1px 的 dotted 表现的和 dashed 一样。4 条边的宽度全为 1px，或者为其它不是 1px 的不同值时不会出现这个 bug。</p>
<p><a rel="attachment wp-att-11483" href="http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html/dotted-different-width"><img class="alignnone size-full wp-image-11483" title="dotted-different-width" src="http://www.qianduan.net/wp-content/uploads/2009/10/dotted-different-width.jpg" alt="dotted-different-width" width="441" height="330" /></a></p>
<p>Bug3:另外，IE6 下，1px 的 dotted 或者 1px 的 dashed 边框，在拖动页面时，有时候边框会连成实线，有时候会出现缺口。</p>
<p><a rel="attachment wp-att-11482" href="http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html/dotted-dashed"><img class="alignnone size-full wp-image-11482" title="dotted-dashed" src="http://www.qianduan.net/wp-content/uploads/2009/10/dotted-dashed.jpg" alt="dotted-dashed" width="400" height="550" /></a></p>
<p>要解决这些 bug，要么直接就不用 dotted 而直接用 dashed；要么用图片代替；要么用额外标签和代码来解决。本文来自<a href="http://qianduan.net/">前端观察</a>，转载请以链接形式注明版权。</p>
<p>鉴于只有在边框宽度为 1px 时才会出现这些 bug，可以设置外包围标签的边框宽度为 2px，通过增加一个内标签，设置其为 1px 的内容背景色边框，再通过设置 margin-top/right/bottom/left: -1px; 来盖掉外包围标签的 1px 边框，从视觉上实现正常效果。很啰嗦，很讨厌，很无奈。</p>
<p>.b6 {<br />
border: 2px dotted #000;<br />
padding-top: 0;<br />
}<br />
.b6 .inner {<br />
border: 1px solid #9c9c9c;<br />
width: 100%;<br />
height: 100%;<br />
margin: -1px;<br />
position: relative;<br />
z-index: 100;<br />
}</p>
<p>详情请参考 <a href="http://labs.qianduan.net/dashed-dotted/default.html">demo</a> 本文来自<a href="http://qianduan.net/">前端观察</a>，转载请以链接形式注明版权。</p><img src="http://www1.feedsky.com/t1/294704838/qianduan/feedsky/s.gif?r=http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704838/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704838/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/xMS34Jwev1g" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html/feed</wfw:commentRss><slash:comments>16</slash:comments><description>最近的一个页面中碰到的，本来想用 border 来模拟设计图的虚线效果，但是很明显 border 效果不如设计图来的好看。顺便研究了下 dashed 和 dotted 的区别。

首先，从字面上来理解，dashed 和 dotted...&lt;img src="http://www1.feedsky.com/t1/294704838/qianduan/feedsky/s.gif?r=http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704838/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704838/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>CSS</category><category>bug</category><category>Tips</category><category>IE</category><pubDate>Wed, 28 Oct 2009 15:33:07 +0800</pubDate><author>糖伴西红柿</author><comments>http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11480</guid><dc:creator>糖伴西红柿</dc:creator><fs:srclink>http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704838/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/ie-bug-1-pixel-dotted-and-dashed-border.html</feedburner:origLink></item><item><title>CSS金矿</title><link>http://feedproxy.google.com/~r/qianduannet/~3/ne59xK3SZ5w/css-nuggets.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/6FKsLKFa-tsKRy5mhD0y4YJQtbc/0/da"><img src="http://feedads.g.doubleclick.net/~a/6FKsLKFa-tsKRy5mhD0y4YJQtbc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6FKsLKFa-tsKRy5mhD0y4YJQtbc/1/da"><img src="http://feedads.g.doubleclick.net/~a/6FKsLKFa-tsKRy5mhD0y4YJQtbc/1/di" border="0" ismap="true"></img></a></p><p>是的，这仅仅是一个PPT文档，由Anna Debenham上传至slideshare。幻灯片的标题叫做《CSS nuggets》，嗯，很好的名字。</p>
<p>但是对于网站前端开发人员来说，这个幻灯片绝对值得一看，它主要讲解了一些CSS3的新属性，包括伪类/伪元素和一些新增的属性，比如变形(transform)，阴影等。<strong>实例和配图很棒</strong>，相信对CSS3还有些疑惑的同学，看了这个之后会很好的理解CSS3的吧。</p>
<p><span id="more-11473"></span></p>
<p>特别感谢<a href="http://ued.taobao.com" target="_blank">淘宝UED</a>的小马(@<a href="http://twitter.com/zhaozexin" target="_blank">zhaozexin</a>)同学，他在Twitter上首先分享了这个PPT。</p>
<div style="width:425px;text-align:left" id="__ss_2347968"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/maban/css-nuggets" title="CSS Nuggets">CSS Nuggets</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=bcl7-091026061858-phpapp01&#038;rel=0&#038;stripped_title=css-nuggets" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=bcl7-091026061858-phpapp01&#038;rel=0&#038;stripped_title=css-nuggets" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/maban">Anna Debenham</a>.</div>
</div>
<p>虽然这个PPT是英文的，但是很简单的，很容易看懂，不过我还是对其进行了简单的翻译：</p>
<div style="width:425px;text-align:left" id="__ss_2362923"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/mienflying/css-2362923" title="CSS金矿">CSS金矿</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cssnugget-091027222704-phpapp01&#038;stripped_title=css-2362923" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cssnugget-091027222704-phpapp01&#038;stripped_title=css-2362923" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/mienflying">mienflying</a>.</div>
</div><img src="http://www1.feedsky.com/t1/294704839/qianduan/feedsky/s.gif?r=http://www.qianduan.net/css-nuggets.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704839/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704839/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/ne59xK3SZ5w" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/css-nuggets.html/feed</wfw:commentRss><slash:comments>5</slash:comments><description>对于网站前端开发人员来说，这个幻灯片绝对值得一看，它主要讲解了一些CSS3的新属性。实例和配图很棒，相信对CSS3还有些疑惑的同学，看了这个之后会很好的理解CSS3的...&lt;img src="http://www1.feedsky.com/t1/294704839/qianduan/feedsky/s.gif?r=http://www.qianduan.net/css-nuggets.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704839/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704839/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>CSS</category><category>Resource</category><category>css</category><category>css3</category><pubDate>Wed, 28 Oct 2009 11:37:55 +0800</pubDate><author>神采飞扬</author><comments>http://www.qianduan.net/css-nuggets.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11473</guid><dc:creator>神采飞扬</dc:creator><fs:srclink>http://www.qianduan.net/css-nuggets.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704839/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/css-nuggets.html</feedburner:origLink></item><item><title>纯CSS图片预加载</title><link>http://feedproxy.google.com/~r/qianduannet/~3/JkOagCsEG5Q/pure-css-image-preloader.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/pwhkc-phD-cdqvcjiJYA-h3nxmw/0/da"><img src="http://feedads.g.doubleclick.net/~a/pwhkc-phD-cdqvcjiJYA-h3nxmw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pwhkc-phD-cdqvcjiJYA-h3nxmw/1/da"><img src="http://feedads.g.doubleclick.net/~a/pwhkc-phD-cdqvcjiJYA-h3nxmw/1/di" border="0" ismap="true"></img></a></p><div> 译自：<a href="http://www.devirtuoso.com/2009/07/creating-a-css-image-preloader/">Creating a CSS Image Preloader</a><br />
	中文：<a href="http://www.qianduan.net/pure-css-image-preloader.html">纯CSS图片预加载</a><br />
	版权所有转载请注明出处，多谢！</p>
<hr />
</div>
<p>有很多种方法来实现图片的预加载，通常大部分使用Javascript让事情滚动。不要再受Javascript预载的束缚了吧，用CSS你就可以毫不麻烦的预载你的图片。</p>
<p><span id="more-11469"></span></p>
<h3>为什么使用预载</h3>
<p>你为什么会考虑使用预载呢？你是否曾有个网站，在那个网站你要滚动你的导航然后有个延迟直到图片被加载完……嘿嘿。预载将在这方面帮助你。它将在页面加载的时候加载那些图片并将其存储在浏览器的缓存里面。这样当用户滚动导航的时候，很漂亮而且流畅，没有延迟。</p>
<h3>CSS代码</h3>
<p>这个概念就是写一个<strong>CSS样式</strong>设置一批背景图片，然后将其隐藏，这样你就看不到那些图片了。那些背景图片就是你想预载的图片。</p>
<p>这是一个例子:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#preloader</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #808080; font-style: italic;">/* Images you want to preload*/</span>
<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span>image1.jpg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span>image2.jpg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span>image3.jpg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">inline</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>这只是一种隐藏你的图片的方法，所以它们不会被显示。我也见到有人使用非常大的background-position值将图片推出去。或者给一个负的margin值。有很多中方法隐藏你要预载的图片，选择最适合你的吧。</p>
<h3>另一种情况</h3>
<p>有巨大的图片需要下载的情况并不会经常发生，如果你采用通常的做法，提供某种图片正在加载的表示。这里是一些CSS，可以给用户一个提示：图片正在加载。</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">	img <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">loadingHourGlass.gif</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #933;"><span style="color: #cc66cc;">50</span>%</span> <span style="color: #933;"><span style="color: #cc66cc;">50</span>%</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>gif图片可以是动画，类似于mac上的沙滩球或者PC上的沙漏之类的东东。采用一个动画吧，这样用户就会知道事情正在进行。</p>
<h3>结论</h3>
<p>当预载有意义的时候做你最好的吧，你的用户将以此喜欢上你。事实上他们可能并没有注意到，但是这是一件好事情，如果他们注意到你的网站正在加载，那可能真的是太慢了。</p>
<p>查看<a href="http://www.devirtuoso.com/Examples/CSS-Preloader/" target="_blank" rel="www.google.com">Demo</a></p>
<h3>关于实例一的特别说明</h3>
<p>首先多谢评论中网友提出的问题，翻译完这篇文章之后，考虑到一个css规则中多次定义同一个属性，浏览器一般只会处理最后一个，决定有必要做一下检验，但是没有意识到事情的严重性，所以没有及时处理，以至于可能会造成一些误解。</p>
<p>根据我的测试，大部分浏览器都是只加载了最后一个图片，<strong>前两个图片被无视</strong>了。但是在webkit核心的浏览器中，比如chrome，会预加载这三个图片。实例一为我们<strong>提供了一个很好的处理问题的思路</strong>，但是对于在同一个css样式中加载多个图片的用法，可能还要等<a href="http://www.qianduan.net/css3-series-tutorial-background-image-background-and-background-image-size.html">css3的多背景图片属性</a>被更多的浏览器支持才行。</p>
<p>PS:我来解释一下这个demo吧。可能原作者没有考虑太多，只是想演示一下预加载的效果，所以这个demo页面做的有些简单：他只是将预载的图片用于a:hover的背景了，这样在鼠标经过的时候，就可以无闪动的现实那张图片。嗯，也就是文中的第二种用法……</p><img src="http://www1.feedsky.com/t1/294704841/qianduan/feedsky/s.gif?r=http://www.qianduan.net/pure-css-image-preloader.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704841/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704841/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/JkOagCsEG5Q" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/pure-css-image-preloader.html/feed</wfw:commentRss><slash:comments>10</slash:comments><description>有很多种方法来实现图片的预加载，通常大部分使用Javascript让事情滚动。不要再受Javascript预载的束缚了吧，用CSS你就可以毫不麻烦的预载你的图片...&lt;img src="http://www1.feedsky.com/t1/294704841/qianduan/feedsky/s.gif?r=http://www.qianduan.net/pure-css-image-preloader.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704841/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704841/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>预载</category><category>CSS</category><category>图片</category><category>css</category><pubDate>Tue, 27 Oct 2009 22:16:21 +0800</pubDate><author>神采飞扬</author><comments>http://www.qianduan.net/pure-css-image-preloader.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11469</guid><dc:creator>神采飞扬</dc:creator><fs:srclink>http://www.qianduan.net/pure-css-image-preloader.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704841/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/pure-css-image-preloader.html</feedburner:origLink></item><item><title>40个超棒的摄影师作品集网站设计欣赏</title><link>http://feedproxy.google.com/~r/qianduannet/~3/vmGNUsWvvis/40-great-photographer-portfolio-websites.html</link><content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/m-Z_uvdJFnzfqEfHYQKRkvQ8wog/0/da"><img src="http://feedads.g.doubleclick.net/~a/m-Z_uvdJFnzfqEfHYQKRkvQ8wog/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/m-Z_uvdJFnzfqEfHYQKRkvQ8wog/1/da"><img src="http://feedads.g.doubleclick.net/~a/m-Z_uvdJFnzfqEfHYQKRkvQ8wog/1/di" border="0" ismap="true"></img></a></p><div>原文：<a href="http://www.qianduan.net/40-great-photographer-portfolio-websites.html">40个超棒的摄影师作品集网站设计欣赏</a><br />
	译自：<a href="http://www.thephotoargus.com/inspiration/40-great-photographer-portfolio-websites-for-inspiration/">40 Great Photographer Portfolio Websites for Inspiration</a><br />
	版权所有，转载请注明出处，多谢！</p>
<hr />
</div>
<p>这是一个关于极好的作品集网站设计收集。国内外有很多很有才的摄影师，而有些摄影师的作品集网站也同样很棒。本文列出40个设计非常棒的摄影师的作品集网站设计，以供大家参考。</p>
<p>同时我们不难发现，这些相册网站，绝大部分使用暗色调，比如黑色或深灰色，用很大的醒目的位置显示漂亮的图片以吸引读者的眼球。</p>
<p>原文：<a href="http://www.qianduan.net/40-great-photographer-portfolio-websites.html">40个超棒的摄影师作品集网站设计欣赏</a></p>
<p><span id="more-11462"></span></p>
<h4>Jeremy Cowart</h4>
<p> <a href="http://www.jeremycowart.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw1.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Koen Demuynck</h4>
<p><a href="http://www.koendemuynck.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw2.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Mitchell Kanashkevich</h4>
<p><a href="http://www.mitchellkphotos.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw3.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Joon Brandt</h4>
<p><a href="http://www.joonsworld.no/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw4.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Frederik Clement</h4>
<p><a href="http://www.fredrikclement.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw5.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Brent Stirton</h4>
<p><a href="http://www.brentstirton.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw6.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Les Forrester</h4>
<p><a href="http://www.faceonimages.co.uk/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw7.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Alberto Ovied</h4>
<p><a href="http://oviedofoto.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw8.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Ashley Lebedev</h4>
<p><a href="http://www.bottlebellphotography.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw9.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Jill Greenberg</h4>
<p><a href="http://www.manipulator.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw10.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Paolo Boccardi</h4>
<p><a href="http://www.fashionphotographer.it/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw11.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Eric Ryan Anderson</h4>
<p><a href="http://www.ericryananderson.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw12.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Lara Jade</h4>
<p><a href="http://www.larajade.co.uk/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw13.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Corey Arnold</h4>
<p><a href="http://www.coreyfishes.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw14.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Andrew Gransden</h4>
<p><a href="http://www.andrewgransdenphotography.co.uk/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw15.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>David Hill</h4>
<p><a href="http://www.davehillphoto.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw16.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Gavin Gough</h4>
<p><a href="http://www.gavingough.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw17.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Your Beautiful Photography</h4>
<p><a href="http://www.yourbeautifulphotography.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw18.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Dimitris Theocharis</h4>
<p><a href="http://www.dimitristheocharis.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw19.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Robert Dann</h4>
<p><a href="http://www.robertdannphotography.co.uk/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw20.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Chase Jarvis</h4>
<p><a href="http://www.chasejarvis.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw21.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Jonathan Glynn Smith</h4>
<p><a href="http://www.jonathanglynnsmith.com/JGS.html" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw22.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Jan Sochor</h4>
<p><a href="http://www.jansochor.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw23.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Lisa Bettany</h4>
<p><a href="http://lisabettany.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw24.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Dennis Reggie </h4>
<p><a href="http://denisreggie.com/" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw25.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Christian Oth</h4>
<p><a href="http://www.christianothstudio.com/#/intro" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw26.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Levon Biss</h4>
<p><a href="http://www.levonbiss.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw27.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Little Hellos</h4>
<p><a href="http://www.littlehellos.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw28.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Mark Velasquez</h4>
<p><a href="http://www.markvelasquez.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw29.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Daniel Kennedy Photography </h4>
<p><a href="http://www.danielkennedy.com/" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw31.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Mark Velasquez</h4>
<p><a href="http://www.markvelasquez.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw30.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Rinze Van Brug</h4>
<p><a href="http://www.rinze.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw32.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Emmanuel Rouzic</h4>
<p><a href="http://www.emmanuelrouzic.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw33.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Raven Photography </h4>
<p><a href="http://www.raven-photography.nl/" target="_blank"><img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw34.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Carlos Alonso Bodas</h4>
<p><a href="http://www.carlosalonsobodas.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw35.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Kenn Reay</h4>
<p><a href="http://www.kennreayphotography.co.uk/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw36.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Jason Bell</h4>
<p><a href="http://www.jasonbellphoto.com/#/home/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw37.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>James Day Photography</h4>
<p><a href="http://www.jamesdayphoto.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw38.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>Evaan Kheraj</h4>
<p><a href="http://www.evaankheraj.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw39.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a> </p>
<h4>David Vasiljevic</h4>
<p><a href="http://www.davidvasiljevic.com/" target="_blank"> <img src="http://www.qianduan.net/wp-content/uploads/2009/10/photographer/ppw40.jpg" alt="超棒的摄影师作品集网站设计欣赏"></a></p><img src="http://www1.feedsky.com/t1/294704843/qianduan/feedsky/s.gif?r=http://www.qianduan.net/40-great-photographer-portfolio-websites.html" border="0" height="0" width="0" style="position:absolute" /><p class="fswww1"><a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704843/art01.html" target="_blank"><img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704843/art01.gif" onerror="this.style.display='none'" /></a></p><img src="http://feeds.feedburner.com/~r/qianduannet/~4/vmGNUsWvvis" height="1" width="1"/>]]></content:encoded><wfw:commentRss>http://www.qianduan.net/40-great-photographer-portfolio-websites.html/feed</wfw:commentRss><slash:comments>2</slash:comments><description>这是一个关于极好的作品集网站设计收集。国内外有很多很有才的摄影师，而有些摄影师的作品集网站也同样很棒。本文列出40个设计非常棒的摄影师的作品集网站设计，以供大家参考...&lt;img src="http://www1.feedsky.com/t1/294704843/qianduan/feedsky/s.gif?r=http://www.qianduan.net/40-great-photographer-portfolio-websites.html" border="0" height="0" width="0" style="position:absolute" /&gt;&lt;p class="fswww1"&gt;&lt;a href="http://www1.feedsky.com/r/l/feedsky/qianduan/294704843/art01.html" target="_blank"&gt;&lt;img border="0" ismap="ismap" src="http://www1.feedsky.com/r/i/feedsky/qianduan/294704843/art01.gif" onerror="this.style.display='none'" /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>ShowCase</category><category>作品集</category><category>设计</category><category>摄影师</category><category>欣赏</category><pubDate>Mon, 26 Oct 2009 22:05:41 +0800</pubDate><author>神采飞扬</author><comments>http://www.qianduan.net/40-great-photographer-portfolio-websites.html#comments</comments><guid isPermaLink="false">http://www.qianduan.net/?p=11462</guid><dc:creator>神采飞扬</dc:creator><fs:srclink>http://www.qianduan.net/40-great-photographer-portfolio-websites.html</fs:srclink><fs:srcfeed>http://www.qianduan.net/?feed=rss2</fs:srcfeed><fs:itemid>feedsky/qianduan/~7204324/294704843/5313426</fs:itemid><feedburner:origLink>http://www.qianduan.net/40-great-photographer-portfolio-websites.html</feedburner:origLink></item></channel></rss>
