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

<channel>
	<title>可咔酷 &#124; 网络杂货铺</title>
	<atom:link href="http://www.kekaku.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kekaku.com</link>
	<description>网络杂货铺</description>
	<lastBuildDate>Tue, 21 Feb 2012 06:03:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>一个页面重构工程师眼中的“用户体验”</title>
		<link>http://www.kekaku.com/webdevelop/985</link>
		<comments>http://www.kekaku.com/webdevelop/985#comments</comments>
		<pubDate>Mon, 20 Feb 2012 08:08:34 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[前端开发]]></category>
		<category><![CDATA[用户体验]]></category>
		<category><![CDATA[页面重构]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=985</guid>
		<description><![CDATA[在工业化设计融入人们生活的现今，用户体验一词就常常出现在人们的视线里，随着互联网web2.0时代的到来，大大小小的网站设计中也都开始关注用户体验的方面，对什么是用户体验（百度这四个字，比我写什么解释都好）就不做详细赘述了，相信大家比我了解的更加丰富。 用户体验从产品设计阶段便开始介入进来，如原型设计中交互模式设计、功能实现方式设计都融入了设计人员对用户的关怀，听过这样的一句话：“具有良好用户体验的产品，不仅仅取决于一个有着丰富交互设计经验的产品设计师，还与产品生产过程中的每一个环节是否都具备良好的用户体验意识有一定的关系”。 今天我想从一个页面重构工程师的角度出发，从两个方面去谈谈在我的工作中，我所理解的用户体验，以及我做了哪些和用户体验有关的事情。 一、 从可用到易用的细节处理 1. 按钮、链接、导航菜单的鼠标触发状态、鼠标手型等 随着视觉设计的发展，对按钮、链接、或者导航菜单的表现方式变得异常丰富，比如: 这些图片丰富了对鼠标点击形式的视觉表现力。在基于功能可用的前提下，逐渐通过视觉渲染达到美化的效果，有了精美的设计图后，就需要页面重构工程师们加以切割，在代码化的过程中，通常要做如下考量： 可点击区域大小，例如（下图）尽管风格上似乎按钮只有10*10，但是在实现时，要考虑用户操作起来是不是很容易获取锚点，而不是点来点去找不到 鼠标操作类型的提示，鼠标输入提示、手型提示、文本区域提示、不可点击提示，尽管整个页面的视觉引导更重要，但用户在操作时，人眼一直跟随着鼠标或键盘的操作而转换，如果能伴随着正确的鼠标操作提示，更可增强引导作用。从而提升交互体验。 按钮风格的一致性，按钮当前状态和点击状态的统一，按钮按照功能所作的统一， 设计师天马行空的想象力，赋予了他们创造性，而我们既要保留他们的创造力还要抽象出一些共用特征，在我看来按钮类型有3种，如果能有效区分，对网站的整体风格的建立和强化交互感受方面都会有一定一致性，同时在页面构建过程中会抽离成公用信息，非常便于管理和维护。 1）如确认、取消等，可称之为贯穿型 2）如登录、加关注等，可称之为点睛型，这一型在实际工作中通常从视觉上都略强于贯穿型，所以会建议设计师做一定统一，有时候是风格上，有时候是结构上，再甚者就是大小比例上 3）如发博文、发微博等按钮，可称之为增强型，通常这个类型不会限制设计师按照标准类型去做，即便出来的是个异型，我们还是应该理解的。 4）最后就是无论哪种类型，都要注意是否有鼠标点击的hover状态，即便设计师没有设计，也要做出hover的交互效果，至少是预留，就我而言通常都是在原按钮颜色基础上调整一下颜色深度作为hover状态，大部分按钮我都会考虑做出交互效果，当然也有例外，比如活动专题中的点击区域，通常不会增加点击后的过分明显效果，如果非要做出一点效果，最多是调整一下文字本身的明暗度。（我承认我有些吹毛求疵） 2. 图片的alt解释信息 通常拿到设计需求，我会要求设计师帮助梳理icon，一般会分两类，功能型、注释型。同时要求两种类型图片的像素区间要各自保持一致性，这样一来设计师在整理的过程中就会意识到，有的文字没有必要加注释图片，有的是功能和注释类型的大小、风格可能不一致，梳理过程中设计师会去调整一下，同时也在创意的过程中渗透一些规则。第一、二行是注释型，第三行是功能型 3. 因设计或排版而没有完全显示出来的文字信息的title提示 产品或用户经常抱怨“后面的文字看不到，这到底是什么内容？”之所以出现这样的情况，主要是没有考虑到文字信息出现的位置和当时这些文字的重要性，如果是图片瀑布流，那文字信息的作用只是索引而已，如果是文章列表页或视频列表页、甚至正文页这样的终极页面，标题名称是务必要全部展示的。所以为了避免折磨用户，一定要给显示不完全的信息增加title，在存在缺陷的情况下也能有让用户有些许安慰，否则你就太伤用户的心了。 4. 网站logo的权重设置H1、网站主要标题、标识的权重设置H2-H6、stong、em、b等(对搜索引擎的友好可读性) 考虑各个层面的用户体验，是为了让用户尽量全方位的感受到网页的无边界浏览，在视觉和交互充分发挥作用的背后，代码标签的选择，也从一定层面决定了用户是否能够更好的使用，目前的一些搜索引擎，如Google、Baidu等，在过滤网页信息的过程中，有一套机制去寻找你网页中的主要内容，那些对搜索引擎比较友好的标签会更有利于页面信息的抓取，在用户搜索的过程中，抛开企业间战略合作不谈，也会相对显示在比较靠前的位置（当然如果搜索引擎的广告效益非常好的时候，或许第一屏还是与你无缘，这……你懂的） 5. 网站字色的一致性，链接色、提示色、内容字色等 （降低学习成本，培养用户习惯） 设计一套互动类产品（博客、视频、邮箱）或者用户功能型产品（消费类产品、资讯类产品等）同样面临着一个问题，用户习惯，人其实对规律会更容易产生安全感也更容易增加舒适性。所以在网页的设计过程中，统一视觉感受不仅让用户安心的舒适的去浏览图片文字音乐多媒体等信息，也能培养用户认知。 因此在设计师天马行空的创造力面前，我总是横亘在他们面前的那个规范和逻辑的卫斗士。当设计师天马行空的时候我是不会也不敢去干扰他们，但如果谁告诉我风格确定时，我就会站出来披荆斩棘，要求设计师给出一整套设计规范，例如： • 链接色分主链接色和辅助链接色，建议不要超过2种，增加类功能区域除外 • 文字色也是主辅都要有，同样不要超过两种（其实有多少种都可以，但你要考虑用户花多长时间适应你的五花八门） • 提示信息又分普通提示、正确提示、错误提示、空状态提示等 • 什么图标类型分为功能型图标和注释型图标 6. 各种内容读取花较长时间的模块，在内容尚未加载成功时，先显示图片图片列表页、或视频截图列表页面，在图片尚未加载时显示初始图片，并固定位置，防止满屏跑图 7. 提示性文字位置在不干扰用户操作的前提下，交互一致性很重要，如固定在某一提示位置或不影响操作的颜色提示等 在处理表单过程中，会考虑提示信息所在位置，包括默认提示，出错提示，正确提示等，如果提示风格不统一，会中断用户行为，页面表单填写过程中的流畅度非常重要，为什么会提起这一点，因为在实际工作中，如果没有交互设计经验，不论产品还是设计人员都经常会遗漏表单相关的各种提示信息，但这会影响页面构建过程中HTML的结构，因此如果前期发现产品文档，或者设计稿都没有表现出相关内容，不妨提醒他们务必考虑并添加好，减少后期调整页面结构的冗余工作量。 很多人会说这些不是页面范畴，那页面是什么范畴呢，这些知识有产品范畴的、有设计范畴的、有用户研究范畴的、有交互范畴的，在我看来会这些最大的好处是减少你的工作量，我认为这些都是很基础的知识，不是必须掌握的，但最好了解，了解的好处非常显而易见，就是面对不一定靠谱的需求时，可以有的放矢的给出一些意见，从而减少一些返工，或者细碎的体验的增加。 二、从慢慢等待到愉悦点击的变化 1.页面模块的按需加载 由于互联网产品发展愈来愈趋向于规模化和正规化，在早年间采用全站只加载一个公用样式的时代已经过去了，取而代之的是对性能更优的模块化按需加载模式，如上图所示，模块化显而易见的好处就是代码冗余相对较低，代码量也较小。除此之外模块化的好处还包括：结构清晰，易上手；频繁变更产品需求时的快速维护和开发；快速下线局部模块；动态调整页面模块加载优先级时，无需剥离任何代码；便于多人协同开发；降低多人协同开发时，互相覆盖代码；适合开发大型产品等很多优点。不论对用户，还是对维护开发都是非常有利的。 2.页面公用元素复用 所谓公用元素，主要指： reset类型 各类文字色 各类链接色 浮层框架 页面主框架 [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="从 CSS Lint 出发，谈样式优化 " style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15739752.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">从 CSS Lint 出发，谈样式优化 </font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="知名技术站InfoQ2010年前端技术总结" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwd%2Fcssxhtml%2F2049&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/05/21120233.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">知名技术站InfoQ2010年前端技术总结</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="WEB前端常用的十种技术应用" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F1704&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/09/21714992.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WEB前端常用的十种技术应用</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="CSS+DIV重构与SEO" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwd%2Fcssxhtml%2F117&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">CSS+DIV重构与SEO</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="设计师攻略：十招让你的作品更具吸引力" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F192&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/23/24369994.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">设计师攻略：十招让你的作品更具吸引力</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>在工业化设计融入人们生活的现今，用户体验一词就常常出现在人们的视线里，随着互联网web2.0时代的到来，大大小小的网站设计中也都开始关注用户体验的方面，对什么是用户体验（百度这四个字，比我写什么解释都好）就不做详细赘述了，相信大家比我了解的更加丰富。</p>
<p>用户体验从产品设计阶段便开始介入进来，如原型设计中交互模式设计、功能实现方式设计都融入了设计人员对用户的关怀，听过这样的一句话：“具有良好用户体验的产品，不仅仅取决于一个有着丰富交互设计经验的产品设计师，还与产品生产过程中的每一个环节是否都具备良好的用户体验意识有一定的关系”。<br/><span id="more-985"></span><br />
今天我想从一个页面重构工程师的角度出发，从两个方面去谈谈在我的工作中，我所理解的用户体验，以及我做了哪些和用户体验有关的事情。</p>
<h3 style="font-weight: bold;">一、	从可用到易用的细节处理</h3>
<h4 style="font-weight: bold;">1.	按钮、链接、导航菜单的鼠标触发状态、鼠标手型等 </h4>
<p>随着视觉设计的发展，对按钮、链接、或者导航菜单的表现方式变得异常丰富，比如:<br/><br />
<img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_16_09_121.jpg"/></p>
<p>这些图片丰富了对鼠标点击形式的视觉表现力。在基于功能可用的前提下，逐渐通过视觉渲染达到美化的效果，有了精美的设计图后，就需要页面重构工程师们加以切割，在代码化的过程中，通常要做如下考量：</p>
<ul>
<li>可点击区域大小，例如（下图）尽管风格上似乎按钮只有10*10，但是在实现时，要考虑用户操作起来是不是很容易获取锚点，而不是点来点去找不到<br/><br />
<br/><br />
<img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_16_09_122.jpg"/></li>
<li>鼠标操作类型的提示，鼠标输入提示、手型提示、文本区域提示、不可点击提示，尽管整个页面的视觉引导更重要，但用户在操作时，人眼一直跟随着鼠标或键盘的操作而转换，如果能伴随着正确的鼠标操作提示，更可增强引导作用。从而提升交互体验。</li>
<li>按钮风格的一致性，按钮当前状态和点击状态的统一，按钮按照功能所作的统一，<br/><br />
设计师天马行空的想象力，赋予了他们创造性，而我们既要保留他们的创造力还要抽象出一些共用特征，在我看来按钮类型有3种，如果能有效区分，对网站的整体风格的建立和强化交互感受方面都会有一定一致性，同时在页面构建过程中会抽离成公用信息，非常便于管理和维护。</li>
</ul>
<ol>
<li style="list-style: none outside none; text-indent: -24px;">1）如确认、取消等，可称之为贯穿型</li>
<li style="list-style: none outside none; text-indent: -24px;">2）如登录、加关注等，可称之为点睛型，这一型在实际工作中通常从视觉上都略强于贯穿型，所以会建议设计师做一定统一，有时候是风格上，有时候是结构上，再甚者就是大小比例上</li>
<li style="list-style: none outside none; text-indent: -24px;">3）如发博文、发微博等按钮，可称之为增强型，通常这个类型不会限制设计师按照标准类型去做，即便出来的是个异型，我们还是应该理解的。</li>
<li style="list-style: none outside none; text-indent: -24px;">4）最后就是无论哪种类型，都要注意是否有鼠标点击的hover状态，即便设计师没有设计，也要做出hover的交互效果，至少是预留，就我而言通常都是在原按钮颜色基础上调整一下颜色深度作为hover状态，大部分按钮我都会考虑做出交互效果，当然也有例外，比如活动专题中的点击区域，通常不会增加点击后的过分明显效果，如果非要做出一点效果，最多是调整一下文字本身的明暗度。（我承认我有些吹毛求疵）</li>
</ol>
<h4 style="font-weight: bold;">2.	图片的alt解释信息</h4>
<p><img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_16_09_163.jpg"/></p>
<p>通常拿到设计需求，我会要求设计师帮助梳理icon，一般会分两类，功能型、注释型。同时要求两种类型图片的像素区间要各自保持一致性，这样一来设计师在整理的过程中就会意识到，有的文字没有必要加注释图片，有的是功能和注释类型的大小、风格可能不一致，梳理过程中设计师会去调整一下，同时也在创意的过程中渗透一些规则。<br/><img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_16_09_164.jpg"/><br/>第一、二行是注释型，第三行是功能型</p>
<h4 style="font-weight: bold;">3.	因设计或排版而没有完全显示出来的文字信息的title提示</h4>
<p><img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_16_09_166.jpg"/><br/><img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_16_09_167.jpg"/><br/>产品或用户经常抱怨“后面的文字看不到，这到底是什么内容？”之所以出现这样的情况，主要是没有考虑到文字信息出现的位置和当时这些文字的重要性，如果是图片瀑布流，那文字信息的作用只是索引而已，如果是文章列表页或视频列表页、甚至正文页这样的终极页面，标题名称是务必要全部展示的。所以为了避免折磨用户，一定要给显示不完全的信息增加title，在存在缺陷的情况下也能有让用户有些许安慰，否则你就太伤用户的心了。</p>
<h4 style="font-weight: bold;">4.	网站logo的权重设置H1、网站主要标题、标识的权重设置H2-H6、stong、em、b等(对搜索引擎的友好可读性)</h4>
<p>考虑各个层面的用户体验，是为了让用户尽量全方位的感受到网页的无边界浏览，在视觉和交互充分发挥作用的背后，代码标签的选择，也从一定层面决定了用户是否能够更好的使用，目前的一些搜索引擎，如Google、Baidu等，在过滤网页信息的过程中，有一套机制去寻找你网页中的主要内容，那些对搜索引擎比较友好的标签会更有利于页面信息的抓取，在用户搜索的过程中，抛开企业间战略合作不谈，也会相对显示在比较靠前的位置（当然如果搜索引擎的广告效益非常好的时候，或许第一屏还是与你无缘，这……你懂的）</p>
<h4 style="font-weight: bold;">5.	网站字色的一致性，链接色、提示色、内容字色等 （降低学习成本，培养用户习惯）</h4>
<p>设计一套互动类产品（博客、视频、邮箱）或者用户功能型产品（消费类产品、资讯类产品等）同样面临着一个问题，用户习惯，人其实对规律会更容易产生安全感也更容易增加舒适性。所以在网页的设计过程中，统一视觉感受不仅让用户安心的舒适的去浏览图片文字音乐多媒体等信息，也能培养用户认知。<br/><br />
因此在设计师天马行空的创造力面前，我总是横亘在他们面前的那个规范和逻辑的卫斗士。当设计师天马行空的时候我是不会也不敢去干扰他们，但如果谁告诉我风格确定时，我就会站出来披荆斩棘，要求设计师给出一整套设计规范，例如：<br/><br />
• 链接色分主链接色和辅助链接色，建议不要超过2种，增加类功能区域除外<br/><br />
• 文字色也是主辅都要有，同样不要超过两种（其实有多少种都可以，但你要考虑用户花多长时间适应你的五花八门）<br/><br />
• 提示信息又分普通提示、正确提示、错误提示、空状态提示等<br/><br />
• 什么图标类型分为功能型图标和注释型图标</p>
<p/>
<h4 style="font-weight: bold;">6.	各种内容读取花较长时间的模块，在内容尚未加载成功时，先显示图片图片列表页、或视频截图列表页面，在图片尚未加载时显示初始图片，并固定位置，防止满屏跑图</h4>
<p><img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_16_09_168.jpg"/><br/><img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_16_09_169.jpg"/></p>
<h4 style="font-weight: bold;">7.	提示性文字位置在不干扰用户操作的前提下，交互一致性很重要，如固定在某一提示位置或不影响操作的颜色提示等</h4>
<p>在处理表单过程中，会考虑提示信息所在位置，包括默认提示，出错提示，正确提示等，如果提示风格不统一，会中断用户行为，页面表单填写过程中的流畅度非常重要，为什么会提起这一点，因为在实际工作中，如果没有交互设计经验，不论产品还是设计人员都经常会遗漏表单相关的各种提示信息，但这会影响页面构建过程中HTML的结构，因此如果前期发现产品文档，或者设计稿都没有表现出相关内容，不妨提醒他们务必考虑并添加好，减少后期调整页面结构的冗余工作量。<br/><img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_17_01_5410.jpg"/></p>
<p>很多人会说这些不是页面范畴，那页面是什么范畴呢，这些知识有产品范畴的、有设计范畴的、有用户研究范畴的、有交互范畴的，在我看来会这些最大的好处是减少你的工作量，我认为这些都是很基础的知识，不是必须掌握的，但最好了解，了解的好处非常显而易见，就是面对不一定靠谱的需求时，可以有的放矢的给出一些意见，从而减少一些返工，或者细碎的体验的增加。</p>
<h3 style="font-weight: bold;">二、从慢慢等待到愉悦点击的变化</h3>
<h4 style="font-weight: bold;">1.页面模块的按需加载</h4>
<p><img src="http://productdesign-wordpress.stor.sinaapp.com/2012_02_17_01_5511.jpg"/><br/><br />
由于互联网产品发展愈来愈趋向于规模化和正规化，在早年间采用全站只加载一个公用样式的时代已经过去了，取而代之的是对性能更优的模块化按需加载模式，如上图所示，模块化显而易见的好处就是代码冗余相对较低，代码量也较小。除此之外模块化的好处还包括：结构清晰，易上手；频繁变更产品需求时的快速维护和开发；快速下线局部模块；动态调整页面模块加载优先级时，无需剥离任何代码；便于多人协同开发；降低多人协同开发时，互相覆盖代码；适合开发大型产品等很多优点。不论对用户，还是对维护开发都是非常有利的。</p>
<h4 style="font-weight: bold;">2.页面公用元素复用</h4>
<dl>
<dt>所谓公用元素，主要指：</dt>
<dd style="list-style: none outside none; padding-bottom: 0pt;">reset类型</dd>
<dd style="list-style: none outside none; padding-bottom: 0pt;">各类文字色</dd>
<dd style="list-style: none outside none; padding-bottom: 0pt;">各类链接色</dd>
<dd style="list-style: none outside none; padding-bottom: 0pt;">浮层框架</dd>
<dd style="list-style: none outside none; padding-bottom: 0pt;">页面主框架</dd>
<dd style="list-style: none outside none; padding-bottom: 0pt;">适用于本站的高复用补丁类型</dd>
</dl>
<h4 style="font-weight: bold;">3.文件调用的层级酌情减小、文件名酌情缩短</h4>
<p>如，image/index/module1/limoumou/icon/fabiaopinglun.jpg   酌情优化目录层级<br/><br />
如，fabiaopinglun_default.jpg 、.CommentListContent_linedot{}   酌情优化文件名长度</p>
<h4 style="font-weight: bold;">4.	请求数量和背景大小均衡处理</h4>
<p>图片请求数方面，有时候你要考虑CSS Sprite 拼合图片减少背景数，同时还要注意拼合图片K数不要太大，以及拼合图片注意纵横比，建议拼竖图（做过实验，同样内容，横图体积大于竖图）<br/><br />
当背景图片需要平铺时，请酌情考虑背景图片大小，比如1px高的虚线，请不要切一个1*2的小图，比如1*10,1*50，主要考量在于1*2的小图的平铺次数。<br/><br />
影响页面性能的因素还有很多，例如hack的使用、position的使用, table的使用等等……关键是保持技术的新鲜，丰富自己的知识。
</p>
<p>以上文章只是沉淀了一下过往我在页面重构工作中所领悟的用户体验。略显肤浅，可能大家会质疑，为什么写页面的还要自己加图标状态或者修改局部效果，要知道在早期的互联网在分工上没有现在这样精专的分工，顶多分个前台、后台、产品。当然在当初这些事情不一定有如今的专业深度，但涉猎面的确较如今是更宽阔的。所以早几年开始从事网页制作的朋友，都不会对设计制作界定的那么明显，在图形图片处理方面也是有一定认知和操作能力的。不是为了显摆什么，只是觉得知识的深度和广度同样重要。</p>
<p>VIA:<a href="http://ued.sina.com/" target="_blank">新浪UED</a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="从 CSS Lint 出发，谈样式优化 " style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15739752.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">从 CSS Lint 出发，谈样式优化 </font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="知名技术站InfoQ2010年前端技术总结" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwd%2Fcssxhtml%2F2049&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/05/21120233.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">知名技术站InfoQ2010年前端技术总结</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="WEB前端常用的十种技术应用" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F1704&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/09/21714992.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WEB前端常用的十种技术应用</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="CSS+DIV重构与SEO" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwd%2Fcssxhtml%2F117&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">CSS+DIV重构与SEO</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="设计师攻略：十招让你的作品更具吸引力" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F192&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/23/24369994.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">设计师攻略：十招让你的作品更具吸引力</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/webdevelop/985/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>从 CSS Lint 出发，谈样式优化</title>
		<link>http://www.kekaku.com/webdevelop/979</link>
		<comments>http://www.kekaku.com/webdevelop/979#comments</comments>
		<pubDate>Mon, 20 Feb 2012 07:55:32 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[前端开发]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[网页重构]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=979</guid>
		<description><![CDATA[CSS Lint,lint是线头的意思，大概意思就是说要找出我们写的css代码里的一些线头，help you code better! CSS Lint的检测规则包括错误的和警告，当选择器或属性书写不正确、漏掉了大括号、多写了分号等时，会提示解析错误，解析错误优先提示。为了让css代码拥有更好性能，更标准，CSS Lint还默认有如下规则： 1.不要使用多个class选择元素，如a.foo.boo，这在ie6及以下不能正确解析 2.移除空的css规则，如a{} 3.正确的使用显示属性，如display:inline不要和width，height，float，margin,padding同时使用，display:inline-block不要和float同时使用等 4.避免过多的浮动，当浮动次数超过十次时，会显示警告 5.避免使用过多的字号，当字号声明超过十种时，显示警告 6.避免使用过多web字体，当使用超过五次时，显示警告 7.避免使用id作为样式选择器 8.标题元素只定义一次 9.使用width:100%时要小心 10.属性值为0时不要写单位 11.各浏览器专属的css属性要有规范， 例如.foo{-moz-border-radius:5px;border-radius:5px} 12.避免使用看起来像正则表达式的css3选择器 13.遵守盒模型规则 在实际项目中很多规则还不是很合理，比如避免IE6的双倍边距bug有时候要用到display:inline; 我测试了最近项目中的两个css文件，警告主要出现在以下方面： 1.width:100% 当宽度设置为100%的时候，CSS Lint会给出警告 2.盒模型错误 好像width和height不能与padding和border同时使用，为什么会这样呢？很怪异 3.多余的标签 比如a.class,CSS Lint会建议你直接使用.class,如果使用了a.class，会警告 4.显示属性错误 比如display:inline与float一起使用时，会警告 看到这里，也许你会说这一款检测工具还不够成熟，的确，它的解析错误检测，空规则检测，属性值为0带单位的检测挺不错，其余的可能有一点差强人意，但它的检测规则一直在不断丰富和完善中，同时你也可以提交规则，并且最重要的是，现在，你已经可以自己设置，关掉一些不需要的规则 这个时候，CSS Lint就会显得好用很多。 假以时日，我相信CSS Lint会越来越强大的。More and more Strong, Smart and Useful! 在线检测地址：http://http://csslint.net/<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="O 讓Adobe來告訴你CSS3跟HTML5有多酷" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fadobe-css3-html5&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/09/09/29602205.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">O 讓Adobe來告訴你CSS3跟HTML5有多酷 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="[工具]15種CSS與HTML語法產生器" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2F15-css-html-tools&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/06/17/12830766.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">[工具]15種CSS與HTML語法產生器 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="20个优秀实用的 CSS3 和 HTML5 工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732040.gif" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">20个优秀实用的 CSS3 和 HTML5 工具</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="一个页面重构工程师眼中的“用户体验” " style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/18/15637582.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">一个页面重构工程师眼中的“用户体验” </font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="10个强大的免费CSS3工具推荐" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F458%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/02/11804107.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">10个强大的免费CSS3工具推荐</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>CSS Lint,lint是线头的意思，大概意思就是说要找出我们写的css代码里的一些线头，help you code better!</p>
<p>CSS Lint的检测规则包括错误的和警告，当选择器或属性书写不正确、漏掉了大括号、多写了分号等时，会提示解析错误，解析错误优先提示。为了让css代码拥有更好性能，更标准，CSS Lint还默认有如下规则：</p>
<p><span id="more-979"></span></p>
<ol>
<li style="list-style: none outside none;">1.不要使用多个class选择元素，如a.foo.boo，这在ie6及以下不能正确解析</li>
<li style="list-style: none outside none;">2.移除空的css规则，如a{}</li>
<li style="list-style: none outside none;">3.正确的使用显示属性，如display:inline不要和width，height，float，margin,padding同时使用，display:inline-block不要和float同时使用等</li>
<li style="list-style: none outside none;">4.避免过多的浮动，当浮动次数超过十次时，会显示警告</li>
<li style="list-style: none outside none;">5.避免使用过多的字号，当字号声明超过十种时，显示警告</li>
<li style="list-style: none outside none;">6.避免使用过多web字体，当使用超过五次时，显示警告</li>
<li style="list-style: none outside none;">7.避免使用id作为样式选择器</li>
<li style="list-style: none outside none;">8.标题元素只定义一次</li>
<li style="list-style: none outside none;">9.使用width:100%时要小心</li>
<li style="list-style: none outside none;">10.属性值为0时不要写单位</li>
<li style="list-style: none outside none;">11.各浏览器专属的css属性要有规范，<br/><br />
 例如.foo{-moz-border-radius:5px;border-radius:5px}</li>
<li style="list-style: none outside none;">12.避免使用看起来像正则表达式的css3选择器</li>
<li style="list-style: none outside none;">13.遵守盒模型规则</li>
</ol>
<p>在实际项目中很多规则还不是很合理，比如避免IE6的双倍边距bug有时候要用到display:inline;</p>
<p>我测试了最近项目中的两个css文件，警告主要出现在以下方面：</p>
<ul>
<li style="list-style: none outside none;">
<strong>1.width:100%</strong><br/><br />
当宽度设置为100%的时候，CSS Lint会给出警告<br/><br />
<img src="http://www.kekaku.com/uploads/images/2012/02/075533k65.jpg"/>
</li>
<li style="list-style: none outside none;">
<strong>2.盒模型错误</strong><br/><br />
好像width和height不能与padding和border同时使用，为什么会这样呢？很怪异<br/><br />
<img src="http://www.kekaku.com/uploads/images/2012/02/075535czK.jpg"/>
</li>
<li style="list-style: none outside none;">
<strong>3.多余的标签</strong><br/><br />
比如a.class,CSS Lint会建议你直接使用.class,如果使用了a.class，会警告<br/><br />
<img src="http://www.kekaku.com/uploads/images/2012/02/075536a90.jpg"/>
</li>
<li style="list-style: none outside none;">
<strong>4.显示属性错误</strong><br/></p>
<p>比如display:inline与float一起使用时，会警告<br/><br />
<img src="http://www.kekaku.com/uploads/images/2012/02/075537QDQ.jpg"/>
</li>
<p>看到这里，也许你会说这一款检测工具还不够成熟，的确，它的解析错误检测，空规则检测，属性值为0带单位的检测挺不错，其余的可能有一点差强人意，但它的检测规则一直在不断丰富和完善中，同时你也可以提交规则，并且最重要的是，现在，你已经可以自己设置，关掉一些不需要的规则<br/><br />
<img src="http://www.kekaku.com/uploads/images/2012/02/075538e8e.jpg"/><br/><br />
这个时候，CSS Lint就会显得好用很多。</p>
<p>假以时日，我相信CSS Lint会越来越强大的。More and more Strong, Smart and Useful!</p>
<p>在线检测地址：http://http://csslint.net/ </p>
</ul>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="O 讓Adobe來告訴你CSS3跟HTML5有多酷" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fadobe-css3-html5&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/09/09/29602205.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">O 讓Adobe來告訴你CSS3跟HTML5有多酷 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="[工具]15種CSS與HTML語法產生器" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2F15-css-html-tools&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/06/17/12830766.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">[工具]15種CSS與HTML語法產生器 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="20个优秀实用的 CSS3 和 HTML5 工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732040.gif" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">20个优秀实用的 CSS3 和 HTML5 工具</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="一个页面重构工程师眼中的“用户体验” " style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F985&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/18/15637582.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">一个页面重构工程师眼中的“用户体验” </font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="10个强大的免费CSS3工具推荐" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F458%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/02/11804107.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">10个强大的免费CSS3工具推荐</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/webdevelop/979/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25个优秀的导航菜单设计</title>
		<link>http://www.kekaku.com/webdesign/978</link>
		<comments>http://www.kekaku.com/webdesign/978#comments</comments>
		<pubDate>Mon, 20 Feb 2012 07:48:13 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[Web设计]]></category>
		<category><![CDATA[菜单]]></category>
		<category><![CDATA[设计欣赏]]></category>
		<category><![CDATA[页面设计]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=978</guid>
		<description><![CDATA[大型菜单（或者叫巨型菜单）经常被那些有着相当数量的网页为用户导航的大站所采用。它不只是一个下拉列表，而是一个打开更大区来提供更多选择的超级菜单。虽然大型菜单在网页设计的发展趋势。对于涉及大量的网页和/或产品的网站，一个大型菜单可能能提高导航和可用性。 大型菜单常见的电子商务网站，因为它们通常包括了很多不同的产品类别，这样大型的菜单可以为访客非常有用的。虽然大型菜单能让用户以较少的点击次数进入到网站更深处的页面，但如果不好好规划设计这个大型菜单，也有可能让用户没有头绪。出于这个原因，我们应当十分注重大型菜单的友好性设计。在这篇文章中，将为您带来25个设计优秀的大型菜单案例。 Little Kids Bedrooms OfficeMax Office Depot Action Envelope ASOS The Sak Nike Adidas Etnies Target REI House of Fraser Northern Tool + Equipment Food Network Martin + Osa Quiksilver Might Leaf Leaf Lucky Brand Jeans B&#38;Q 3 Suisses Like.com Spread Shirt Walmart Rampage mydeco VIA:designm<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Mathieu White UI 作品欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fmathieu-white-ui&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/02/8456588.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Mathieu White UI 作品欣赏 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="50个漂亮的手绘风格的网站欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/15/15486641.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">50个漂亮的手绘风格的网站欣赏</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="50+优秀的企业网站设计实例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F185&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/01/06/13116644.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">50+优秀的企业网站设计实例</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="网页设计的对比原则" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F509%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/16/12403455.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">网页设计的对比原则</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="20+注册表单设计范例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F526&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/17/12488325.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">20+注册表单设计范例</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>大型菜单（或者叫巨型菜单）经常被那些有着相当数量的网页为用户导航的大站所采用。它不只是一个下拉列表，而是一个打开更大区来提供更多选择的超级菜单。虽然大型菜单在网页设计的发展趋势。对于涉及大量的网页和/或产品的网站，一个大型菜单可能能提高导航和可用性。</p>
<p>大型菜单常见的电子商务网站，因为它们通常包括了很多不同的产品类别，这样大型的菜单可以为访客非常有用的。虽然大型菜单能让用户以较少的点击次数进入到网站更深处的页面，但如果不好好规划设计这个大型菜单，也有可能让用户没有头绪。出于这个原因，我们应当十分注重大型菜单的友好性设计。在这篇文章中，将为您带来25个设计优秀的大型菜单案例。</p>
<p><span id="more-978"></span>	</p>
<h3><a href="http://www.littlekidsbedrooms.com/">Little Kids Bedrooms</a></h3>
<p class="eimg"><a href="http://www.littlekidsbedrooms.com/"><img height="303" width="425" alt="Little Kids Bedrooms" src="http://designm.ag/images/0709/mega/mega-12.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.officemax.com/">OfficeMax</a></h3>
<p class="eimg"><a href="http://www.officemax.com/"><img height="344" width="425" alt="OfficeMax" src="http://designm.ag/images/0709/mega/mega-2.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.officedepot.com/">Office Depot</a></h3>
<p class="eimg"><a href="http://www.officedepot.com/"><img height="343" width="425" alt="Office Depot" src="http://designm.ag/images/0709/mega/mega-10.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.actionenvelope.com/">Action Envelope</a></h3>
<p class="eimg"><a href="http://www.actionenvelope.com/"><img height="256" width="425" alt="Action Envelope" src="http://designm.ag/images/0709/mega/mega-20.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.asos.com/">ASOS</a></h3>
<p class="eimg"><a href="http://www.asos.com/"><img height="309" width="425" alt="ASOS" src="http://designm.ag/images/0709/mega/mega-1.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.thesak.com/">The Sak</a></h3>
<p class="eimg"><a href="http://www.thesak.com/"><img height="323" width="425" alt="The Sak" src="http://designm.ag/images/0709/mega/mega-13.jpg" class="imgborder"/></a></p>
<h3><a href="http://store.nike.com/index.jsp?country=US&amp;lang_locale=en_US&amp;ref=http%3A//store.nike.com/">Nike</a></h3>
<p class="eimg"><a href="http://store.nike.com/index.jsp?country=US&amp;lang_locale=en_US&amp;ref=http%3A//store.nike.com/"><img height="310" width="425" alt="Nike" src="http://designm.ag/images/0709/mega/mega-15.jpg"/></a></p>
<h3><a href="http://www.adidas.com/">Adidas</a></h3>
<p class="eimg"><a href="http://www.adidas.com/"><img height="220" width="425" alt="Adidas" src="http://designm.ag/images/0709/mega/mega-21.jpg" class="imgborder"/></a></p>
<h3><a href="http://etnies.com/">Etnies</a></h3>
<p class="eimg"><a href="http://etnies.com/"><img height="324" width="425" alt="Etnies" src="http://designm.ag/images/0709/mega/mega-3.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.target.com/">Target</a></h3>
<p class="eimg"><a href="http://www.target.com/"><img height="325" width="425" alt="Target" src="http://designm.ag/images/0709/mega/mega-8.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.rei.com/">REI</a></h3>
<p class="eimg"><a href="http://www.rei.com/"><img height="330" width="425" alt="REI" src="http://designm.ag/images/0709/mega/mega-18.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.houseoffraser.co.uk/">House of Fraser</a></h3>
<p class="eimg"><a href="http://www.houseoffraser.co.uk/"><img height="282" width="425" alt="House of Fraser" src="http://designm.ag/images/0709/mega/mega-22.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.northerntool.com/">Northern Tool + Equipment</a></h3>
<p class="eimg"><a href="http://www.northerntool.com/"><img height="269" width="425" alt="Northern Tool + Equipment" src="http://designm.ag/images/0709/mega/mega-5.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.foodnetwork.com/">Food Network</a></h3>
<p class="eimg"><a href="http://www.foodnetwork.com/"><img height="304" width="425" alt="Food Network" src="http://designm.ag/images/0709/mega/mega-6.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.martinandosa.com/">Martin + Osa</a></h3>
<p class="eimg"><a href="http://www.martinandosa.com/"><img height="294" width="425" alt="Martin + Osa" src="http://designm.ag/images/0709/mega/mega-7.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.quiksilver.com/home/index.jsp">Quiksilver</a></h3>
<p class="eimg"><a href="http://www.quiksilver.com/home/index.jsp"><img height="334" width="425" alt="Quiksilver" src="http://designm.ag/images/0709/mega/mega-9.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.mightyleaf.com/">Might Leaf Leaf</a></h3>
<p class="eimg"><a href="http://www.mightyleaf.com/"><img height="298" width="425" alt="Might Leaf Leaf" src="http://designm.ag/images/0709/mega/mega-11.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.luckybrand.com/">Lucky Brand Jeans</a></h3>
<p class="eimg"><a href="http://www.luckybrand.com/"><img height="283" width="425" alt="Lucky Brand Jeans" src="http://designm.ag/images/0709/mega/mega-14.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.diy.com/diy/jsp/index.jsp?icamp=portal_instore_button">B&amp;Q</a></h3>
<p class="eimg"><a href="http://www.diy.com/diy/jsp/index.jsp?icamp=portal_instore_button"><img height="286" width="425" alt="B&amp;Q" src="http://designm.ag/images/0709/mega/mega-19.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.3suisses.fr/FrontOfficePortail/3Suisses.portal">3 Suisses</a></h3>
<p class="eimg"><a href="http://www.3suisses.fr/FrontOfficePortail/3Suisses.portal"><img height="284" width="425" alt="3 Suisses" src="http://designm.ag/images/0709/mega/mega-16.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.like.com/">Like.com</a></h3>
<p class="eimg"><a href="http://www.like.com/"><img height="287" width="425" alt="Like.com" src="http://designm.ag/images/0709/mega/mega-17.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.spreadshirt.com/">Spread Shirt</a></h3>
<p class="eimg"><a href="http://www.spreadshirt.com/"><img height="345" width="425" alt="Spread Shirt" src="http://designm.ag/images/0709/mega/mega-23.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.walmart.com/">Walmart</a></h3>
<p class="eimg"><a href="ttp://www.walmart.com/"><img height="377" width="425" alt="Walmart" src="http://designm.ag/images/0709/mega/mega-24.jpg" class="imgborder"/></a></p>
<h3><a href="http://www.rampage.com/">Rampage</a></h3>
<p class="eimg"><a href="http://www.rampage.com/"><img height="184" width="425" alt="Rampage" src="http://designm.ag/images/0709/mega/mega-25.jpg" class="imgborder"/></a></p>
<h3><a href="http://mydeco.com/">mydeco</a></h3>
<p class="eimg"><a href="http://mydeco.com/"><img height="361" width="425" alt="mydeco" src="http://designm.ag/images/0709/mega/mega-4.jpg" class="imgborder"/></a></p>
<p>VIA:<a href="http://designm.ag/">designm</a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Mathieu White UI 作品欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fmathieu-white-ui&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/02/8456588.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Mathieu White UI 作品欣赏 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="50个漂亮的手绘风格的网站欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/15/15486641.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">50个漂亮的手绘风格的网站欣赏</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="50+优秀的企业网站设计实例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F185&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/01/06/13116644.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">50+优秀的企业网站设计实例</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="网页设计的对比原则" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F509%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/16/12403455.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">网页设计的对比原则</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="20+注册表单设计范例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F526&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/17/12488325.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">20+注册表单设计范例</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/webdesign/978/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20个优秀实用的 CSS3 和 HTML5 工具</title>
		<link>http://www.kekaku.com/webdevelop/976</link>
		<comments>http://www.kekaku.com/webdevelop/976#comments</comments>
		<pubDate>Mon, 20 Feb 2012 05:28:53 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[前端开发]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[开发工具]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=976</guid>
		<description><![CDATA[1. Sencha Animator 用标准的网页技术打造超炫的动画，Senchar Animator使用CSS3来打造动态的文字和图片，流畅的变换，阴影，渐变等效果。 2. CSS LINT 这个工具可以帮你找出你CSS中的问题。不光是语法错误，它还能指出你的代码写的不合理的地方，或者不高效的地方。 3. Normalize.css Normalize.css 是一个可以定制的CSS文件，它让不同的浏览器在渲染网页元素的时候形式更统一。 4. Spritemapper Spritemapper 是一个组合不同图片并生成 CSS 位置代码的工具。 5. holmes.css 这个CSS可以帮你找出你网页中写的不标准的HTML代码。 6. prefixMyCSS 这个工具可以帮你的CSS代码添加前缀。 7. Sprite Cow 这个工具可以帮助你创建CSS Sprite。 8. Patternizer 这个工具可以帮助你创建复杂条纹图案的CSS。 9. Prefixr 这个工具可以帮助你创建跨浏览器的CSS代码。输入你的CSS代码，然后勾选一些选项，它就会生成各个浏览器兼容的CSS给你。 10. Patternify 这个工具是一个简单的CSS生成器。你可以直接在它的网页上画出你想要的样式，然后它就会生成相应的CSS给你。 11. CSS Shapes 这个工具可以帮你用纯CSS来生成各种图形。 12. Initializr 这个工具可以帮助你生成一个标准的HTML5网页模板，然后你可以基于这个模板完成你的网页。 13. Gury Gury 可以帮助你创建基于 Canvas 的动画。 14. oCanvas oCanvas [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="O 讓Adobe來告訴你CSS3跟HTML5有多酷" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fadobe-css3-html5&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/09/09/29602205.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">O 讓Adobe來告訴你CSS3跟HTML5有多酷 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="[工具]15種CSS與HTML語法產生器" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2F15-css-html-tools&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/06/17/12830766.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">[工具]15種CSS與HTML語法產生器 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="23个优秀的HTML5/CSS3教程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F606&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/22/12900627.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">23个优秀的HTML5/CSS3教程</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="从 CSS Lint 出发，谈样式优化 " style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15739752.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">从 CSS Lint 出发，谈样式优化 </font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="3 款强大的 HTML5 游戏快速开发工具推荐" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F287%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/12/12264407.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">3 款强大的 HTML5 游戏快速开发工具推荐</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<h3>1. <a target="_blank" href="http://www.sencha.com/products/animator/">Sencha Animator</a></h3>
<p>用标准的网页技术打造超炫的动画，Senchar Animator使用CSS3来打造动态的文字和图片，流畅的变换，阴影，渐变等效果。</p>
<p><span id="more-976"></span></p>
<p class="eimg"><a target="_blank" href="http://www.sencha.com/products/animator/"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060330RPv.jpg"/></a></p>
<h3>2. <a target="_blank" href="http://csslint.net/">CSS LINT </a></h3>
<p>这个工具可以帮你找出你CSS中的问题。不光是语法错误，它还能指出你的代码写的不合理的地方，或者不高效的地方。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060331q6D.jpg"/></p>
<h3>3. <a target="_blank" href="http://www.oschina.net/p/normalize-css">Normalize.css</a></h3>
<p>Normalize.css 是一个可以定制的CSS文件，它让不同的浏览器在渲染网页元素的时候形式更统一。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060332sy8.jpg"/></p>
<h3>4. <a target="_blank" href="http://yostudios.github.com/Spritemapper/">Spritemapper</a></h3>
<p>Spritemapper 是一个组合不同图片并生成 CSS 位置代码的工具。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060333Yiq.jpg"/></p>
<h3>5. <a target="_blank" href="http://www.oschina.net/p/holmes-css">holmes.css</a></h3>
<p>这个CSS可以帮你找出你网页中写的不标准的HTML代码。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060334grd.jpg"/></p>
<h3>6. <a target="_blank" href="http://prefixmycss.com/">prefixMyCSS</a></h3>
<p>这个工具可以帮你的CSS代码添加前缀。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060335A3M.jpg"/></p>
<h3>7. <a target="_blank" href="http://www.spritecow.com/">Sprite Cow</a></h3>
<p>这个工具可以帮助你创建CSS Sprite。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060336uOP.jpg"/></p>
<h3>8. <a target="_blank" href="http://patternizer.com/iku">Patternizer</a></h3>
<p>这个工具可以帮助你创建复杂条纹图案的CSS。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060337231.jpg"/></p>
<h3>9. <a target="_blank" href="http://prefixr.com/">Prefixr</a></h3>
<p>这个工具可以帮助你创建跨浏览器的CSS代码。输入你的CSS代码，然后勾选一些选项，它就会生成各个浏览器兼容的CSS给你。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/0603379jM.jpg"/></p>
<h3>10. <a target="_blank" href="http://www.patternify.com/">Patternify</a></h3>
<p>这个工具是一个简单的CSS生成器。你可以直接在它的网页上画出你想要的样式，然后它就会生成相应的CSS给你。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060338T6p.jpg"/></p>
<h3>11. <a target="_blank" href="http://www.css3shapes.com/">CSS Shapes</a></h3>
<p>这个工具可以帮你用纯CSS来生成各种图形。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060339Y8l.jpg"/></p>
<h3>12. <a target="_blank" href="http://www.initializr.com/">Initializr</a></h3>
<p>这个工具可以帮助你生成一个标准的HTML5网页模板，然后你可以基于这个模板完成你的网页。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/0603406eG.jpg"/></p>
<h3>13. <a target="_blank" href="http://guryjs.org/">Gury</a></h3>
<p>Gury 可以帮助你创建基于 Canvas 的动画。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/0603410mZ.jpg"/></p>
<h3>14. <a target="_blank" href="http://www.oschina.net/p/ocanvas">oCanvas</a></h3>
<p>oCanvas 可以帮助你很容易的在 HTML5 的 Canvas 标签上创建对象，并且创建这些对象的动画。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060341pLh.jpg"/></p>
<h3>15. <a target="_blank" href="http://www.oschina.net/p/modernizr">Modernizr</a></h3>
<p>Modernizr 是一个利用 JS 和 CSS 来检测浏览器说支持功能的小工具。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060348QGA.jpg"/></p>
<h3>16. <a target="_blank" href="http://www.oschina.net/p/response-js">Response JS</a></h3>
<p>Response JS 是一个轻量级的 jQuery 插件，用来创建高性能的支持移动设备的网站。它提供了一套语法用来根据不同的环境动态替换HTML代码。例如根据屏幕大小，动态的替换img标签的src地址。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060349wvl.jpg"/></p>
<h3>17. <a target="_blank" href="http://jejacks0n.github.com/mercury/">Mercury Editor</a></h3>
<p>这是一个全功能的 HTML5 编辑器，可以帮助你的团队在浏览器中编辑文档。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060349urv.jpg"/></p>
<h3>18. <a target="_blank" href="http://www.oschina.net/p/sugar-js">Sugar</a></h3>
<p>Sugar 是一个JavaScript库。它扩展了现有的JS对象的方法，让你可以用更少的代码做更多的事情。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060350EXZ.jpg"/></p>
<h3>19. <a target="_blank" href="http://www.oschina.net/p/buzz">Buzz</a></h3>
<p>Buzz是一个用于操作HTML5音频标签的JavaScript library 。它是一个没有用到其它JavaScript框架独立Library。并拥有丰富的API可以用来管理这个音频标签提供的所有功能。支持的功能包括播放、 暂停、停止、循环和音量控、取得音频信息、判断音频类型是否支持、可同时处理多个音频文件。还可以取得播放结束、错误产生或音量变化等事件。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060351UNs.jpg"/></p>
<h3>20. <a target="_blank" href="http://www.oschina.net/p/recurly">Recurly.js</a></h3>
<p>Recurly.js 是另一个 JS 实现的表单美化插件。</p>
<p class="eimg"><img height="400" width="570" alt="" src="http://www.kekaku.com/uploads/images/2012/02/060352otc.jpg"/></p>
<p>VIA:开源中国社区 [<a href="http://www.oschina.net/">http://www.oschina.net</a>]</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="O 讓Adobe來告訴你CSS3跟HTML5有多酷" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fadobe-css3-html5&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/09/09/29602205.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">O 讓Adobe來告訴你CSS3跟HTML5有多酷 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="[工具]15種CSS與HTML語法產生器" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2F15-css-html-tools&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/06/17/12830766.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">[工具]15種CSS與HTML語法產生器 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="23个优秀的HTML5/CSS3教程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F606&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/22/12900627.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">23个优秀的HTML5/CSS3教程</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="从 CSS Lint 出发，谈样式优化 " style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F979&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15739752.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">从 CSS Lint 出发，谈样式优化 </font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="3 款强大的 HTML5 游戏快速开发工具推荐" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F287%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdevelop%2F976">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/12/12264407.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">3 款强大的 HTML5 游戏快速开发工具推荐</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/webdevelop/976/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12款免费的WordPress主题</title>
		<link>http://www.kekaku.com/wordpress/974</link>
		<comments>http://www.kekaku.com/wordpress/974#comments</comments>
		<pubDate>Thu, 16 Feb 2012 07:12:30 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress主题]]></category>
		<category><![CDATA[WordPress皮肤]]></category>
		<category><![CDATA[素材]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=974</guid>
		<description><![CDATA[对于WordPress用户来说，想找到一份满意的主题非常困难。是的，网上是有很多WordPress主题，可是很多都是半成品或者收费的。 今天要介绍的是12款免费的WordPress主题，这些主题都来自于site5这个网站，都很不错。 网站地址：http://www.site5.com/wordpress-themes/ 可以点击主题缩略图右上方的 Live Preview 进行效果预览。<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="原來月曆可以這樣做" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fpattern-matters-design&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/22/24133014.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">原來月曆可以這樣做 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="蒐，超質感Old Paper．泛黃舊紙張素材15組" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fold-paper-texture-and-images&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/12/12832592.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">蒐，超質感Old Paper．泛黃舊紙張素材15組 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="30款免费的WordPress主题，附下载地址" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F181%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/09/06/28530772.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">30款免费的WordPress主题，附下载地址</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="15个简约不简单的WordPress主题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F56&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/09/16/31412918.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">15个简约不简单的WordPress主题</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="23个房地产类wordpress皮肤主题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F208%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/01/20292714.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">23个房地产类wordpress皮肤主题</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>对于WordPress用户来说，想找到一份满意的主题非常困难。是的，网上是有很多WordPress主题，可是很多都是半成品或者收费的。</p>
<p>今天要介绍的是12款免费的WordPress主题，这些主题都来自于site5这个网站，都很不错。</p>
<p><span id="more-974"></span></p>
<p>网站地址：<a href="http://www.site5.com/wordpress-themes/" target="_blank">http://www.site5.com/wordpress-themes/</a></p>
<p>可以点击主题缩略图右上方的 Live Preview 进行效果预览。</p>
<p class="eimg"><img src="http://www.site5.com/images/wordpress_landing_image.png" width="720" height="237" /></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="原來月曆可以這樣做" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fpattern-matters-design&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/22/24133014.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">原來月曆可以這樣做 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="蒐，超質感Old Paper．泛黃舊紙張素材15組" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fold-paper-texture-and-images&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/12/12832592.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">蒐，超質感Old Paper．泛黃舊紙張素材15組 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="30款免费的WordPress主题，附下载地址" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F181%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/09/06/28530772.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">30款免费的WordPress主题，附下载地址</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="15个简约不简单的WordPress主题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F56&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/09/16/31412918.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">15个简约不简单的WordPress主题</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="23个房地产类wordpress皮肤主题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F208%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwordpress%2F974">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/01/20292714.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">23个房地产类wordpress皮肤主题</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/wordpress/974/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>向Google学习打造灵动的web体验</title>
		<link>http://www.kekaku.com/webdesign/973</link>
		<comments>http://www.kekaku.com/webdesign/973#comments</comments>
		<pubDate>Thu, 16 Feb 2012 06:27:17 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[Web设计]]></category>
		<category><![CDATA[交互设计]]></category>
		<category><![CDATA[设计欣赏]]></category>
		<category><![CDATA[设计理论]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=973</guid>
		<description><![CDATA[Google的设计一向以简单著称，让页面清爽优雅地呈现，一方面节省了页面载入的时间，减少用户的等待，另一方面也减少了用户在浏览页面时的分心。然而，在这简单的设计背后，并不是设计师偷懒，而是更加灵敏、细致、轻便的交互体验设计。Google+作为社交网络的又一力作， 在继承了公司著名的十大设计准则下，在如何更轻、更快速、更人性化方面有了很大的突破。本文主要以社交网络为例，分析总结出了六条让web体验更灵动的设计方法，供大家参考。 1.图形化的导航 社交网的信息十分繁杂，因此导航的引导就显得至关重要。没有公司比Google更大胆了，将导航的tab全部简化成icon，只有鼠标hover上去的时候才会显示这个tab的注释。显然，这对新手用户而言，有一定的学习门槛的，但是我们从中无不从中感受到了简洁的力量，图形化导航让整栏显得干净整洁，功能集中，切换方便。 纵观国内外几大主流社交网的导航，导航大多采用的是文字，虽然从功能上看一目了然，但是由于文字本身不够简洁，排布起来有局限，那么只好在设计的时候，更要考虑功能的归纳分布以及优先级展示，隐藏不常用的功能。 2.使用灰色按钮 经常做设计的人都知道，灰色按钮代表着是被禁用的功能，是不可点击的。然而Google+却大胆的使用了灰色按钮，通过鼠标hover告诉用户这是可点的。仔细想来，这用做以下两个原因：一、平衡了页面的配色。由于Google的logo主题色有四种，如果让按钮们默认展示原有的颜色，页面会看起来很花，没有重点。像这样灰掉的处理，使选中的tab更加突出，也不会带来干扰。二、按钮由灰点变彩色的方式给人一种点亮图标的暗示，增强了用户点击按钮的欲望。 从图标的发展趋势来看，无论颜色还是形态都是朝着简洁方向走的，过去花花绿绿的图标已经失去了它原有的标识感，纯色的图标应用起来会显得更上流，更高端。 3.鼠标所到之处均有反馈 网页上的大多数元素，在鼠标滑过的时候，都应该有其相应的反馈。无论是仅仅发生鼠标指针变化，还是出现下划线，或是结合一些简单功能的操作和注释来显示。设计师在做静态设计稿时，很容易忽略这些设计细节，但这正是一个产品体现良好交互性能的关键时刻。就好比和人交谈，如果他对我的话语没有任何反映，我也会减少对他诉说的兴趣，如果他时而点头，时而微笑，时而赞许，那么我可能会有更多更有意思的事情告诉他。因此，哪怕仅仅是边框的颜色变深了一些，也能表达这个页面对用户是友好的，而不是不理不睬的。 hover态是展示用户在当前页想知道的相关内容的最佳时机。例如鼠标划到头像时，会出现那个人的相关信息等。Hover态还可以对某一模块有强引导的作用，例如Google会强调它的搜索功能。另外，还可以用于隐藏一些不常用的操作，例如删除等。 4.简单任务在当前页完成 这里最值得一提的是Google+加好友和分组的流程优化。原本加好友和分组是两个独立的任务，分组是在对方同意加好友时才能进行，由于Google+推出的是单向关系链，因此将分组可以提前到添加好友这一步做。原本加好友是需要点击按钮，如今只用hover上去就会出现分组框，大大降低了加好友和分组的操作门槛。用户最少只要点击一下即可完成两步步骤。如今Face book等一些双向关系链的社交网也开始学习这种快速加好友和分组的方式。 5.feed实时滚屏更新 Feed就是我们的每天订阅的新消息。相信大家对下面的小黄条都不陌生吧，国内大部分网站都是采用点击小黄条来查看新的消息，而Google+是自动滚屏的方式展示最新消息，并在左侧出现一条蓝竖线，表示是最新更新。Google的设计之所以显得灵动，还有一个重要的原因，在于它的这些状态的改变都伴随着优雅的动画，而不是赤裸裸的出现、消失。包括feed的评论和赞，都是实时更新，配上简单华丽的动画，简直就像在看现场直播。 6.即时的系统反馈 类似上图中的提示条在整个网站都是统一一致的，它们都是自动出现，自动消失，有的还肩负着简单的操作，例如图中的撤消等。有了这样轻便的系统反馈，就不会再出现弹窗等很重的反馈方式，页面的交互就显得轻便流畅许多，无时无刻不在安抚着用户焦躁的情绪。 综上所述，本文从灵敏轻便的角度，对Google+的体验进行分析，总结出以上六点让web更轻便灵敏的设计方法，希望能给大家带来一些参考。 VIA:腾讯CDC<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Google 的逐格動畫" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fgoogle-stop-motion&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/20/12716404.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google 的逐格動畫 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="[HTML5]Google 首頁的電吉他解密" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fhtml5google&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/12/22435209.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">[HTML5]Google 首頁的電吉他解密 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的导航菜单设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732285.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的导航菜单设计</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="22个木质纹理风格设计的网站" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fgossip%2F2981&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/19/23487106.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">22个木质纹理风格设计的网站</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="20个优秀的移动(iPhone)网站设计案例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F633%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/25/13007865.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">20个优秀的移动(iPhone)网站设计案例</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>Google的设计一向以简单著称，让页面清爽优雅地呈现，一方面节省了页面载入的时间，减少用户的等待，另一方面也减少了用户在浏览页面时的分心。然而，在这简单的设计背后，并不是设计师偷懒，而是更加灵敏、细致、轻便的交互体验设计。Google+作为社交网络的又一力作， 在继承了公司著名的十大设计准则下，在如何更轻、更快速、更人性化方面有了很大的突破。本文主要以社交网络为例，分析总结出了六条让web体验更灵动的设计方法，供大家参考。</p>
<p><span id="more-973"></span></p>
<h3>1.图形化的导航</h3>
<p>社交网的信息十分繁杂，因此导航的引导就显得至关重要。没有公司比Google更大胆了，将导航的tab全部简化成icon，只有鼠标hover上去的时候才会显示这个tab的注释。显然，这对新手用户而言，有一定的学习门槛的，但是我们从中无不从中感受到了简洁的力量，图形化导航让整栏显得干净整洁，功能集中，切换方便。</p>
<p><img height="300" width="720" alt="" src="http://cdc.tencent.com/wp-content/uploads/2012/02/12.png" class="aligncenter size-full wp-image-5187"/> </p>
<p>纵观国内外几大主流社交网的导航，导航大多采用的是文字，虽然从功能上看一目了然，但是由于文字本身不够简洁，排布起来有局限，那么只好在设计的时候，更要考虑功能的归纳分布以及优先级展示，隐藏不常用的功能。</p>
<h3>2.使用灰色按钮</h3>
<p>经常做设计的人都知道，灰色按钮代表着是被禁用的功能，是不可点击的。然而Google+却大胆的使用了灰色按钮，通过鼠标hover告诉用户这是可点的。仔细想来，这用做以下两个原因：一、平衡了页面的配色。由于Google的logo主题色有四种，如果让按钮们默认展示原有的颜色，页面会看起来很花，没有重点。像这样灰掉的处理，使选中的tab更加突出，也不会带来干扰。二、按钮由灰点变彩色的方式给人一种点亮图标的暗示，增强了用户点击按钮的欲望。</p>
<p><img height="280" width="720" alt="" src="http://cdc.tencent.com/wp-content/uploads/2012/02/2.png" class="aligncenter size-full wp-image-5181"/></p>
<p>从图标的发展趋势来看，无论颜色还是形态都是朝着简洁方向走的，过去花花绿绿的图标已经失去了它原有的标识感，纯色的图标应用起来会显得更上流，更高端。</p>
<h3>3.鼠标所到之处均有反馈</h3>
<p>网页上的大多数元素，在鼠标滑过的时候，都应该有其相应的反馈。无论是仅仅发生鼠标指针变化，还是出现下划线，或是结合一些简单功能的操作和注释来显示。设计师在做静态设计稿时，很容易忽略这些设计细节，但这正是一个产品体现良好交互性能的关键时刻。就好比和人交谈，如果他对我的话语没有任何反映，我也会减少对他诉说的兴趣，如果他时而点头，时而微笑，时而赞许，那么我可能会有更多更有意思的事情告诉他。因此，哪怕仅仅是边框的颜色变深了一些，也能表达这个页面对用户是友好的，而不是不理不睬的。</p>
<p>hover态是展示用户在当前页想知道的相关内容的最佳时机。例如鼠标划到头像时，会出现那个人的相关信息等。Hover态还可以对某一模块有强引导的作用，例如Google会强调它的搜索功能。另外，还可以用于隐藏一些不常用的操作，例如删除等。</p>
<p><img height="486" width="720" alt="" src="http://cdc.tencent.com/wp-content/uploads/2012/02/3.png" class="aligncenter size-full wp-image-5182"/></p>
<h3>4.简单任务在当前页完成</h3>
<p>这里最值得一提的是Google+加好友和分组的流程优化。原本加好友和分组是两个独立的任务，分组是在对方同意加好友时才能进行，由于Google+推出的是单向关系链，因此将分组可以提前到添加好友这一步做。原本加好友是需要点击按钮，如今只用hover上去就会出现分组框，大大降低了加好友和分组的操作门槛。用户最少只要点击一下即可完成两步步骤。如今Face book等一些双向关系链的社交网也开始学习这种快速加好友和分组的方式。</p>
<p><img height="331" width="720" alt="" src="http://cdc.tencent.com/wp-content/uploads/2012/02/4.png" class="aligncenter size-full wp-image-5183"/></p>
<h3>5.feed实时滚屏更新</h3>
<p>Feed就是我们的每天订阅的新消息。相信大家对下面的小黄条都不陌生吧，国内大部分网站都是采用点击小黄条来查看新的消息，而Google+是自动滚屏的方式展示最新消息，并在左侧出现一条蓝竖线，表示是最新更新。Google的设计之所以显得灵动，还有一个重要的原因，在于它的这些状态的改变都伴随着优雅的动画，而不是赤裸裸的出现、消失。包括feed的评论和赞，都是实时更新，配上简单华丽的动画，简直就像在看现场直播。</p>
<p><img height="500" width="613" alt="" src="http://cdc.tencent.com/wp-content/uploads/2012/02/5.png" class="aligncenter size-full wp-image-5184"/></p>
<h3>6.即时的系统反馈</h3>
<p><img height="289" width="720" alt="" src="http://cdc.tencent.com/wp-content/uploads/2012/02/61.png" class="aligncenter size-full wp-image-5185"/></p>
<p>类似上图中的提示条在整个网站都是统一一致的，它们都是自动出现，自动消失，有的还肩负着简单的操作，例如图中的撤消等。有了这样轻便的系统反馈，就不会再出现弹窗等很重的反馈方式，页面的交互就显得轻便流畅许多，无时无刻不在安抚着用户焦躁的情绪。</p>
<p>综上所述，本文从灵敏轻便的角度，对Google+的体验进行分析，总结出以上六点让web更轻便灵敏的设计方法，希望能给大家带来一些参考。</p>
<p>VIA:<a href="http://cdc.tencent.com/">腾讯CDC</a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Google 的逐格動畫" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fgoogle-stop-motion&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/20/12716404.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google 的逐格動畫 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="[HTML5]Google 首頁的電吉他解密" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fhtml5google&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/12/22435209.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">[HTML5]Google 首頁的電吉他解密 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的导航菜单设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732285.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的导航菜单设计</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="22个木质纹理风格设计的网站" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fgossip%2F2981&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/19/23487106.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">22个木质纹理风格设计的网站</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="20个优秀的移动(iPhone)网站设计案例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F633%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F973">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/25/13007865.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">20个优秀的移动(iPhone)网站设计案例</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/webdesign/973/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25个优秀的运用彩虹元素的网站设计欣赏</title>
		<link>http://www.kekaku.com/webdesign/947</link>
		<comments>http://www.kekaku.com/webdesign/947#comments</comments>
		<pubDate>Wed, 15 Feb 2012 09:29:58 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[Web设计]]></category>
		<category><![CDATA[彩虹]]></category>
		<category><![CDATA[网站设计]]></category>
		<category><![CDATA[设计欣赏]]></category>
		<category><![CDATA[配色]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=947</guid>
		<description><![CDATA[彩虹好像很多年没有看见过了，在网站设计中加入彩虹元素大多表现在页面的大背景中，这样的设计会非常的醒目，用户打开页面的第一时间就会被大胆的设计吸引住，或许你可以尝试这样的设计。 25个优秀的彩虹元素在页面设计中使用的案例，希望你会喜欢(猛击网站截图可以直达网站页面)<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="城市中的彩虹" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Frainbow-in-the-city&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/13/22469354.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">城市中的彩虹 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="藍+白+紅 (+黃) = 史上超威配色" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fbluewhitered&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/12/22452350.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">藍+白+紅 (+黃) = 史上超威配色 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个非常优秀的黑色调网站" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/13/15360070.gif" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个非常优秀的黑色调网站</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="网页设计中留白与白色的使用范例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F534%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/20/12687005.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">网页设计中留白与白色的使用范例</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的导航菜单设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732285.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的导航菜单设计</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>彩虹好像很多年没有看见过了，在网站设计中加入彩虹元素大多表现在页面的大背景中，这样的设计会非常的醒目，用户打开页面的第一时间就会被大胆的设计吸引住，或许你可以尝试这样的设计。</p>
<p>25个优秀的彩虹元素在页面设计中使用的案例，希望你会喜欢(猛击网站截图可以直达网站页面)</p>
<p><span id="more-947"></span></p>
<p class="eimg"><a target="_blank" href="http://designfabrika.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093002ntN.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://instagalleryapp.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093003ecr.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.nybbledesigns.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093005ple.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://adaptd.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093006DMO.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.multiways.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093007UXC.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://feedstitch.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093013edG.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://azhestkov.ru/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093014g8o.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.eatinginsydney.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093016bH3.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://fortherecord.simonfosterdesign.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/0930185j3.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://flashtml5.com/labs/lolwut/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093022593.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.truly-design.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093023sjN.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.orangeyouglad.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093025FNX.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://viteungraphiste.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093028lKv.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.manchestercraftmafia.co.uk/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093029zbd.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://wearehughes.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093030xZ0.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.prettyproduction.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/0930322Zf.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://epic.net/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093033Aqx.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.thefloodplain.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/0930340QM.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.aspanovasbizkaia.org/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093036zf4.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.showtimedesigner.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093038S84.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.colourpixel.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093040Sr4.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://ffive.com.au/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093042lr6.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.beautiful2.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093043A3Q.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://webtek.cz/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/0930490Bf.jpg"/></a></p>
<p class="eimg"><a target="_blank" href="http://www.elastic-media.com/"><img height="400" width="580" src="http://www.kekaku.com/uploads/images/2012/02/093051Lg1.jpg"/></a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="城市中的彩虹" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Frainbow-in-the-city&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/13/22469354.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">城市中的彩虹 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="藍+白+紅 (+黃) = 史上超威配色" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fbluewhitered&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/12/22452350.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">藍+白+紅 (+黃) = 史上超威配色 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个非常优秀的黑色调网站" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/13/15360070.gif" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个非常优秀的黑色调网站</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="网页设计中留白与白色的使用范例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F534%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/20/12687005.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">网页设计中留白与白色的使用范例</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的导航菜单设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732285.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的导航菜单设计</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/webdesign/947/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50个漂亮的手绘风格的网站欣赏</title>
		<link>http://www.kekaku.com/webdesign/946</link>
		<comments>http://www.kekaku.com/webdesign/946#comments</comments>
		<pubDate>Wed, 15 Feb 2012 08:58:59 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[Web设计]]></category>
		<category><![CDATA[网站设计]]></category>
		<category><![CDATA[设计欣赏]]></category>
		<category><![CDATA[页面设计]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=946</guid>
		<description><![CDATA[手绘风格的网站貌似已经开始流行，这类风格可以让网站变的个性、独特，而且还能从一定程度上显示出设计师的功底。 下面的是50个漂亮的手绘风格的网站，希望你能从中得到一些创作灵感。 K4 Laboratory Esteban Muñoz Studio IMG Espuma Restaurant Agami Creative Biola Undergrad Kusoyama XM Radio – Wild Ride WeFail Web Designer Wall Dean Oakley Web Design Fat Heads Creative Studio Booma Web Design Boompa Casio Exilim Lab Bootb Richard Stelmach Dax and Alice We Are Not Freelancers Von Dutch Originals Toucouleur Simon Reynolds [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Mathieu White UI 作品欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fmathieu-white-ui&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/02/8456588.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Mathieu White UI 作品欣赏 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的运用彩虹元素的网站设计欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/15/15489348.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的运用彩虹元素的网站设计欣赏</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个非常优秀的黑色调网站" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/13/15360070.gif" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个非常优秀的黑色调网站</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的导航菜单设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732285.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的导航菜单设计</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="15个优秀的红色网站设计作品欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F210&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/02/20546906.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">15个优秀的红色网站设计作品欣赏</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>手绘风格的网站貌似已经开始流行，这类风格可以让网站变的个性、独特，而且还能从一定程度上显示出设计师的功底。</p>
<p>下面的是50个漂亮的手绘风格的网站，希望你能从中得到一些创作灵感。</p>
<h3><a href="http://k4lab.info/eng/indexeng.htm">K4 Laboratory</a></h3>
<p><span id="more-946"></span></p>
<p class="eimg"><a href="http://k4lab.info/eng/indexeng.htm"><img height="400" width="500" alt="k4 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/k4.jpg"/></a></p>
<h3><a href="http://www.estebanmunoz.com/">Esteban Muñoz</a></h3>
<p class="eimg"><a href="http://www.estebanmunoz.com/"><img height="391" width="500" alt="estebanmunoz 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/estebanmunoz.jpg"/></a></p>
<h3><a href="http://www.studioimg.com/">Studio IMG</a></h3>
<p class="eimg"><a href="http://www.studioimg.com/"><img height="400" width="500" alt="studioimg 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/studioimg.jpg"/></a></p>
<h3><a href="http://www.espumarestaurant.com/">Espuma Restaurant</a></h3>
<p class="eimg"><a href="http://www.espumarestaurant.com/"><img height="316" width="500" alt="Espuma Restaurant 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/Espuma-Restaurant.jpg"/></a></p>
<h3><a href="http://agamicreative.com/">Agami Creative</a></h3>
<p class="eimg"><a href="http://agamicreative.com/"><img height="304" width="500" alt="agami 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/agami.jpg"/></a></p>
<h3><a href="http://www.biola.edu/undergrad/">Biola Undergrad</a></h3>
<p class="eimg"><a href="http://www.biola.edu/undergrad/"><img height="400" width="500" alt="biola 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/biola.jpg"/></a></p>
<h3><a href="http://kusoyama.com/kuso_city.html#flash">Kusoyama</a></h3>
<p class="eimg"><a href="http://kusoyama.com/kuso_city.html#flash"><img height="318" width="500" alt="kusoyama 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/kusoyama.jpg"/></a></p>
<h3><a href="http://www.wildridexm.com/">XM Radio – Wild Ride</a></h3>
<p class="eimg"><a href="http://www.wildridexm.com/"><img height="300" width="500" alt="wildridexm 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/wildridexm.jpg"/></a></p>
<h3><a href="http://wefail.com/">WeFail</a></h3>
<p class="eimg"><a href="http://wefail.com/"><img height="333" width="500" alt="wefail 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/wefail.jpg"/></a></p>
<h3><a href="http://www.webdesignerwall.com/">Web Designer Wall</a></h3>
<p class="eimg"><a href="http://www.webdesignerwall.com/"><img height="274" width="500" alt="web designer wall 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/web-designer-wall.jpg"/></a></p>
<h3><a href="http://www.deanoakley.com/">Dean Oakley Web Design</a></h3>
<p class="eimg"><a href="http://www.deanoakley.com/"><img height="298" width="500" alt="dean 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/dean.jpg"/></a></p>
<h3><a href="http://www.fatheads.co.uk/">Fat Heads Creative Studio</a></h3>
<p class="eimg"><a href="http://www.fatheads.co.uk/"><img height="291" width="500" alt="fatheads 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/fatheads.jpg"/></a></p>
<h3><a href="http://www.boomawebdesign.com/">Booma Web Design</a></h3>
<p class="eimg"><a href="http://www.boomawebdesign.com/"><img height="302" width="500" alt="boomawebdesign 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/boomawebdesign.jpg"/></a></p>
<h3><a href="http://boompa.ca/">Boompa</a></h3>
<p class="eimg"><a href="http://boompa.ca/"><img height="274" width="500" alt="boompa 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/boompa.jpg"/></a></p>
<h3><a href="http://casioexilimlab.com/">Casio Exilim Lab</a></h3>
<p class="eimg"><a href="http://casioexilimlab.com/"><img height="330" width="500" alt="casio 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/casio.jpg"/></a></p>
<h3><a href="http://bootb.com/es/">Bootb</a></h3>
<p class="eimg"><a href="http://bootb.com/es/"><img height="332" width="500" alt="bootb 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/bootb.jpg"/></a></p>
<h3><a href="http://www.creativebinge.co.uk/">Richard Stelmach</a></h3>
<p class="eimg"><a href="http://www.creativebinge.co.uk/"><img height="257" width="500" alt="richard 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/richard.jpg"/></a></p>
<h3><a href="http://daxandalice.com/home">Dax and Alice</a></h3>
<p class="eimg"><a href="http://daxandalice.com/home"><img height="278" width="500" alt="daxandalice 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/daxandalice.jpg"/></a></p>
<h3><a href="http://wearenotfreelancers.co.za/">We Are Not Freelancers</a></h3>
<p class="eimg"><a href="http://wearenotfreelancers.co.za/"><img height="319" width="500" alt="wearenotfreelancers 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/wearenotfreelancers.jpg"/></a></p>
<h3><a href="http://vondutch.com/">Von Dutch Originals</a></h3>
<p class="eimg"><a href="http://vondutch.com/"><img height="370" width="500" alt="vondutch 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/vondutch.jpg"/></a></p>
<h3><a href="http://www.toucouleur.fr/">Toucouleur</a></h3>
<p class="eimg"><a href="http://www.toucouleur.fr/"><img height="264" width="500" alt="toucouleur 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/toucouleur.jpg"/></a></p>
<h3><a href="http://www.sr28.com/">Simon Reynolds</a></h3>
<p class="eimg"><a href="http://www.sr28.com/"><img height="235" width="500" alt="sr28 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/sr28.jpg"/></a></p>
<h3><a href="http://www.teresawalsh.com/">Teresa Walsh</a></h3>
<p class="eimg"><a href="http://www.teresawalsh.com/"><img height="289" width="500" alt="teresa 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/teresa.jpg"/></a></p>
<h3><a href="http://www.satsu.co.uk/">Satsu Design</a></h3>
<p class="eimg"><a href="http://www.satsu.co.uk/"><img height="277" width="500" alt="satsu 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/satsu.jpg"/></a></p>
<h3><a href="http://www.happyingreenville.com/">St. Francis is Happy in Greenville</a></h3>
<p class="eimg"><a href="http://www.happyingreenville.com/"><img height="424" width="500" alt="happyingreenville 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/happyingreenville.jpg"/></a></p>
<h3><a href="http://www.squidfingers.com/">Squidfingers</a></h3>
<p class="eimg"><a href="http://www.squidfingers.com/"><img height="359" width="500" alt="squidfingers 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/squidfingers.jpg"/></a></p>
<h3><a href="http://www.flossy.be/">Flossy Yannik</a></h3>
<p class="eimg"><a href="http://www.flossy.be/"><img height="453" width="500" alt="flossy 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/flossy.jpg"/></a></p>
<h3><a href="http://pointlessramblings.com/">Pointless Ramblings</a></h3>
<p class="eimg"><a href="http://pointlessramblings.com/"><img height="232" width="500" alt="pointless 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/pointless.jpg"/></a></p>
<h3><a href="http://www.ephfx.fr/">Philippe Mignotte</a></h3>
<p class="eimg"><a href="http://www.ephfx.fr/"><img height="307" width="500" alt="ephfx 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/ephfx.jpg"/></a></p>
<h3><a href="http://quakequizsf.org/">QuakeQuizSF</a></h3>
<p class="eimg"><a href="http://quakequizsf.org/"><img height="336" width="500" alt="quakequizsf 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/quakequizsf.jpg"/></a></p>
<h3><a href="http://www.mplusz.com/">Mplusz</a></h3>
<p class="eimg"><a href="http://www.mplusz.com/"><img height="342" width="500" alt="mplusz 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/mplusz.jpg"/></a></p>
<h3><a href="http://www.tfreak.com/">New Art for a New Era</a></h3>
<p class="eimg"><a href="http://www.tfreak.com/"><img height="337" width="500" alt="tfreak 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/tfreak.jpg"/></a></p>
<h3><a href="http://www.christiansparrow.com/">Christian Sparrow</a></h3>
<p class="eimg"><a href="http://www.christiansparrow.com/"><img height="400" width="500" alt="christian 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/christian.jpg"/></a></p>
<h3><a href="http://www.themattinator.com/">Matt – Multi Account Twitter Tweeter</a></h3>
<p class="eimg"><a href="http://www.themattinator.com/"><img height="338" width="500" alt="themattinator 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/themattinator.jpg"/></a></p>
<h3><a href="http://mariska.com/">Mariska</a></h3>
<p class="eimg"><a href="http://mariska.com/"><img height="324" width="500" alt="mariska 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/mariska.jpg"/></a></p>
<h3><a href="http://lucuma.com.ar/">Lucuma</a></h3>
<p class="eimg"><a href="http://lucuma.com.ar/"><img height="353" width="500" alt="lucuma 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/lucuma.jpg"/></a></p>
<h3><a href="http://www.mikimottes.com/">Mikimottes</a></h3>
<p class="eimg"><a href="http://www.mikimottes.com/"><img height="307" width="500" alt="mikimottes 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/mikimottes.jpg"/></a></p>
<h3><a href="http://www.emobious.com/old/">Mobious</a></h3>
<p class="eimg"><a href="http://www.emobious.com/old/"><img height="373" width="500" alt="emobious 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/emobious.jpg"/></a></p>
<h3><a href="http://www.kutztown.edu/acad/commdes/">Kutztown University</a></h3>
<p class="eimg"><a href="http://www.kutztown.edu/acad/commdes/"><img height="282" width="500" alt="kutz 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/kutz.jpg"/></a></p>
<h3><a href="http://www.kittyattackblog.com/">Kitty Attack</a></h3>
<p class="eimg"><a href="http://www.kittyattackblog.com/"><img height="253" width="500" alt="kitty 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/kitty.jpg"/></a></p>
<h3><a href="http://www.lookdesigns.net/">Look Designs</a></h3>
<p class="eimg"><a href="http://www.lookdesigns.net/"><img height="400" width="500" alt="look 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/look.jpg"/></a></p>
<h3><a href="http://www.idioticadventures.com/">Idiotic Adventures of Philippe and Pierre</a></h3>
<p class="eimg"><a href="http://www.idioticadventures.com/"><img height="323" width="500" alt="idiotic 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/idiotic.jpg"/></a></p>
<h3><a href="http://www.lionite.com/">Lionite Internet Ventures</a></h3>
<p class="eimg"><a href="http://www.lionite.com/"><img height="276" width="500" alt="lionite 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/lionite.jpg"/></a></p>
<h3><a href="http://the-rox.com/">Get ready to rox</a></h3>
<p class="eimg"><a href="http://the-rox.com/"><img height="246" width="500" alt="rox 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/rox.jpg"/></a></p>
<h3><a href="http://www.elansnowboards.com/en/">Elan Snowboards</a></h3>
<p class="eimg"><a href="http://www.elansnowboards.com/en/"><img height="229" width="500" alt="elan 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/elan.jpg"/></a></p>
<h3><a href="http://arsmedia.com.ar/">ARS Media</a></h3>
<p class="eimg"><a href="http://arsmedia.com.ar/"><img height="339" width="500" alt="ars 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/ars.jpg"/></a></p>
<h3><a href="http://www.itlooksgood.com/oldsite/">It Looks Good</a></h3>
<p class="eimg"><a href="http://www.itlooksgood.com/oldsite/"><img height="416" width="500" alt="itlooksgood 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/itlooksgood.jpg"/></a></p>
<h3><a href="http://www.jrvelasco.com/">Jesus Rodriguez Velasco</a></h3>
<p class="eimg"><a href="http://www.jrvelasco.com/"><img height="400" width="500" alt="jrvelasco 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/jrvelasco.jpg"/></a></p>
<h3><a href="http://kinetic.com.sg/main.html">Kinetic Singapore</a></h3>
<p class="eimg"><a href="http://kinetic.com.sg/main.html"><img height="320" width="500" alt="kinetic 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/kinetic.jpg"/></a></p>
<h3><a href="http://www.bearskinrug.co.uk/">Bearskinrug</a></h3>
<p class="eimg"><a href="http://www.bearskinrug.co.uk/"><img height="333" width="500" alt="bear 50 Beautiful Hand Drawn Web Design" title="50 Beautiful Hand Drawn Web Design" src="http://media02.hongkiat.com/hand-drawn-websites/bear.jpg"/></a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Mathieu White UI 作品欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fmathieu-white-ui&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/02/8456588.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Mathieu White UI 作品欣赏 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的运用彩虹元素的网站设计欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/15/15489348.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的运用彩虹元素的网站设计欣赏</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个非常优秀的黑色调网站" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/13/15360070.gif" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个非常优秀的黑色调网站</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的导航菜单设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732285.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的导航菜单设计</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="15个优秀的红色网站设计作品欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F210&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/02/20546906.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">15个优秀的红色网站设计作品欣赏</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/webdesign/946/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25个非常优秀的黑色调网站</title>
		<link>http://www.kekaku.com/webdesign/919</link>
		<comments>http://www.kekaku.com/webdesign/919#comments</comments>
		<pubDate>Mon, 13 Feb 2012 09:26:01 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[Web设计]]></category>
		<category><![CDATA[网站设计]]></category>
		<category><![CDATA[设计欣赏]]></category>
		<category><![CDATA[配色]]></category>
		<category><![CDATA[页面设计]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=919</guid>
		<description><![CDATA[黑色是一个很强大的色彩。它可以很庄重和高雅，而且可以突出其他颜色。在网站设计中，我们经常会看到黑色的网站作品，而且大都非常引人注目。 黑色是几乎所有颜色的好搭档。它让其它颜色看起来更亮。即便是暗色系的颜色也会和黑色很有效。和白色搭配可以提供很棒的对比。下面是25个非常优秀的黑色调网站，设计的都非常棒，值得一看！ Kineda Merix Studio The Things We Make Switch Mediaworks Coda Lucas Hirata Visual Box Versions Ian Wharton Mediaflex Kardo Ayoub Sawyer Hollenshead Nile Inside Cabedge Take the Walk 1MD Quommunication Internet Dreams Kinetic Kreations Anderbose Mike Precious Jef Finley Hangar Door Esteban Muñoz Ole Martin Kristiansen<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="法國設計師們的配色魔法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fcolors-of-french-designers&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/15/22888432.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">法國設計師們的配色魔法 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="藍+白+紅 (+黃) = 史上超威配色" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fbluewhitered&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/12/22452350.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">藍+白+紅 (+黃) = 史上超威配色 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的导航菜单设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732285.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的导航菜单设计</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的运用彩虹元素的网站设计欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/15/15489348.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的运用彩虹元素的网站设计欣赏</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="50个漂亮的手绘风格的网站欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/15/15486641.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">50个漂亮的手绘风格的网站欣赏</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>黑色是一个很强大的色彩。它可以很庄重和高雅，而且可以突出其他颜色。在网站设计中，我们经常会看到黑色的网站作品，而且大都非常引人注目。</p>
<p>黑色是几乎所有颜色的好搭档。它让其它颜色看起来更亮。即便是暗色系的颜色也会和黑色很有效。和白色搭配可以提供很棒的对比。下面是25个非常优秀的黑色调网站，设计的都非常棒，值得一看！</p>
<p><span id="more-919"></span></p>
<h3><a href="http://www.kineda.com/" class="target" target="_blank">Kineda</a></h3>
<p class="eimg"><a href="http://www.kineda.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092602bGr.gif"/></a></p>
<h3><a href="http://www.merixstudio.com" class="target" target="_blank">Merix Studio</a></h3>
<p class="eimg"><a href="http://www.merixstudio.com" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092603jpB.gif"/></a></p>
<h3><a href="http://thethingswemake.co.uk" class="target" target="_blank">The Things We Make</a></h3>
<p class="eimg"><a href="http://thethingswemake.co.uk" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/0926034GP.gif"/></a></p>
<h3><a href="http://www.switchmw.com/" class="target" target="_blank">Switch Mediaworks</a></h3>
<p class="eimg"><a href="http://www.switchmw.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092603FFW.gif"/></a></p>
<h3><a href="http://coda.co.za/" class="target" target="_blank">Coda</a></h3>
<p class="eimg"><a href="http://coda.co.za/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092604c6n.gif"/></a></p>
<h3><a href="http://www.lucashirata.com.br/" class="target" target="_blank">Lucas Hirata</a></h3>
<p class="eimg"><a href="http://www.lucashirata.com.br/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/0926044Gs.gif"/></a></p>
<h3><a href="http://www.visualboxsite.com" class="target" target="_blank">Visual Box</a></h3>
<p class="eimg"><a href="http://www.visualboxsite.com" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092604SW2.gif"/></a></p>
<h3><a href="http://versionsapp.com/" class="target" target="_blank">Versions</a></h3>
<p class="eimg"><a href="http://versionsapp.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/0926047zd.gif"/></a></p>
<h3><a href="http://www.ianwharton.com/" class="target" target="_blank">Ian Wharton</a></h3>
<p class="eimg"><a href="http://www.ianwharton.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092605Rti.gif"/></a></p>
<h3><a href="http://www.mediaflex.com.au" class="target" target="_blank">Mediaflex</a></h3>
<p class="eimg"><a href="http://www.mediaflex.com.au" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/0926054gd.gif"/></a></p>
<h3><a href="http://www.kardoayoub.co.uk/" class="target" target="_blank">Kardo Ayoub</a></h3>
<p class="eimg"><a href="http://www.kardoayoub.co.uk/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/0926054gJ.gif"/></a></p>
<h3><a href="http://sawyerhollenshead.com/" class="target" target="_blank">Sawyer Hollenshead</a></h3>
<p class="eimg"><a href="http://sawyerhollenshead.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092605xdE.gif"/></a></p>
<h3><a href="http://inside.nile.ru/" class="target" target="_blank">Nile Inside</a></h3>
<p class="eimg"><a href="http://inside.nile.ru/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092605tnS.gif"/></a></p>
<h3><a href="http://www.cabedge.com/" class="target" target="_blank">Cabedge</a></h3>
<p class="eimg"><a href="http://www.cabedge.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092606yTN.gif"/></a></p>
<h3><a href="http://www.takethewalk.net" class="target" target="_blank">Take the Walk</a></h3>
<p class="eimg"><a href="http://www.takethewalk.net" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092606OmQ.gif"/></a></p>
<h3><a href="http://1md.be/" class="target" target="_blank">1MD</a></h3>
<p class="eimg"><a href="http://1md.be/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092606ipf.gif"/></a></p>
<h3><a href="http://quommunication.com/" class="target" target="_blank">Quommunication</a></h3>
<p class="eimg"><a href="http://quommunication.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092606VBS.gif"/></a></p>
<h3><a href="http://www.netdreams.co.uk/" class="target" target="_blank">Internet Dreams</a></h3>
<p class="eimg"><a href="http://www.netdreams.co.uk/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092607714.gif"/></a></p>
<h3><a href="http://www.kin3tico.com" class="target" target="_blank">Kinetic Kreations</a></h3>
<p class="eimg"><a href="http://www.kin3tico.com" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092607kP2.gif"/></a></p>
<h3><a href="http://anderbose.com/" class="target" target="_blank">Anderbose</a></h3>
<p class="eimg"><a href="http://anderbose.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/0926070YR.gif"/></a></p>
<h3><a href="http://mikeprecious.com/" class="target" target="_blank">Mike Precious</a></h3>
<p class="eimg"><a href="http://mikeprecious.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092607Ntt.gif"/></a></p>
<h3><a href="http://www.jefffinley.org/" class="target" target="_blank">Jef Finley</a></h3>
<p class="eimg"><a href="http://www.jefffinley.org/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092608X0c.gif"/></a></p>
<h3><a href="http://www.hangardoor.com/" class="target" target="_blank">Hangar Door</a></h3>
<p class="eimg"><a href="http://www.hangardoor.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092608MQh.gif"/></a></p>
<h3><a href="http://www.estebanmunoz.com/" class="target" target="_blank">Esteban Muñoz</a></h3>
<p class="eimg"><a href="http://www.estebanmunoz.com/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/0926083QE.gif"/></a></p>
<h3><a href="http://www.piraja.no/" class="target" target="_blank">Ole Martin Kristiansen</a></h3>
<p class="eimg"><a href="http://www.piraja.no/" class="target" target="_blank"><img alt="25个非常优秀的黑色调网站" src="http://www.kekaku.com/uploads/images/2012/02/092608iMD.gif"/></a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="法國設計師們的配色魔法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fcolors-of-french-designers&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/15/22888432.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">法國設計師們的配色魔法 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="藍+白+紅 (+黃) = 史上超威配色" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fbluewhitered&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/08/12/22452350.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">藍+白+紅 (+黃) = 史上超威配色 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的导航菜单设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F978&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/20/15732285.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的导航菜单设计</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="25个优秀的运用彩虹元素的网站设计欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F947&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/15/15489348.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">25个优秀的运用彩虹元素的网站设计欣赏</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="50个漂亮的手绘风格的网站欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F946&from=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F919">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2012/02/15/15486641.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">50个漂亮的手绘风格的网站欣赏</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/webdesign/919/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20+免费的电子产品设计相关素材（PSD格式）</title>
		<link>http://www.kekaku.com/resource/917</link>
		<comments>http://www.kekaku.com/resource/917#comments</comments>
		<pubDate>Fri, 10 Feb 2012 09:32:29 +0000</pubDate>
		<dc:creator>直觉</dc:creator>
				<category><![CDATA[工具资源]]></category>
		<category><![CDATA[ICON]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[免费资源]]></category>
		<category><![CDATA[设计素材]]></category>
		<category><![CDATA[设计资源]]></category>

		<guid isPermaLink="false">http://www.kekaku.com/?p=917</guid>
		<description><![CDATA[新年上班这么久了，第一个双休日终于来了。搜集了20多个电子产品设计相关的PSD格式素材，而且这些都是可以免费下载的，包括苹果系列产品以及摩托、三星、sony等的PSP、平板、还有黑莓等等。 猛击素材预览图片可以直达下载页面哦 Apple iPad 2: PSD + PNG + ICO Headphones: The .PSD Airport Express -PSD Included- AirPort Extreme PSD File Samsung Galaxy Tab P1000 .PSD MacBook Pro Aluminum PSD LG Plasma TV iPad PSD Samsung Monitor .PSD file Motorola Xoom Tablet .PSD iMac .pds file Kindle .psd HP Deskjet D1560 iPod PSD Dual Set [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Mathieu White UI 作品欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fmathieu-white-ui&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/02/8456588.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Mathieu White UI 作品欣赏 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="12個常用的icon搜索站點" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Ficon-search&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/14/9134850.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">12個常用的icon搜索站點 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="Futurico--一个免费的用户界面设计素材包" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F285%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/11/12198390.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Futurico--一个免费的用户界面设计素材包</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="30个免费的UI设计资源下载(PSD格式)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F276%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/14/12314720.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">30个免费的UI设计资源下载(PSD格式)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="Twitter GUI设计包免费下载(PSD格式)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F179%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/24/9787959.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Twitter GUI设计包免费下载(PSD格式)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>新年上班这么久了，第一个双休日终于来了。搜集了20多个电子产品设计相关的PSD格式素材，而且这些都是可以免费下载的，包括苹果系列产品以及摩托、三星、sony等的PSP、平板、还有黑莓等等。</p>
<p>猛击素材预览图片可以直达下载页面哦</p>
<h3>Apple iPad 2: PSD + PNG + ICO</h3>
<p><span id="more-917"></span></p>
<p class="eimg"><a target="_blank" href="http://davinci1993.deviantart.com/art/Apple-iPad-2-PSD-PNG-ICO-ICNS-199066733?"><img height="434" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/160.jpg" title="1" class="aligncenter size-full wp-image-76596"/></a></p>
<h3>Headphones: The .PSD</h3>
<p class="eimg"><a target="_blank" href="http://ridikul.deviantart.com/art/Headphones-The-PSD-80802995"><img height="300" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/248.jpg" title="2" class="aligncenter size-full wp-image-76597"/></a></p>
<h3>Airport Express -PSD Included-</h3>
<p class="eimg"><a target="_blank" href="http://ddrdark.deviantart.com/art/Airport-Express-PSD-Included-107242403"><img height="501" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/320.jpg" title="3" class="aligncenter size-full wp-image-76598"/></a></p>
<h3>AirPort Extreme PSD File</h3>
<p class="eimg"><a target="_blank" href="http://omercetin.deviantart.com/art/AirPort-Extreme-PSD-File-153937340"><img height="296" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/413.jpg" title="4" class="aligncenter size-full wp-image-76599"/></a></p>
<h3>Samsung Galaxy Tab P1000 .PSD</h3>
<p class="eimg"><a target="_blank" href="http://zandog.deviantart.com/art/Samsung-Galaxy-Tab-P1000-PSD-180537736"><img height="570" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/511.jpg" title="5" class="aligncenter size-full wp-image-76600"/></a></p>
<h3>MacBook Pro Aluminum PSD</h3>
<p class="eimg"><a target="_blank" href="http://evanren.deviantart.com/art/MacBook-Pro-Aluminum-PSD-137948025"><img height="386" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/611.jpg" title="6" class="aligncenter size-full wp-image-76601"/></a></p>
<h3>LG Plasma TV</h3>
<p class="eimg"><a target="_blank" href="http://kgy-graphic.deviantart.com/art/LG-Plasma-TV-107652201"><img height="420" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/711.jpg" title="7" class="aligncenter size-full wp-image-76602"/></a></p>
<h3>iPad PSD</h3>
<p class="eimg"><a target="_blank" href="http://xfino.deviantart.com/art/iPad-PSD-191768367"><img height="768" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/811.jpg" title="8" class="aligncenter size-full wp-image-76603"/></a></p>
<h3>Samsung Monitor .PSD file</h3>
<p class="eimg"><a target="_blank" href="http://ptichurina.deviantart.com/art/Samsung-Monitor-PSD-file-107965475"><img height="499" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/911.jpg" title="9" class="aligncenter size-full wp-image-76604"/></a></p>
<h3>Motorola Xoom Tablet .PSD</h3>
<p class="eimg"><a target="_blank" href="http://zandog.deviantart.com/art/Motorola-Xoom-Tablet-PSD-196648486"><img height="455" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1012.jpg" title="10" class="aligncenter size-full wp-image-76605"/></a></p>
<h3>iMac .pds file</h3>
<p class="eimg"><a target="_blank" href="http://nemed.deviantart.com/art/iMac-pds-file-150147991"><img height="300" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1116.jpg" title="11" class="aligncenter  wp-image-76606"/></a></p>
<h3>Kindle .psd</h3>
<p class="eimg"><a target="_blank" href="http://el-chucklebuck.deviantart.com/art/Kindle-psd-189736385"><img height="424" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1214.jpg" title="12" class="aligncenter size-full wp-image-76607"/></a></p>
<h3>HP Deskjet D1560</h3>
<p class="eimg"><a target="_blank" href="http://paundpro.deviantart.com/art/HP-Deskjet-D1560-137249993"><img height="392" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1312.jpg" title="13" class="aligncenter size-full wp-image-76608"/></a></p>
<h3>iPod PSD Dual Set</h3>
<p class="eimg"><a target="_blank" href="http://xfino.deviantart.com/art/iPod-PSD-Dual-Set-203433403"><img height="449" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1412.jpg" title="14" class="aligncenter size-full wp-image-76609"/></a></p>
<h3>XBOX 360</h3>
<p class="eimg"><a target="_blank" href="http://bobbyperux.deviantart.com/art/XBOX-360-101060581"><img height="503" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1512.jpg" title="15" class="aligncenter size-full wp-image-76610"/></a></p>
<h3>HTC Aurora Concept</h3>
<p class="eimg"><a target="_blank" href="http://davinci1993.deviantart.com/art/HTC-Aurora-Concept-191740808"><img height="871" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1612.jpg" title="16" class="aligncenter size-full wp-image-76611"/></a></p>
<h3>HTC HD2 Smartphone vector</h3>
<p class="eimg"><a target="_blank" href="http://delightgraphic.deviantart.com/art/HTC-HD2-Smartphone-vector-183186532"><img height="467" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1712.jpg" title="17" class="aligncenter size-full wp-image-76612"/></a></p>
<h3>Blackberry Bold Finished</h3>
<p class="eimg"><a target="_blank" href="http://justflikwalk.deviantart.com/art/Blackberry-Bold-Finished-92909828"><img height="338" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1812.jpg" title="18" class="aligncenter size-full wp-image-76613"/></a></p>
<h3>iPhone 4 PSD : HD</h3>
<p class="eimg"><a target="_blank" href="http://reddevilsx.deviantart.com/art/iPhone-4-PSD-HD-176629139"><img height="392" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/1911.jpg" title="19" class="aligncenter size-full wp-image-76614"/></a></p>
<h3>Apple iPod Touch 4 PSD</h3>
<p class="eimg"><a target="_blank" href="http://reddevilsx.deviantart.com/art/Apple-iPod-Touch-4-PSD-178993731?"><img height="371" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/2011.jpg" title="20" class="aligncenter size-full wp-image-76615"/></a></p>
<h3>Sony Ericsson Xperia X10</h3>
<p class="eimg"><a target="_blank" href="http://bharathp666.deviantart.com/art/Sony-Ericsson-Xperia-X10-188805821"><img height="315" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/2115.jpg" title="21" class="aligncenter size-full wp-image-76616"/></a></p>
<h3>Nikanon PSD</h3>
<p class="eimg"><a target="_blank" href="http://marazmuser.deviantart.com/art/Nikanon-PSD-179580342"><img height="393" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/2211.jpg" title="22" class="aligncenter size-full wp-image-76617"/></a></p>
<h3>Digital Camera</h3>
<p class="eimg"><a target="_blank" href="http://muratyil.deviantart.com/art/Digital-Camera-168093408"><img height="515" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/2310.jpg" title="23" class="aligncenter size-full wp-image-76618"/></a></p>
<h3>HTC Nexus One: PSD + PNG + ICO</h3>
<p class="eimg"><a target="_blank" href="http://davinci1993.deviantart.com/art/HTC-Nexus-One-PSD-PNG-ICO-206974714"><img height="533" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/249.jpg" title="24" class="aligncenter size-full wp-image-76619"/></a></p>
<h3>Imac 3D</h3>
<p class="eimg"><a target="_blank" href="http://hellishere-12.deviantart.com/art/Imac-3D-206966498"><img height="529" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/258.jpg" title="25" class="aligncenter size-full wp-image-76620"/></a></p>
<h3>Sony PSP psd</h3>
<p class="eimg"><a target="_blank" href="http://digitalphenom.deviantart.com/art/Sony-PSP-psd-111701250"><img height="348" width="600" alt="" src="http://cdn.designmodo.com/wp-content/uploads/2011/08/268.jpg" title="26" class="aligncenter size-full wp-image-76621"/></a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1" color="#555555" style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Mathieu White UI 作品欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Fmathieu-white-ui&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/02/8456588.png" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Mathieu White UI 作品欣赏 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="12個常用的icon搜索站點" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.mydesy.com%2Ficon-search&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/14/9134850.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">12個常用的icon搜索站點 (@mydesy)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="Futurico--一个免费的用户界面设计素材包" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fwebdesign%2F285%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/11/12198390.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Futurico--一个免费的用户界面设计素材包</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="30个免费的UI设计资源下载(PSD格式)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F276%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/12/14/12314720.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">30个免费的UI设计资源下载(PSD格式)</font>
                    </a>
                </td>
                <td width="110" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #cccccc !important;">
                    <a target="_blank" title="Twitter GUI设计包免费下载(PSD格式)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F179%2F&from=http%3A%2F%2Fwww.kekaku.com%2Fresource%2F917">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #cccccc !important; width: 104px !important; height: 104px !important;" src="http://static.wumii.com/site_images/2011/10/24/9787959.jpg" width="104px" height="104px" /><br />
                        <font size="-1" color="#666" style="display: block !important; line-height: 15px !important; width: 110px !important; font: 12px/15px arial !important; height: 75px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Twitter GUI设计包免费下载(PSD格式)</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.kekaku.com/resource/917/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 35.682 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-23 03:26:36 -->

