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

<channel>
	<title>四眼天兔工作室 &#187; 天兔贴士</title>
	<atom:link href="http://www.4ebstudio.com/category/tips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.4ebstudio.com</link>
	<description>网站建设｜Joomla｜Wordpress｜PSD转HTML｜VI｜平面广告</description>
	<lastBuildDate>Tue, 29 Jun 2010 09:18:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS&#30340;&#36328;&#27983;&#35272;&#22120;&#20195;&#30721;&#20934;&#21017;</title>
		<link>http://www.4ebstudio.com/the-principles-of-cross-browser-css-coding.html</link>
		<comments>http://www.4ebstudio.com/the-principles-of-cross-browser-css-coding.html#comments</comments>
		<pubDate>Fri, 11 Jun 2010 02:36:02 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[跨栏浏览器]]></category>

		<guid isPermaLink="false">http://www.4ebstudio.com/?p=1512</guid>
		<description><![CDATA[开发人员们总在讨论最令人满意的网页设计莫过于在任何浏览器都能显示出相同的直观且漂亮的效果。不幸的事，大家都一致认为实现这样的目标几乎是不可能的。不过，近乎于精确的跨浏览器体验还是可以实现的。作为开发人员，我们的目标不应该仅仅局限于保证网页能够在每个浏览器都能够正常运作，而应该是如何保证跨浏览器运作所需的代码最小化，及其所能带来的日后网站维护及运作的顺畅化。
本文将向大家介绍一些非常重要的CSS规则和技巧，帮助开发人员实现以尽量少的代码来实现多浏览器的一致性。


了解CSS的盒模型
这是你要实现使用最少的hack来实现跨浏览器布局一致性首先要了解的事情。幸运的是，盒模型并不是很难掌握的，他在所有浏览器上的工作基本是一致的，除了个别的IE版本。
盒模型是用来计算以下事项的：

块状元素间的距离是多少
边框（borders）和/或空白边（margins）是否重叠（overlap）或叠加（collapse）
盒子的大小
在某种程度上，盒子相对于其他页面内容的位置

盒模型遵循以下规则：

块状元素基本都是矩形
块状元素的计算包括宽（width），高（height），填充（padding），边框（border）以及空白边（margins）
如果没有定义高，块状元素的高度将和其内部内容加上填充的高度之和一致（除非使用了浮动，见下）
如果没有定义宽，非浮动框将延展到其父元素宽度减去填充的位置（后面会提到）

处理盒模型元素一定要注意的事项：

如果一个盒子的宽度设置为“100%”，那么就不要再设置任何空白边（margins）﻿，填充（padding）﻿和边框（border）﻿，否则会溢出其父元素
垂直比邻的空白边可能会导致一些复杂的叠加问题从而产生布局问题
相对定位或绝对定位的元素会有不同的表现形式，本文暂不涉及此部分内容


Firefox的Firebug中显示的盒模型样式
了解Block和Inline的区别
下图描述了块级元素（block）和行内元素（inline）的区别：

这里有一些基本的规则可以区分块状元素（block）和行内元素（inline）﻿：

在默认情况下，块状元素会自动水平延展填充其父元素，因此没有必要设置宽度为“100%”
在默认情况下，块状元素开始于其父元素的最左侧边缘，以及任何在其之前元素的下方（除非设置了浮动或者定位）
行内元素会忽略宽度和高度设置
行内元素会随着文字进行浮动，并且会根据排版属性进行调整，如white-space， font-size， 以及letter-spacing
行内元素可以使用vertical-align属性进行排列，但是块状元素不行
行内元素会在下方自动生成一些空间来容纳低于水平线的文字元素（如字母“g”）
如果行内元素设置了浮动就变成了块状元素

了解浮动和清理
对于多栏布局来说，使用浮动设置是最好的解决方案。
一个进行了浮动设置的元素既可以向左浮动也可以向右浮动，直到他们达到其父元素或者其浮动元素的边缘。在浮动元素下面的非浮动元素，行内元素将沿着浮动元素的边界向另一方向浮动。

在进行元素的浮动或者清理设置的时候要注意以下几点：

浮动元素是和其他块级、非浮动元素流体中区分出来的。换句话说就是，如果你将一个盒子向左侧浮动，那么尾随其后的、没有进行过浮动设置的段落（块级）将会在一个堆栈中出现在其后面，并且段落中的文字（行内级）将会围绕浮动元素进行排列。
要想使内容围绕浮动元素排列，其必须是行内元素，否则将会和浮动元素朝同一方向进行浮动
如果一个浮动元素没有设置宽度，那么和其内容宽度保持一致，因此，最好给浮动元素都设置一个宽度
如果一个浮动元素内还含有子元素，那么它将被“叠加（collapse）”，这就需要进行修复
被“清理（cleared）”过的元素将会避免围绕其前面的浮动内容进行排列
一个既被设置过清理也被设置过浮动的元素，只能清理其前面的元素，而不是后面的

了解IE最常见的问题
如果你要用IE进行开发，或者要检查IE的布局情况，那么你就应该在开始工作之前充分了解IE（通常是IE6和IE7）会遇到的各种问题：

如果使用了浮动设置，IE6将会出现内容消失或者文字重复的问题
在相同方向的浮动元素上，IE6会使空白边（margins）﻿产生双倍大小；通常的解决方案是设置“display: inline”
在IE6和IE7中，如果元素没有进行布局设置（比如宽高设置等），将会产生一系列的问题，包括不显示背景，空白边叠加不正确等等
IE6不支持最小（min-）和最大（max-）的CSS属性，比如min-height，或max-width
IE6不支持背景图片的固定定位
IE6 和IE7不支持很多显示属性（display）的值（如：inline-table，table-cell，table-row，等）
你不能在IE6的任何元素中使用“:hover”伪类，除了&#60;a&#62;

除了以上还有很多很多的bug，但是这些都是在进行跨浏览器体验中最常见也最重要的。希望广大开发人员能够对以上提到的几点进行更多深入的研究，以便能够更精确的掌握问题所在及如何处理。
一些可能永远都不会一样的东西
正如已经提到的，想在每种浏览器中都得到完全相同的视觉和功能体验是不太可能的。你可能能将元素的像素精确度做到最大化，但是有些事情不是开人人员可以掌控的。
表单外观通常都是不一样的
请看以下这张图，5个不同浏览器中&#60;select&#62;元素的样式是不一样的：

&#60;select&#62;元素在不同的浏览器中表现是不一样的
一些表单元素的外观是可以控制的。比如客户要求表单的提交按钮必须在每个浏览器中都一样，那么你可以使用图片来代替默认的&#60;input type="submit"&#62;
但是对于单选按钮（radio），多文本输入框（textare），以及之前提到的选择框&#60;select&#62;元素，除非使用JavaScript 扩展，否则无法实现样式统一。
文字排版通常也不一样
另一个不能期望通过像素化来统一外观的问题就是字体，特别是正文字体。现在已经有很多方法可以解决标题字体，比如最近出来的Google Font API。但是不同浏览器的正文字体显示通常还是会有区别的。
对于文字排版，我们面对的不仅仅是不同机制下字体的可用性问题，而是即使在两个不同机制下字体均可使用，但是他们的外观表象确会有所不同。例如，Windows ClearType，IE7可用，但是IE6不可用，从而导致相同字体在不同浏览器上显示效果不同。
下图是在IE6和IE7上显示的一段 A List Apart 网站页面截屏。在IE6中，标题字体的锯齿状比正文字体对比IE7来说要明显很多：

List Apart 网页排版效果IE6和IE7对比
使用CSS重置（CSS Reset）
每次使用CSS重置的时候，控制跨浏览器体验的能力都会大大提高。可以说大多数CSS重置都会增加一些不需要的代码，但是你可以去掉那些你认为不必要的选择器（比如，你可能在页面中不计划使用&#60;blockquote&#62;标签，那么你就可以去掉它）
通常在没有使用CSS重置的情况下，和 margin- 以及 padding- 相关的设置都会使不同浏览器之间产生或多或少的差异。重置将会使不同浏览器的所有元素的值都从0开始，这样你可以更好的控制间距和对齐。

Firefox开发人员工具栏上显示的CSS重置代码
除了跨浏览器体验外，重置可以减少你使用hack的量，你的代码将会变得更为简洁，并且更易维护。推荐使用Eric Meyer的CSS reset。
使用SitePoint提供的CSS参考表单
如果你在跨浏览器测试中使用CSS属性遇到问题，你可以参考SitePoint CSS Reference。该参考表单包括一些实用的不同浏览器对CSS属性支持的比较。
SitePoint的CSS属性值比对表
[原文链接]
]]></description>
			<content:encoded><![CDATA[<p>开发人员们总在讨论最令人满意的网页设计莫过于在任何浏览器都能显示出相同的直观且漂亮的效果。不幸的事，大家都一致认为实现这样的目标几乎是不可能的。不过，<strong>近乎于精确的跨浏览器体验还是可以实现的</strong>。作为开发人员，我们的目标不应该仅仅局限于保证网页能够在每个浏览器都能够正常运作，而应该是如何保证跨浏览器运作所需的代码最小化，及其所能带来的日后网站维护及运作的顺畅化。</p>
<p>本文将向大家介绍一些<strong>非常重要的CSS规则和技巧</strong>，帮助开发人员实现以尽量少的代码来实现多浏览器的一致性。</p>
<p><img title="browsers-css.jpg" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/browsers-css.jpg" border="0" alt="browsers-css.jpg" width="500" height="500" /></p>
<p><span id="more-1512"></span></p>
<h3>了解CSS的盒模型</h3>
<p>这是你要实现<strong>使用最少的hack来实现跨浏览器布局一致性</strong>首先要了解的事情。幸运的是，盒模型并不是很难掌握的，他在所有浏览器上的工作基本是一致的，除了个别的IE版本。</p>
<p>盒模型是用来计算以下事项的：</p>
<ul>
<li>块状元素间的距离是多少</li>
<li>边框（borders）和/或空白边（margins）是否重叠（overlap）或叠加（collapse）</li>
<li>盒子的大小</li>
<li>在某种程度上，盒子相对于其他页面内容的位置</li>
</ul>
<p>盒模型遵循以下规则：</p>
<ul>
<li>块状元素基本都是矩形</li>
<li>块状元素的计算包括宽（width），高（height），填充（padding），边框（border）以及空白边（margins）</li>
<li>如果没有定义高，块状元素的高度将和其内部内容加上填充的高度之和一致（除非使用了浮动，见下）</li>
<li>如果没有定义宽，非浮动框将延展到其父元素宽度减去填充的位置（后面会提到）</li>
</ul>
<p>处理盒模型元素一定要注意的事项：</p>
<ul>
<li>如果一个盒子的宽度设置为“100%”，那么就不要再设置任何空白边（margins）﻿，填充（padding）﻿和边框（border）﻿，否则会溢出其父元素</li>
<li>垂直比邻的空白边可能会导致一些复杂的叠加问题从而产生布局问题</li>
<li>相对定位或绝对定位的元素会有不同的表现形式，本文暂不涉及此部分内容</li>
</ul>
<p><img title="css-box-model.gif" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/css-box-model.gif" border="0" alt="css-box-model.gif" width="500" height="270" /><br />
<strong><em>Firefox的Firebug中显示的盒模型样式</em></strong></p>
<h3>了解Block和Inline的区别</h3>
<p>下图描述了块级元素（block）和行内元素（inline）的区别：</p>
<p><img title="block-inline.png" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/block-inline.png" border="0" alt="block-inline.png" width="500" height="500" /></p>
<p>这里有一些基本的规则可以区分块状元素（block）和行内元素（inline）﻿：</p>
<ul>
<li>在默认情况下，块状元素会自动水平延展填充其父元素，因此没有必要设置宽度为“100%”</li>
<li>在默认情况下，块状元素开始于其父元素的最左侧边缘，以及任何在其之前元素的下方（除非设置了浮动或者定位）</li>
<li>行内元素会忽略宽度和高度设置</li>
<li>行内元素会随着文字进行浮动，并且会根据排版属性进行调整，如<code>white-space</code>， <code>font-size，</code> 以及<code>letter-spacing</code></li>
<li>行内元素可以使用<code>vertical-align属性进行排列，但是块状元素不行</code></li>
<li>行内元素会在下方自动生成一些空间来容纳低于水平线的文字元素（如字母“g”）</li>
<li>如果行内元素设置了浮动就变成了块状元素</li>
</ul>
<h3>了解浮动和清理</h3>
<p>对于多栏布局来说，使用浮动设置是最好的解决方案。</p>
<p>一个进行了浮动设置的元素既可以向左浮动也可以向右浮动，直到他们达到其父元素或者其浮动元素的边缘。在浮动元素下面的非浮动元素，行内元素将沿着浮动元素的边界向另一方向浮动。</p>
<p><img title="float-css.png" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/float-css.png" border="0" alt="float-css.png" width="500" height="439" /></p>
<p>在进行元素的浮动或者清理设置的时候要注意以下几点：</p>
<ul>
<li>浮动元素是和其他块级、非浮动元素流体中区分出来的。换句话说就是，如果你将一个盒子向左侧浮动，那么尾随其后的、没有进行过浮动设置的段落（块级）将会在一个堆栈中出现在其后面，并且段落中的文字（行内级）将会围绕浮动元素进行排列。</li>
<li>要想使内容围绕浮动元素排列，其必须是行内元素，否则将会和浮动元素朝同一方向进行浮动</li>
<li>如果一个浮动元素没有设置宽度，那么和其内容宽度保持一致，因此，最好给浮动元素都设置一个宽度</li>
<li>如果一个浮动元素内还含有子元素，那么它将被“叠加（collapse）”，这就需要进行修复</li>
<li>被“清理（cleared）”过的元素将会避免围绕其前面的浮动内容进行排列</li>
<li>一个既被设置过清理也被设置过浮动的元素，只能清理其前面的元素，而不是后面的</li>
</ul>
<h3>了解IE最常见的问题</h3>
<p>如果你要用IE进行开发，或者要检查IE的布局情况，那么你就应该在开始工作之前充分了解IE（通常是IE6和IE7）会遇到的各种问题：</p>
<ul>
<li>如果使用了浮动设置，IE6将会出现内容消失或者文字重复的问题</li>
<li>在相同方向的浮动元素上，IE6会使空白边（margins）﻿产生双倍大小；通常的解决方案是设置“<code>display: inline”</code></li>
<li>在IE6和IE7中，如果元素没有进行布局设置（比如宽高设置等），将会产生一系列的问题，包括不显示背景，空白边叠加不正确等等</li>
<li>IE6不支持最小（min-）和最大（max-）的CSS属性，比如<code>min-height</code>，或<code>max-width</code></li>
<li>IE6不支持背景图片的固定定位</li>
<li>IE6 和IE7不支持很多显示属性（display）的值（如：<code>inline-table</code>，<code>table-cell<span style="font-family: 'Microsoft YaHei';">，</span></code><code>table-row</code>，等）</li>
<li>你不能在IE6的任何元素中使用“:hover”伪类，除了<code>&lt;a&gt;</code></li>
</ul>
<p>除了以上还有很多很多的bug，但是这些都是在进行跨浏览器体验中最常见也最重要的。希望广大开发人员能够对以上提到的几点进行更多深入的研究，以便能够更精确的掌握问题所在及如何处理。</p>
<h3>一些可能永远都不会一样的东西</h3>
<p>正如已经提到的，想在每种浏览器中都得到完全相同的视觉和功能体验是不太可能的。你可能能将元素的像素精确度做到最大化，但是<strong>有些事情不是开人人员可以掌控的</strong>。</p>
<h4>表单外观通常都是不一样的</h4>
<p>请看以下这张图，5个不同浏览器中<code>&lt;select&gt;元素的样式是不一样的：</code></p>
<p><img title="forms-browsers.jpg" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/forms-browsers.jpg" border="0" alt="forms-browsers.jpg" width="500" height="331" /><br />
<strong><em><code>&lt;select&gt;元素在不同的浏览器中表现是不一样的</code></em></strong></p>
<p>一些表单元素的外观是可以控制的。比如客户要求表单的提交按钮必须在每个浏览器中都一样，那么你可以使用图片来代替默认的<code>&lt;input type="submit"&gt;</code></p>
<p>但是对于单选按钮（radio），多文本输入框（textare），以及之前提到的选择框&lt;select&gt;元素，除非使用<a style="text-decoration: none;" href="http://widowmaker.kiev.ua/checkbox/">JavaScript 扩展</a>，否则无法实现样式统一。</p>
<h4>文字排版通常也不一样</h4>
<p>另一个不能期望通过像素化来统一外观的问题就是字体，特别是正文字体。现在已经有很多方法可以解决标题字体，比如最近出来的<a style="text-decoration: none;" href="http://code.google.com/apis/webfonts/">Google Font API</a>。但是不同浏览器的正文字体显示通常还是会有区别的。</p>
<p>对于文字排版，我们面对的不仅仅是不同机制下字体的可用性问题，而是即使在两个不同机制下字体均可使用，但是他们的外观表象确会有所不同。例如，<a style="text-decoration: none;" href="http://www.microsoft.com/typography/cleartype/tuner/step1.aspx">Windows ClearType</a>，IE7可用，但是IE6不可用，从而导致相同字体在不同浏览器上显示效果不同。</p>
<p>下图是在IE6和IE7上显示的一段 <a style="text-decoration: none;" href="http://www.alistapart.com/">A List Apart</a> 网站页面截屏。在IE6中，标题字体的锯齿状比正文字体对比IE7来说要明显很多：</p>
<p><img title="cleartype-ie.jpg" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/cleartype-ie.jpg" border="0" alt="cleartype-ie.jpg" width="500" height="381" /><br />
<strong><em>List Apart 网页排版效果IE6和IE7对比</em></strong></p>
<h3>使用CSS重置（CSS Reset）</h3>
<p>每次使用CSS重置的时候，控制跨浏览器体验的能力都会大大提高。可以说大多数CSS重置都会增加一些不需要的代码，但是你可以去掉那些你认为不必要的选择器（比如，你可能在页面中不计划使用<code style="font-family: 'Courier New', monospace; white-space: normal;">&lt;blockquote&gt;</code>标签，那么你就可以去掉它）</p>
<p>通常在没有使用CSS重置的情况下，和 margin- 以及 padding- 相关的设置都会使不同浏览器之间产生或多或少的差异。重置将会使不同浏览器的所有元素的值都从0开始，这样你可以更好的控制间距和对齐。</p>
<p><img title="reset-wd.jpg" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/reset-wd.jpg" border="0" alt="reset-wd.jpg" width="500" height="319" /><br />
<strong><em>Firefox开发人员工具栏上显示的CSS重置代码</em></strong></p>
<p>除了跨浏览器体验外，重置可以减少你使用hack的量，你的代码将会变得更为简洁，并且更易维护。推荐使用Eric Meyer的<a style="text-decoration: none;" href="http://meyerweb.com/eric/tools/css/reset/">CSS reset</a>。</p>
<h3>使用SitePoint提供的CSS参考表单</h3>
<p>如果你在跨浏览器测试中使用CSS属性遇到问题，你可以参考<a style="text-decoration: none;" href="http://reference.sitepoint.com/css">SitePoint CSS Reference</a>。该参考表单包括一些实用的不同浏览器对CSS属性支持的比较。<img title="sitepoint-chart.jpg" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/sitepoint-chart.jpg" border="0" alt="sitepoint-chart.jpg" width="500" height="127" /></p>
<p><strong><em>SitePoint的CSS属性值比对表</em></strong></p>
<p>[<a href="http://www.smashingmagazine.com/2010/06/07/the-principles-of-cross-browser-css-coding/" target="_blank">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/the-principles-of-cross-browser-css-coding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>40款免费的纹理包</title>
		<link>http://www.4ebstudio.com/40-fresh-free-texture-packs-from-2010.html</link>
		<comments>http://www.4ebstudio.com/40-fresh-free-texture-packs-from-2010.html#comments</comments>
		<pubDate>Mon, 07 Jun 2010 01:55:18 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[免费资源]]></category>
		<category><![CDATA[图形图像]]></category>
		<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[素材]]></category>
		<category><![CDATA[纹理]]></category>

		<guid isPermaLink="false">http://www.4ebstudio.com/?p=1507</guid>
		<description><![CDATA[
Aqueous Sun Texture Pack – Volume I
来源：mediamilitia.com

Aqueous Sun Texture Pack – Volume II
来源：mediamilitia.com

Aqueous Sun Texture Pack Rust v.01
来源：mediamilitia.com

Massive Grunge Texture Pack
来源：lostandtaken.com

Textures 8
来源：night-fate-stock.deviantart.com

Soft Glow Bokeh Pack
来源：regularjane.deviantart.com

Folds: Texture Pack
来源：designinstruct.com

Designer Texture Pack #1
来源：texturezine.com

Pack 04
来源：addictedsp8.deviantart.com

Texture Pack 4 – Watercolours
来源：blog.echoenduring.com

Metal Texture Pack – 47 Free Images
来源：mediamilitia.com

Brick &#38; Stone: Texture Pack
来源：devisefunction.com

Grungy Cement: Texture Pack
来源：devisefunction.com

Texture set 12
来源：anamcr.deviantart.com

Lava Rock: Texture Pack
来源：designinstruct.com

Elemental Grunge Texture [...]]]></description>
			<content:encoded><![CDATA[<div class="newsItemDescription" style="line-height: 1.5em; color: #333333; padding-right: 2em; clear: both;">
<p><span style="font-size: 14px; font-weight: bold;"><a style="text-decoration: none;" href="http://mediamilitia.com/aqueous-sun-texture-pack-01-50-free-images/">Aqueous Sun Texture Pack – Volume I</a></span></p>
<p>来源：<a style="text-decoration: none;" href="http://mediamilitia.com/">mediamilitia.com</a></p>
<p><a style="text-decoration: none;" href="http://mediamilitia.com/aqueous-sun-texture-pack-01-50-free-images/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_1.jpg" alt="Fresh Textures 1 in 40 Fresh Free Texture Packs" width="540" height="270" /></a></p>
<h3><a style="text-decoration: none;" href="http://mediamilitia.com/aqueous-sun-texture-pack-02-50-free-images/">Aqueous Sun Texture Pack – Volume II</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://mediamilitia.com/">mediamilitia.com</a></p>
<p><a style="text-decoration: none;" href="http://mediamilitia.com/aqueous-sun-texture-pack-02-50-free-images/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_2.jpg" alt="Fresh Textures 2 in 40 Fresh Free Texture Packs" width="540" height="270" /></a></p>
<h3><span id="more-1507"></span><a style="text-decoration: none;" href="http://mediamilitia.com/aqueous-sun-presents-rust-v-01-28-free-textures/">Aqueous Sun Texture Pack Rust v.01</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://mediamilitia.com/">mediamilitia.com</a></p>
<p><a style="text-decoration: none;" href="http://mediamilitia.com/aqueous-sun-presents-rust-v-01-28-free-textures/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_3_2.jpg" alt="Fresh Textures 3 2 in 40 Fresh Free Texture Packs" width="540" height="270" /></a></p>
<h3><a style="text-decoration: none;" href="http://lostandtaken.com/blog/2010/3/15/massive-grunge-texture-pack-40-textures.html">Massive Grunge Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://lostandtaken.com/">lostandtaken.com</a></p>
<p><a style="text-decoration: none;" href="http://lostandtaken.com/blog/2010/3/15/massive-grunge-texture-pack-40-textures.html"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_4.jpg" alt="Fresh Textures 4 in 40 Fresh Free Texture Packs" width="540" height="306" /></a></p>
<h3><a style="text-decoration: none;" href="http://night-fate-stock.deviantart.com/art/textures-8-164922782?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=2">Textures 8</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://night-fate-stock.deviantart.com/">night-fate-stock.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://night-fate-stock.deviantart.com/art/textures-8-164922782?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=2"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_5.jpg" alt="Fresh Textures 5 in 40 Fresh Free Texture Packs" width="540" height="362" /></a></p>
<h3><a style="text-decoration: none;" href="http://regularjane.deviantart.com/art/Soft-Glow-Bokeh-Pack-162231438?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=16">Soft Glow Bokeh Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://regularjane.deviantart.com/">regularjane.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://regularjane.deviantart.com/art/Soft-Glow-Bokeh-Pack-162231438?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=16"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_6.jpg" alt="Fresh Textures 6 in 40 Fresh Free Texture Packs" width="500" height="500" /></a></p>
<h3><a style="text-decoration: none;" href="http://designinstruct.com/free-resources/textures/folds-texture-pack/">Folds: Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://designinstruct.com/">designinstruct.com</a></p>
<p><a style="text-decoration: none;" href="http://designinstruct.com/free-resources/textures/folds-texture-pack/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_7.jpg" alt="Fresh Textures 7 in 40 Fresh Free Texture Packs" width="540" height="505" /></a></p>
<h3><a style="text-decoration: none;" href="http://texturezine.com/news/designer-texture-pack-1.html">Designer Texture Pack #1</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://texturezine.com/">texturezine.com</a></p>
<p><a style="text-decoration: none;" href="http://texturezine.com/news/designer-texture-pack-1.html"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_8.jpg" alt="Fresh Textures 8 in 40 Fresh Free Texture Packs" width="540" height="360" /></a></p>
<h3><a style="text-decoration: none;" href="http://addictedsp8.deviantart.com/art/pack-04-162813443?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=118">Pack 04</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://addictedsp8.deviantart.com/">addictedsp8.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://addictedsp8.deviantart.com/art/pack-04-162813443?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=118"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_9.jpg" alt="Fresh Textures 9 in 40 Fresh Free Texture Packs" width="400" height="400" /></a></p>
<h3><a style="text-decoration: none;" href="http://blog.echoenduring.com/2010/01/05/freebie-texture-pack-4-watercolours/">Texture Pack 4 – Watercolours</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://blog.echoenduring.com/">blog.echoenduring.com</a></p>
<p><a style="text-decoration: none;" href="http://blog.echoenduring.com/2010/01/05/freebie-texture-pack-4-watercolours/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_10.jpg" alt="Fresh Textures 10 in 40 Fresh Free Texture Packs" width="500" height="500" /></a></p>
<h3><a style="text-decoration: none;" href="http://mediamilitia.com/metal-texture-pack-47-free-http://www.smashingmagazine.com/wp-content/uploads/2010/05/">Metal Texture Pack – 47 Free Images</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://mediamilitia.com/">mediamilitia.com</a></p>
<p><a style="text-decoration: none;" href="http://mediamilitia.com/metal-texture-pack-47-free-http://www.smashingmagazine.com/wp-content/uploads/2010/05/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_11.jpg" alt="Fresh Textures 11 in 40 Fresh Free Texture Packs" width="540" height="270" /></a></p>
<h3><a style="text-decoration: none;" href="http://devisefunction.com/2010/02/18/brick-stone-texture-pack/">Brick &amp; Stone: Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://devisefunction.com/">devisefunction.com</a></p>
<p><a style="text-decoration: none;" href="http://devisefunction.com/2010/02/18/brick-stone-texture-pack/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_12.jpg" alt="Fresh Textures 12 in 40 Fresh Free Texture Packs" width="540" height="177" /></a></p>
<h3><a style="text-decoration: none;" href="http://devisefunction.com/2010/02/25/grungy-cement-texture-pack/">Grungy Cement: Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://devisefunction.com/">devisefunction.com</a></p>
<p><a style="text-decoration: none;" href="http://devisefunction.com/2010/02/25/grungy-cement-texture-pack/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_13.jpg" alt="Fresh Textures 13 in 40 Fresh Free Texture Packs" width="540" height="177" /></a></p>
<h3><a style="text-decoration: none;" href="http://anamcr.deviantart.com/art/Texture-set-12-161799838?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=17">Texture set 12</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://anamcr.deviantart.com/">anamcr.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://anamcr.deviantart.com/art/Texture-set-12-161799838?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=17"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_14.jpg" alt="Fresh Textures 14 in 40 Fresh Free Texture Packs" width="350" height="450" /></a></p>
<h3><a style="text-decoration: none;" href="http://designinstruct.com/free-resources/textures/lava-rock-texture-pack/">Lava Rock: Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://designinstruct.com/">designinstruct.com</a></p>
<p><a style="text-decoration: none;" href="http://designinstruct.com/free-resources/textures/lava-rock-texture-pack/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_15.jpg" alt="Fresh Textures 15 in 40 Fresh Free Texture Packs" width="540" height="381" /></a></p>
<h3><a style="text-decoration: none;" href="http://shadowhousecreations.blogspot.com/2010/01/elemental-grunge-texture-pack.html">Elemental Grunge Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://shadowhousecreations.blogspot.com/">shadowhousecreations.blogspot.com</a></p>
<p><a style="text-decoration: none;" href="http://shadowhousecreations.blogspot.com/2010/01/elemental-grunge-texture-pack.html"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_16.jpg" alt="Fresh Textures 16 in 40 Fresh Free Texture Packs" width="391" height="500" /></a></p>
<h3><a style="text-decoration: none;" href="http://expose42.deviantart.com/art/The-Hungry-Saw-162259671?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=54">The Hungry Saw</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://expose42.deviantart.com/">expose42.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://expose42.deviantart.com/art/The-Hungry-Saw-162259671?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=54"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_17.jpg" alt="Fresh Textures 17 in 40 Fresh Free Texture Packs" width="300" height="400" /></a></p>
<h3><a style="text-decoration: none;" href="http://lostandtaken.com/blog/2010/1/26/8-re-stained-paper-textures.html">8 Re-Stained Paper Textures</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://lostandtaken.com/">lostandtaken.com</a></p>
<p><a style="text-decoration: none;" href="http://lostandtaken.com/blog/2010/1/26/8-re-stained-paper-textures.html"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_18-21.jpg" alt="Fresh Textures 18-21 in 40 Fresh Free Texture Packs" width="540" height="338" /></a></p>
<h3><a style="text-decoration: none;" href="http://kuschelirmel-stock.deviantart.com/art/Droplets-Texture-Pack-163337967?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=25">Droplets – Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://kuschelirmel-stock.deviantart.com/">kuschelirmel-stock.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://kuschelirmel-stock.deviantart.com/art/Droplets-Texture-Pack-163337967?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=25"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_19.jpg" alt="Fresh Textures 19 in 40 Fresh Free Texture Packs" width="400" height="800" /></a></p>
<h3><a style="text-decoration: none;" href="http://thinkdesignblog.com/free-textures-28-high-res-vintage-postal-textures.htm">28款古典邮政纹理</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://thinkdesignblog.com/">thinkdesignblog.com</a></p>
<p><a style="text-decoration: none;" href="http://thinkdesignblog.com/free-textures-28-high-res-vintage-postal-textures.htm"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_20.jpg" alt="Fresh Textures 20 in 40 Fresh Free Texture Packs" width="500" height="180" /></a></p>
<h3>独家免费：百万纹理包</h3>
<p>来源：<a style="text-decoration: none;" href="http://blog.echoenduring.com/">blog.echoenduring.com</a></p>
<p><a style="text-decoration: none;" href="http://blog.echoenduring.com/2010/02/11/exclusive-freebie-mega-textures-pack/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_21.jpg" alt="Fresh Textures 21 in 40 Fresh Free Texture Packs" width="500" height="500" /></a></p>
<h3><a style="text-decoration: none;" href="http://psd.tutsplus.com/freebies/texture/old-leather-textures/">旧皮革纹理</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://psd.tutsplus.com/">psd.tutsplus.com</a></p>
<p><a style="text-decoration: none;" href="http://psd.tutsplus.com/freebies/texture/old-leather-textures/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_22.jpg" alt="Fresh Textures 22 in 40 Fresh Free Texture Packs" width="540" height="540" /></a></p>
<h3><a style="text-decoration: none;" href="http://www.cocut.cn/graphics/3882-colored-dark-free-grunge-textures.html">5款暗色调免费Grunge Textures素材包</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://www.cocut.cn/">www.cocut.cn</a></p>
<p><a style="text-decoration: none;" href="http://www.cocut.cn/graphics/3882-colored-dark-free-grunge-textures.html"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_23.jpg" alt="Fresh Textures 23 in 40 Fresh Free Texture Packs" width="468" height="204" /></a></p>
<h3><a style="text-decoration: none;" href="http://www.myinkblog.com/2010/02/14/7-high-resolution-stone-textures/">7款高分辨率的Stone Textures</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://www.myinkblog.com/">www.myinkblog.com</a></p>
<p><a style="text-decoration: none;" href="http://www.myinkblog.com/2010/02/14/7-high-resolution-stone-textures/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_24.jpg" alt="Fresh Textures 24 in 40 Fresh Free Texture Packs" width="540" height="312" /></a></p>
<h3><a style="text-decoration: none;" href="http://thinkdesignblog.com/freebies-57-high-res-classic-car-textures.htm">57款经典汽车纹理</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://thinkdesignblog.com/">thinkdesignblog.com</a></p>
<p><a style="text-decoration: none;" href="http://thinkdesignblog.com/freebies-57-high-res-classic-car-textures.htm"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_25.jpg" alt="Fresh Textures 25 in 40 Fresh Free Texture Packs" width="500" height="180" /></a></p>
<h3><a style="text-decoration: none;" href="http://www.dawghousedesignstudio.com/archives/2010/free-weekly-hi-res-texture-pack-burnt-brown-paper/">Burnt Brown Paper</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://www.dawghousedesignstudio.com/">www.dawghousedesignstudio.com</a></p>
<p><a style="text-decoration: none;" href="http://www.dawghousedesignstudio.com/archives/2010/free-weekly-hi-res-texture-pack-burnt-brown-paper/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_26.jpg" alt="Fresh Textures 26 in 40 Fresh Free Texture Packs" width="489" height="148" /></a></p>
<h3><a style="text-decoration: none;" href="http://www.dawghousedesignstudio.com/archives/2010/free-weekly-hi-res-texture-pack-light-watercolor-stains-on-crumpled-paper/">带浅色水彩印渍的褶皱纸张纹理</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://www.dawghousedesignstudio.com/">www.dawghousedesignstudio.com</a></p>
<p><a style="text-decoration: none;" href="http://www.dawghousedesignstudio.com/archives/2010/free-weekly-hi-res-texture-pack-light-watercolor-stains-on-crumpled-paper/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_27.jpg" alt="Fresh Textures 27 in 40 Fresh Free Texture Packs" width="489" height="148" /></a></p>
<h3><a style="text-decoration: none;" href="http://dmarou7i.deviantart.com/art/Big-Textures-163810845?q=boost%3Apopular+in%3Aresources%2Ftextures+2010&amp;qo=61">Big Textures</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://dmarou7i.deviantart.com/">dmarou7i.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://dmarou7i.deviantart.com/art/Big-Textures-163810845?q=boost%3Apopular+in%3Aresources%2Ftextures+2010&amp;qo=61"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_28.jpg" alt="Fresh Textures 28 in 40 Fresh Free Texture Packs" width="540" height="540" /></a></p>
<h3><a style="text-decoration: none;" href="http://photoshoptutorials.ws/photoshop-downloads/stock-textures/dried-grass-textures.html">干草纹理</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://photoshoptutorials.ws/">photoshoptutorials.ws</a></p>
<p><a style="text-decoration: none;" href="http://photoshoptutorials.ws/photoshop-downloads/stock-textures/dried-grass-textures.html"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_29.jpg" alt="Fresh Textures 29 in 40 Fresh Free Texture Packs" width="540" height="360" /></a></p>
<h3><a style="text-decoration: none;" href="http://designm.ag/freebies/distressed-bark-textures/">Distressed Bark Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://designm.ag/">designm.ag</a></p>
<p><a style="text-decoration: none;" href="http://designm.ag/freebies/distressed-bark-textures/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_30.jpg" alt="Fresh Textures 30 in 40 Fresh Free Texture Packs" width="500" height="375" /></a></p>
<h3><a style="text-decoration: none;" href="http://othum.deviantart.com/art/Paper-Textures-2010-152285945?q=boost%3Apopular+in%3Aresources%2Ftextures+2010&amp;qo=2">纸张纹理 2010</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://othum.deviantart.com/">othum.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://othum.deviantart.com/art/Paper-Textures-2010-152285945?q=boost%3Apopular+in%3Aresources%2Ftextures+2010&amp;qo=2"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_31.jpg" alt="Fresh Textures 31 in 40 Fresh Free Texture Packs" width="540" height="270" /></a></p>
<h3><a style="text-decoration: none;" href="http://desizntech.info/2010/04/freebie-rare-wonderful-high-res-mat-textures/">高分辨率Mat Textures</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://desizntech.info/">desizntech.info</a></p>
<p><a style="text-decoration: none;" href="http://desizntech.info/2010/04/freebie-rare-wonderful-high-res-mat-textures/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_32.jpg" alt="Fresh Textures 32 in 40 Fresh Free Texture Packs" width="540" height="359" /></a></p>
<h3><a style="text-decoration: none;" href="http://xeroulas.deviantart.com/art/10-Textures-Light-FX-Photos-155003775?q=boost%3Apopular+in%3Aresources%2Ftextures+2010&amp;qo=68">10 Textures Light FX Photos</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://xeroulas.deviantart.com/">xeroulas.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://xeroulas.deviantart.com/art/10-Textures-Light-FX-Photos-155003775?q=boost%3Apopular+in%3Aresources%2Ftextures+2010&amp;qo=68"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_33.jpg" alt="Fresh Textures 33 in 40 Fresh Free Texture Packs" width="540" height="363" /></a></p>
<h3><a style="text-decoration: none;" href="http://dirtyboyalf.deviantart.com/art/bokeh-pack-1-165131008?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=42">bokeh pack 1</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://dirtyboyalf.deviantart.com/">dirtyboyalf.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://dirtyboyalf.deviantart.com/art/bokeh-pack-1-165131008?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=42"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_34.jpg" alt="Fresh Textures 34 in 40 Fresh Free Texture Packs" width="540" height="405" /></a></p>
<h3><a style="text-decoration: none;" href="http://desizntech.info/2010/02/free-high-res-grungy-rustly-metal-and-dirty-textures/">免费的高分辨率Res Grungy, Rusty Metal及Dirty Texture纹理</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://desizntech.info/">desizntech.info</a></p>
<p><a style="text-decoration: none;" href="http://desizntech.info/2010/02/free-high-res-grungy-rustly-metal-and-dirty-textures/"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_35.jpg" alt="Fresh Textures 35 in 40 Fresh Free Texture Packs" width="500" height="332" /></a></p>
<h3><a style="text-decoration: none;" href="http://thinkdesignblog.com/free-textures-46-high-quality-graffiti-textures.htm">46 Graffiti Textures</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://thinkdesignblog.com/">thinkdesignblog.com</a></p>
<p><a style="text-decoration: none;" href="http://thinkdesignblog.com/free-textures-46-high-quality-graffiti-textures.htm"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_36.jpg" alt="Fresh Textures 36 in 40 Fresh Free Texture Packs" width="500" height="180" /></a></p>
<h3><a style="text-decoration: none;" href="http://thinkdesignblog.com/free-textures-53-high-res-rustic-metal-sculpture-textures.htm">53 rustic metal textures</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://thinkdesignblog.com/">thinkdesignblog.com</a></p>
<p><a style="text-decoration: none;" href="http://thinkdesignblog.com/free-textures-53-high-res-rustic-metal-sculpture-textures.htm"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_37.jpg" alt="Fresh Textures 37 in 40 Fresh Free Texture Packs" width="500" height="180" /></a></p>
<h3><a style="text-decoration: none;" href="http://lexiibabii01.deviantart.com/art/10-Grunge-Textures-164291218?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=39">10 Grunge Textures</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://lexiibabii01.deviantart.com/">lexiibabii01.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://lexiibabii01.deviantart.com/art/10-Grunge-Textures-164291218?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=39"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_38.jpg" alt="Fresh Textures 38 in 40 Fresh Free Texture Packs" width="360" height="305" /></a></p>
<h3><a style="text-decoration: none;" href="http://missesglass.deviantart.com/art/Large-scrapbook-scans-s19-165251763?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=31">Large scrapbook scans – s19</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://missesglass.deviantart.com/">missesglass.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://missesglass.deviantart.com/art/Large-scrapbook-scans-s19-165251763?q=boost%3Apopular+in%3Aresources%2Ftextures+max_age%3A744h&amp;qo=31"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_39.jpg" alt="Fresh Textures 39 in 40 Fresh Free Texture Packs" width="540" height="390" /></a></p>
<h3><a style="text-decoration: none;" href="http://cloaks.deviantart.com/art/Wooden-Tiles-Texture-Pack-149232296">Wooden Tiles Texture Pack</a></h3>
<p>来源：<a style="text-decoration: none;" href="http://cloaks.deviantart.com/">cloaks.deviantart.com</a></p>
<p><a style="text-decoration: none;" href="http://cloaks.deviantart.com/art/Wooden-Tiles-Texture-Pack-149232296"><img src="http://www.4ebstudio.com/wp-content/uploads/2010/06/fresh_textures_40.jpg" alt="Fresh Textures 40 in 40 Fresh Free Texture Packs" width="400" height="700" /></a></p>
<div>[<a href="http://www.noupe.com/freebie/40-fresh-free-texture-packs-from-2010.html" target="_blank">原文链接</a>]</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/40-fresh-free-texture-packs-from-2010.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone&#21644;iPad&#24320;&#21457;&#20837;&#38376;</title>
		<link>http://www.4ebstudio.com/web-development-for-the-iphone-and-ipad-getting-started.html</link>
		<comments>http://www.4ebstudio.com/web-development-for-the-iphone-and-ipad-getting-started.html#comments</comments>
		<pubDate>Mon, 31 May 2010 02:57:13 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[实用工具]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[苹果新知]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[移动设备]]></category>
		<category><![CDATA[网络应用]]></category>
		<category><![CDATA[网页开发]]></category>

		<guid isPermaLink="false">http://www.4ebstudio.com/?p=1396</guid>
		<description><![CDATA[&#26681;&#25454;&#20840;&#29699;&#26368;&#22823;&#30340;&#25163;&#26426;&#32593;&#32476;&#24191;&#21578;AdMob&#26174;&#31034;&#65292;iPhone&#25805;&#20316;&#31995;&#32479;&#24050;&#32463;&#21344;&#25454;&#20840;&#29699;&#26234;&#33021;&#25163;&#26426;50&#65285;&#30340;&#24066;&#22330;&#20221;&#39069;&#65292;&#32039;&#25509;&#20854;&#21518;&#30340;&#26159;Android&#65292;&#21344;24&#65285;&#12290;&#32780;&#33529;&#26524;&#30340;iPad&#39318;&#24180;&#30340;&#38144;&#21806;&#35745;&#21010;&#26159;1&#33267;4&#19975;&#21488;&#12290;&#26080;&#35770;&#20320;&#21916;&#27426;&#19982;&#21542;&#65292;iPhone&#25805;&#20316;&#31995;&#32479;&#65292;&#29305;&#21035;&#26159;Safari&#65292;&#23545;&#20110;&#32593;&#39029;&#24320;&#21457;&#20154;&#21592;&#26469;&#35828;&#24050;&#32463;&#26159;&#19968;&#32929;&#19981;&#21487;&#24573;&#35270;&#30340;&#21147;&#37327;&#12290;&#22914;&#26524;&#20320;&#36824;&#27809;&#26377;&#20934;&#22791;&#22909;&#65292;&#37027;&#20040;&#29616;&#22312;&#24050;&#32463;&#26159;&#26102;&#20505;&#24320;&#22987;&#29087;&#24713;&#24182;&#28145;&#20837;&#30740;&#31350;&#36825;&#20010;&#25805;&#20316;&#31995;&#32479;&#20102;&#12290;
&#24184;&#36816;&#30340;&#26159;&#65292;iPhone&#25805;&#20316;&#31995;&#32479;&#19978;&#30340;Safari&#26159;&#19968;&#27454;&#21313;&#20998;&#24378;&#22823;&#30340;&#27983;&#35272;&#22120;&#12290;&#21644;&#26700;&#38754;&#31995;&#32479;&#30340;Safari4&#19968;&#26679;&#65292;&#21487;&#20197;&#23436;&#22909;&#30340;&#25903;&#25345;CSS3&#20197;&#21450;HTML5&#12290;&#21516;&#26102;Safari&#36824;&#25552;&#20379;&#20102;&#19968;&#20123;&#38543;&#25163;&#21487;&#29992;&#30340;&#28418;&#20142;&#30340;&#30028;&#38754;&#20803;&#32032;&#65292;&#26377;&#20123;&#22312;iPhone&#21644;iPad&#20043;&#38388;&#36824;&#20250;&#26377;&#25152;&#19981;&#21516;&#12290;&#26368;&#21518;&#35201;&#35828;&#30340;&#26159;&#65292;&#30001;&#20110;iPhone&#25805;&#20316;&#31995;&#32479;&#24050;&#32463;&#23384;&#22312;&#19968;&#27573;&#26102;&#38388;&#20102;&#65292;&#22240;&#27492;&#26377;&#24456;&#22810;&#36164;&#21487;&#20197;&#21033;&#29992;&#12290;
&#25105;&#30693;&#36947;&#22823;&#22810;&#25968;&#20851;&#20110;iPhone&#25805;&#20316;&#24179;&#21488;&#30340;&#35752;&#35770;&#37117;&#38598;&#20013;&#20110;&#21407;&#29983;&#24212;&#29992;&#31243;&#24207;&#12290;&#20294;&#26159;&#65292;&#20351;&#29992;HTML&#65292;JavaScript&#20197;&#21450;CSS&#21516;&#26679;&#21487;&#20197;&#21019;&#24314;&#24378;&#22823;&#30340;&#65292;&#20855;&#26377;&#21407;&#29983;&#22806;&#35266;&#30340;&#39029;&#38754;&#12290;&#26412;&#25991;&#35762;&#30528;&#37325;&#35752;&#35770;&#19977;&#20010;&#20851;&#20110;&#21019;&#24314;&#21644;&#20248;&#21270;&#20320;&#30340;&#32593;&#31449;&#30340;&#35789;&#27719;&#65306;&#35774;&#35745;&#65292;&#20195;&#30721;&#20197;&#21450;&#27979;&#35797;&#12290;

&#22312;&#24320;&#22987;&#35752;&#35770;&#20043;&#21069;&#65292;&#35753;&#25105;&#20204;&#20808;&#26469;&#30475;&#30475;&#29992;&#32593;&#32476;&#24212;&#29992;&#26367;&#20195;&#21407;&#29983;&#24212;&#29992;&#30340;&#20248;&#21183;&#19982;&#21155;&#21183;&#12290;
&#20248;&#21183;&#65306;

&#19981;&#38656;&#35201;&#32463;&#36807;&#33529;&#26524;&#30340;&#23457;&#25209;&#31243;&#24207;&#21644;&#32321;&#25991;&#32539;&#33410;&#65292;&#36825;&#19968;&#28857;&#23545;&#20110;&#29616;&#22312;&#33529;&#26524;&#20844;&#21496;&#27491;&#22312;&#25191;&#34892;&#30340;&#26497;&#20855;&#20105;&#35758;&#30340;&#26465;&#27454;&#26497;&#20854;&#37325;&#35201;&#12290;
&#23545;&#20110;&#22312;&#20854;&#20182;&#27969;&#34892;&#30340;&#25805;&#20316;&#24179;&#21488;&#65292;&#22914;Android&#20197;&#21450;Blackberry&#65292;&#20351;&#29992;&#30456;&#21516;&#30340;&#20195;&#30721;&#36827;&#34892;&#32593;&#32476;&#24212;&#29992;&#30340;&#20248;&#21270;&#20250;&#26356;&#20026;&#23481;&#26131;&#12290;
&#20320;&#19981;&#38656;&#35201;&#23398;&#20064;Objective-C&#12290;
&#22914;&#26524;&#20320;&#30340;&#24212;&#29992;&#31243;&#24207;&#26159;&#25910;&#36153;&#30340;&#65292;&#37027;&#20040;&#20320;&#19981;&#38656;&#35201;&#21644;&#33529;&#26524;&#20844;&#21496;&#36827;&#34892;&#25910;&#30410;&#20998;&#25104;&#12290;
&#20320;&#21487;&#20197;100&#65285;&#30340;&#25511;&#21046;&#20320;&#30340;&#25903;&#20184;&#26041;&#24335;&#65292;&#20419;&#38144;&#20197;&#21450;&#20998;&#38144;&#26041;&#24335;&#12290;&#24403;&#28982;&#65292;&#36825;&#20063;&#21487;&#33021;&#20250;&#25104;&#20026;&#36127;&#38754;&#24433;&#21709;&#65292;&#37027;&#35201;&#30475;&#20320;&#24590;&#20040;&#30475;&#24453;&#36825;&#20214;&#20107;&#20102;&#12290;

&#21155;&#21183;&#65306;

&#19981;&#20250;&#22312;App Store&#37324;&#38754;&#23637;&#31034;&#12290;
&#22312;&#35774;&#22791;&#19978;&#23433;&#35013;&#20250;&#27604;&#36739;&#40635;&#28902;&#12290;
&#26080;&#27861;&#23454;&#29616;iPhone&#25805;&#20316;&#31995;&#32479;&#30340;&#19968;&#20123;&#21407;&#29983;&#30340;&#21151;&#33021;&#65292;&#22914;&#25512;&#36865;&#21450;GUI&#25511;&#21046;&#12290;

&#35774;&#35745;
iPhone&#25805;&#20316;&#24179;&#21488;&#30340;&#32593;&#32476;&#24212;&#29992;&#35774;&#35745;&#21644;&#21407;&#29983;&#24212;&#29992;&#35774;&#35745;&#24456;&#30456;&#20284;&#65292;&#22240;&#27492;&#20320;&#38656;&#35201;&#20351;&#29992;&#19968;&#20123;&#24378;&#22823;&#30340;&#24037;&#20855;&#12290;&#26080;&#35770;&#20320;&#30340;&#32593;&#31449;&#26694;&#26550;&#35774;&#35745;&#24037;&#20855;&#26159;&#38085;&#31508;&#21644;&#32440;&#24352;&#36824;&#26159;&#26700;&#38754;&#36719;&#20214;&#65292;&#20840;&#37117;&#21487;&#20197;&#12290;
&#28789;&#24863;
&#27809;&#26377;&#22810;&#23569;&#20154;&#30693;&#36947;&#33529;&#26524;&#23448;&#32593;&#26377;&#19968;&#20010;&#21483;&#20570;&#8220;Web apps&#8221;&#30340;&#26639;&#30446;&#65292;&#35813;&#26639;&#30446;&#19987;&#38376;&#29992;&#26469;&#23637;&#31034;&#19968;&#20123;&#20248;&#21270;&#36807;&#30340;&#32593;&#31449;&#12290;

&#20197;&#19979;&#26159;&#20854;&#20182;&#19968;&#20123;&#38750;&#24120;&#22909;&#30340;&#31227;&#21160;&#35774;&#22791;&#32593;&#39029;&#35774;&#35745;&#36164;&#28304;&#65306;

Apple Web Apps Listing
Mobile Awesomeness Design Gallery
CSS iPhone Design Gallery
Well Placed Pixels
Apple App Store (&#34429;&#28982;&#36825;&#20123;&#37117;&#26159;&#21407;&#29983;&#30340;&#24212;&#29992;&#31243;&#24207;&#65292;&#19981;&#36807;&#20320;&#21487;&#20197;&#25214;&#21040;&#19968;&#20123;&#24456;&#22909;&#30340;&#35270;&#35273;&#35774;&#35745;&#28789;&#24863;)

&#32440;&#24352;
&#32440;&#24352;&#27169;&#22411;&#26159;&#25105;&#38271;&#26399;&#20197;&#26469;&#19968;&#30452;&#20351;&#29992;&#30340;&#35774;&#35745;&#32593;&#31449;&#26694;&#26550;&#32467;&#26500;&#30340;&#24037;&#20855;&#12290;&#20197;&#19979;&#26159;&#20960;&#27454;&#24120;&#29992;&#30340;&#24037;&#20855;&#65306;


Notepod: iPad and iPhone sketchbooks
App Sketchbook
PixelPads
UI Stencils sticky pads
Apress iPhone Application Sketch Book
Printable iPhone Wireframe Template (&#20813;&#36153;)

&#25968;&#23383;&#21270;
&#19968;&#26086;&#20320;&#24819;&#22909;&#20102;&#20320;&#30340;&#35774;&#35745;&#36208;&#39029;&#65292;&#25105;&#20204;&#38656;&#35201;&#23558;&#20182;&#20204;&#31227;&#21040;&#26700;&#38754;&#19978;&#20855;&#20307;&#21270;&#12290;&#25105;&#38750;&#24120;&#21916;&#27426;&#20351;&#29992;&#30340;&#32593;&#39029;&#26550;&#26500;&#35774;&#35745;&#24037;&#20855;&#26159;OmniGraffle&#65292;&#20294;&#26377;&#26102;&#20505;&#20063;&#20250;&#30452;&#25509;&#20351;&#29992;Photoshop&#36827;&#34892;&#12290;&#19981;&#36807;&#20351;&#29992;&#20160;&#20040;&#65292;&#20197;&#19979;&#36825;&#20123;&#24037;&#20855;&#37117;&#20250;&#23545;&#20320;&#26377;&#24456;&#22823;&#30340;&#24110;&#21161;&#65306;


iPhone GUI PSD 3.0 &#20197;&#21450;&#160;iPad GUI PSD (Photoshop)
Layered iPhone GUI elements (Photoshop)
PSD Vector Kit (Photoshop)
iPad and iPhone stencils; &#26356;&#22810;&#21487;&#20197;&#21442;&#30475;&#160;Graffletopia (OmniGraffle)
iPhone and iPad Development [...]]]></description>
			<content:encoded><![CDATA[<p>&#26681;&#25454;&#20840;&#29699;&#26368;&#22823;&#30340;&#25163;&#26426;&#32593;&#32476;&#24191;&#21578;AdMob&#26174;&#31034;&#65292;iPhone&#25805;&#20316;&#31995;&#32479;&#24050;&#32463;&#21344;&#25454;&#20840;&#29699;&#26234;&#33021;&#25163;&#26426;50&#65285;&#30340;&#24066;&#22330;&#20221;&#39069;&#65292;&#32039;&#25509;&#20854;&#21518;&#30340;&#26159;Android&#65292;&#21344;24&#65285;&#12290;&#32780;&#33529;&#26524;&#30340;iPad&#39318;&#24180;&#30340;&#38144;&#21806;&#35745;&#21010;&#26159;1&#33267;4&#19975;&#21488;&#12290;&#26080;&#35770;&#20320;&#21916;&#27426;&#19982;&#21542;&#65292;iPhone&#25805;&#20316;&#31995;&#32479;&#65292;&#29305;&#21035;&#26159;Safari&#65292;&#23545;&#20110;&#32593;&#39029;&#24320;&#21457;&#20154;&#21592;&#26469;&#35828;&#24050;&#32463;&#26159;&#19968;&#32929;&#19981;&#21487;&#24573;&#35270;&#30340;&#21147;&#37327;&#12290;&#22914;&#26524;&#20320;&#36824;&#27809;&#26377;&#20934;&#22791;&#22909;&#65292;&#37027;&#20040;&#29616;&#22312;&#24050;&#32463;&#26159;&#26102;&#20505;&#24320;&#22987;&#29087;&#24713;&#24182;&#28145;&#20837;&#30740;&#31350;&#36825;&#20010;&#25805;&#20316;&#31995;&#32479;&#20102;&#12290;</p>
<p>&#24184;&#36816;&#30340;&#26159;&#65292;iPhone&#25805;&#20316;&#31995;&#32479;&#19978;&#30340;Safari&#26159;&#19968;&#27454;&#21313;&#20998;&#24378;&#22823;&#30340;&#27983;&#35272;&#22120;&#12290;&#21644;&#26700;&#38754;&#31995;&#32479;&#30340;Safari4&#19968;&#26679;&#65292;&#21487;&#20197;&#23436;&#22909;&#30340;&#25903;&#25345;CSS3&#20197;&#21450;HTML5&#12290;&#21516;&#26102;Safari&#36824;&#25552;&#20379;&#20102;&#19968;&#20123;&#38543;&#25163;&#21487;&#29992;&#30340;&#28418;&#20142;&#30340;&#30028;&#38754;&#20803;&#32032;&#65292;&#26377;&#20123;&#22312;iPhone&#21644;iPad&#20043;&#38388;&#36824;&#20250;&#26377;&#25152;&#19981;&#21516;&#12290;&#26368;&#21518;&#35201;&#35828;&#30340;&#26159;&#65292;&#30001;&#20110;iPhone&#25805;&#20316;&#31995;&#32479;&#24050;&#32463;&#23384;&#22312;&#19968;&#27573;&#26102;&#38388;&#20102;&#65292;&#22240;&#27492;&#26377;&#24456;&#22810;&#36164;&#21487;&#20197;&#21033;&#29992;&#12290;</p>
<p>&#25105;&#30693;&#36947;&#22823;&#22810;&#25968;&#20851;&#20110;iPhone&#25805;&#20316;&#24179;&#21488;&#30340;&#35752;&#35770;&#37117;&#38598;&#20013;&#20110;&#21407;&#29983;&#24212;&#29992;&#31243;&#24207;&#12290;&#20294;&#26159;&#65292;&#20351;&#29992;HTML&#65292;JavaScript&#20197;&#21450;CSS&#21516;&#26679;&#21487;&#20197;&#21019;&#24314;&#24378;&#22823;&#30340;&#65292;&#20855;&#26377;&#21407;&#29983;&#22806;&#35266;&#30340;&#39029;&#38754;&#12290;&#26412;&#25991;&#35762;&#30528;&#37325;&#35752;&#35770;&#19977;&#20010;&#20851;&#20110;&#21019;&#24314;&#21644;&#20248;&#21270;&#20320;&#30340;&#32593;&#31449;&#30340;&#35789;&#27719;&#65306;<strong>&#35774;&#35745;&#65292;&#20195;&#30721;&#20197;&#21450;&#27979;&#35797;</strong>&#12290;</p>
<p><span id="more-1396"></span></p>
<p>&#22312;&#24320;&#22987;&#35752;&#35770;&#20043;&#21069;&#65292;&#35753;&#25105;&#20204;&#20808;&#26469;&#30475;&#30475;&#29992;&#32593;&#32476;&#24212;&#29992;&#26367;&#20195;&#21407;&#29983;&#24212;&#29992;&#30340;&#20248;&#21183;&#19982;&#21155;&#21183;&#12290;</p>
<p>&#20248;&#21183;&#65306;</p>
<ul>
<li>&#19981;&#38656;&#35201;&#32463;&#36807;&#33529;&#26524;&#30340;&#23457;&#25209;&#31243;&#24207;&#21644;&#32321;&#25991;&#32539;&#33410;&#65292;&#36825;&#19968;&#28857;&#23545;&#20110;&#29616;&#22312;&#33529;&#26524;&#20844;&#21496;&#27491;&#22312;&#25191;&#34892;&#30340;&#26497;&#20855;&#20105;&#35758;&#30340;&#26465;&#27454;&#26497;&#20854;&#37325;&#35201;&#12290;</li>
<li>&#23545;&#20110;&#22312;&#20854;&#20182;&#27969;&#34892;&#30340;&#25805;&#20316;&#24179;&#21488;&#65292;&#22914;Android&#20197;&#21450;Blackberry&#65292;&#20351;&#29992;&#30456;&#21516;&#30340;&#20195;&#30721;&#36827;&#34892;&#32593;&#32476;&#24212;&#29992;&#30340;&#20248;&#21270;&#20250;&#26356;&#20026;&#23481;&#26131;&#12290;</li>
<li>&#20320;&#19981;&#38656;&#35201;&#23398;&#20064;Objective-C&#12290;</li>
<li>&#22914;&#26524;&#20320;&#30340;&#24212;&#29992;&#31243;&#24207;&#26159;&#25910;&#36153;&#30340;&#65292;&#37027;&#20040;&#20320;&#19981;&#38656;&#35201;&#21644;&#33529;&#26524;&#20844;&#21496;&#36827;&#34892;&#25910;&#30410;&#20998;&#25104;&#12290;</li>
<li>&#20320;&#21487;&#20197;100&#65285;&#30340;&#25511;&#21046;&#20320;&#30340;&#25903;&#20184;&#26041;&#24335;&#65292;&#20419;&#38144;&#20197;&#21450;&#20998;&#38144;&#26041;&#24335;&#12290;&#24403;&#28982;&#65292;&#36825;&#20063;&#21487;&#33021;&#20250;&#25104;&#20026;&#36127;&#38754;&#24433;&#21709;&#65292;&#37027;&#35201;&#30475;&#20320;&#24590;&#20040;&#30475;&#24453;&#36825;&#20214;&#20107;&#20102;&#12290;</li>
</ul>
<p>&#21155;&#21183;&#65306;</p>
<ul>
<li>&#19981;&#20250;&#22312;App Store&#37324;&#38754;&#23637;&#31034;&#12290;</li>
<li>&#22312;&#35774;&#22791;&#19978;&#23433;&#35013;&#20250;&#27604;&#36739;&#40635;&#28902;&#12290;</li>
<li>&#26080;&#27861;&#23454;&#29616;iPhone&#25805;&#20316;&#31995;&#32479;&#30340;&#19968;&#20123;&#21407;&#29983;&#30340;&#21151;&#33021;&#65292;&#22914;&#25512;&#36865;&#21450;GUI&#25511;&#21046;&#12290;</li>
</ul>
<h2>&#35774;&#35745;</h2>
<p>iPhone&#25805;&#20316;&#24179;&#21488;&#30340;&#32593;&#32476;&#24212;&#29992;&#35774;&#35745;&#21644;&#21407;&#29983;&#24212;&#29992;&#35774;&#35745;&#24456;&#30456;&#20284;&#65292;&#22240;&#27492;&#20320;&#38656;&#35201;&#20351;&#29992;&#19968;&#20123;&#24378;&#22823;&#30340;&#24037;&#20855;&#12290;&#26080;&#35770;&#20320;&#30340;&#32593;&#31449;&#26694;&#26550;&#35774;&#35745;&#24037;&#20855;&#26159;&#38085;&#31508;&#21644;&#32440;&#24352;&#36824;&#26159;&#26700;&#38754;&#36719;&#20214;&#65292;&#20840;&#37117;&#21487;&#20197;&#12290;</p>
<h3>&#28789;&#24863;</h3>
<p>&#27809;&#26377;&#22810;&#23569;&#20154;&#30693;&#36947;&#33529;&#26524;&#23448;&#32593;&#26377;&#19968;&#20010;&#21483;&#20570;&ldquo;<a href="http://www.apple.com/webapps/" target="_blank">Web apps</a>&rdquo;&#30340;&#26639;&#30446;&#65292;&#35813;&#26639;&#30446;&#19987;&#38376;&#29992;&#26469;&#23637;&#31034;&#19968;&#20123;&#20248;&#21270;&#36807;&#30340;&#32593;&#31449;&#12290;</p>
<p><img class="alignleft size-full wp-image-1398" title="&#33529;&#26524;&#23448;&#32593;&#19978;&#30340;&#25512;&#33616;&#32593;&#32476;&#24212;&#29992;" src="http://www.4ebstudio.com/wp-content/uploads/2010/05/Getting-Started.png" alt="Web app on the Apple website" width="500" height="322" /></p>
<p>&#20197;&#19979;&#26159;&#20854;&#20182;&#19968;&#20123;&#38750;&#24120;&#22909;&#30340;&#31227;&#21160;&#35774;&#22791;&#32593;&#39029;&#35774;&#35745;&#36164;&#28304;&#65306;</p>
<ul>
<li><a title="Apple Web apps" href="http://www.apple.com/webapps/" target="_blank">Apple Web Apps Listing</a></li>
<li><a title="Mobile Awesomeness" href="http://www.mobileawesomeness.com" target="_blank">Mobile Awesomeness Design Gallery</a></li>
<li><a title="CSS iPhone" href="http://www.cssiphone.com" target="_blank">CSS iPhone Design Gallery</a></li>
<li><a href="http://wellplacedpixels.com/" target="_blank">Well Placed Pixels</a></li>
<li><a href="http://www.apple.com/iphone/apps-for-iphone/" target="_blank">Apple App Store</a> (&#34429;&#28982;&#36825;&#20123;&#37117;&#26159;&#21407;&#29983;&#30340;&#24212;&#29992;&#31243;&#24207;&#65292;&#19981;&#36807;&#20320;&#21487;&#20197;&#25214;&#21040;&#19968;&#20123;&#24456;&#22909;&#30340;&#35270;&#35273;&#35774;&#35745;&#28789;&#24863;)</li>
</ul>
<h3>&#32440;&#24352;</h3>
<p>&#32440;&#24352;&#27169;&#22411;&#26159;&#25105;&#38271;&#26399;&#20197;&#26469;&#19968;&#30452;&#20351;&#29992;&#30340;&#35774;&#35745;&#32593;&#31449;&#26694;&#26550;&#32467;&#26500;&#30340;&#24037;&#20855;&#12290;&#20197;&#19979;&#26159;&#20960;&#27454;&#24120;&#29992;&#30340;&#24037;&#20855;&#65306;</p>
<p><img class="alignleft size-full wp-image-1403" title="Notepod" src="http://www.4ebstudio.com/wp-content/uploads/2010/05/Getting-Started3.jpeg" alt="" width="500" height="375" /></p>
<ul>
<li><a title="Notepod" href="http://notepod.net/">Notepod: iPad and iPhone sketchbooks</a></li>
<li><a title="App Sketchbook" href="http://appsketchbook.com/">App Sketchbook</a></li>
<li><a title="PixelPads" href="http://www.pixelpads.com/PixelPads_I_Features.html">PixelPads</a></li>
<li><a href="http://www.uistencils.com/products/iphone-sticky-pad">UI Stencils sticky pads</a></li>
<li><a href="http://apress.com/book/view/9781430228233">Apress iPhone Application Sketch Book</a></li>
<li><a href="http://fullofdesign.com/posts/iphone-app-wireframe-template/">Printable iPhone Wireframe Template</a> (&#20813;&#36153;)</li>
</ul>
<h3>&#25968;&#23383;&#21270;</h3>
<p>&#19968;&#26086;&#20320;&#24819;&#22909;&#20102;&#20320;&#30340;&#35774;&#35745;&#36208;&#39029;&#65292;&#25105;&#20204;&#38656;&#35201;&#23558;&#20182;&#20204;&#31227;&#21040;&#26700;&#38754;&#19978;&#20855;&#20307;&#21270;&#12290;&#25105;&#38750;&#24120;&#21916;&#27426;&#20351;&#29992;&#30340;&#32593;&#39029;&#26550;&#26500;&#35774;&#35745;&#24037;&#20855;&#26159;<a title="OmniGraffle for Mac" href="http://www.omnigroup.com/products/omnigraffle/">OmniGraffle</a>&#65292;&#20294;&#26377;&#26102;&#20505;&#20063;&#20250;&#30452;&#25509;&#20351;&#29992;Photoshop&#36827;&#34892;&#12290;&#19981;&#36807;&#20351;&#29992;&#20160;&#20040;&#65292;&#20197;&#19979;&#36825;&#20123;&#24037;&#20855;&#37117;&#20250;&#23545;&#20320;&#26377;&#24456;&#22823;&#30340;&#24110;&#21161;&#65306;</p>
<p><img title="iPad GUI" src="http://www.4ebstudio.com/wp-content/uploads/2010/05/Getting-Started.jpeg" alt="iPad GUI" width="500" height="309" /></p>
<ul>
<li><a title="iPhone" href="http://www.teehanlax.com/blog/2009/06/18/iphone-gui-psd-30/">iPhone GUI PSD 3.0</a> &#20197;&#21450;&nbsp;<a title="iPad" href="http://www.teehanlax.com/blog/2010/02/01/ipad-gui-psd/">iPad GUI PSD</a> (Photoshop)</li>
<li><a href="http://www.designerstoolbox.com/designresources/iphone/">Layered iPhone GUI elements</a> (Photoshop)</li>
<li><a href="http://www.smashingmagazine.com/2008/11/26/iphone-psd-vector-kit/">PSD Vector Kit</a> (Photoshop)</li>
<li><a href="http://www.morford.org/iphoneosdesignstencil/">iPad and iPhone stencils</a>; &#26356;&#22810;&#21487;&#20197;&#21442;&#30475;&nbsp;<a title="Graffletopia" href="http://graffletopia.com/categories/iphone">Graffletopia</a> (OmniGraffle)</li>
<li><a href="http://speckyboy.com/2010/04/30/iphone-and-ipad-development-gui-kits-stencils-and-icons/">iPhone and iPad Development GUI Kits, Stencils and Icons</a></li>
</ul>
<h2>&#20195;&#30721;</h2>
<p>&#24403;&#20320;&#24320;&#22987;&#20026;iPhone&#25805;&#20316;&#31995;&#32479;&#19978;&#30340;Safari&#36827;&#34892;&#20195;&#30721;&#35774;&#35745;&#30340;&#26102;&#20505;&#65292;&#29702;&#35299;&#27983;&#35272;&#22120;&#30340;&#24037;&#20316;&#27169;&#24335;&#26159;&#38750;&#24120;&#37325;&#35201;&#30340;&#12290;&#21478;&#22806;&#65292;iPhone&#21644;iPad&#30340;&#27983;&#35272;&#22120;&#20250;&#26377;&#19968;&#20123;&#32454;&#24494;&#30340;&#24046;&#21035;&#65292;&#20363;&#22914;&#34920;&#21333;&#36873;&#25321;&#30340;&#30418;&#27169;&#22411;&#24037;&#20316;&#27169;&#24335;&#31561;&#12290;&#26368;&#37325;&#35201;&#30340;&#26159;&#65292;Safari&#21487;&#20197;&#24456;&#22909;&#30340;&#25903;&#25345;CSS3&#21644;HTML5&#65292;&#22240;&#27492;&#20320;&#21487;&#20197;&#25918;&#24515;&#20351;&#29992;&#20808;&#36827;&#30340;&#20195;&#30721;&#32780;&#19981;&#29992;&#25285;&#24515;&#36328;&#27983;&#35272;&#22120;&#30340;&#20860;&#23481;&#38382;&#39064;&#12290;</p>
<h3>&#30456;&#20851;&#30693;&#35782;</h3>
<p>&#20107;&#23454;&#19978;&#65292;&#33529;&#26524;&#20844;&#21496;&#23545;&#20110;iPhone&#25805;&#20316;&#31995;&#32479;&#30340;Safari&#35828;&#26126;&#25991;&#26723;&#24050;&#32463;&#36275;&#22815;&#35814;&#32454;&#20102;&#12290;&#21807;&#19968;&#19981;&#36275;&#30340;&#19968;&#28857;&#23601;&#26159;&#32570;&#23569;&#25805;&#20316;&#31995;&#32479;&#21644;&#27983;&#35272;&#22120;&#25506;&#27979;&#30340;&#20351;&#29992;&#24110;&#21161;&#12290;&#20197;&#19979;&#23601;&#26159;&#38024;&#23545;&#36825;&#28857;&#30340;&#30456;&#20851;&#20351;&#29992;&#35828;&#26126;&#65306;</p>
<p><strong><span style="text-decoration: underline;">iPhone &amp; iPod touch&#27983;&#35272;&#22120;&#25506;&#27979;</span></strong></p>
<p><em>The Javascript</em></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>navigator.<span style="color: #660066;">userAgent</span>.<span style="color: #660066;">match</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/iPhone/i</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #009900;">&#40;</span>navigator.<span style="color: #660066;">userAgent</span>.<span style="color: #660066;">match</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/iPod/i</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">cookie</span>.<span style="color: #660066;">indexOf</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;iphone_redirect=false&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span> window.<span style="color: #660066;">location</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;http://m.espn.go.com/wireless/?iphone&amp;amp;i=COMR&quot;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><em>The PHP</em></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">strstr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_USER_AGENT'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'iPhone'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #990000;">strstr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_USER_AGENT'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'iPod'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#123;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Location: http://yoursite.com/iphone'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


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


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><strong><span style="text-decoration: underline;">iPad&#27983;&#35272;&#22120;&#25506;&#27979;</span></strong></p>
<p><em> The Javascript</em></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">var</span> isiPad <span style="color: #339933;">=</span> navigator.<span style="color: #660066;">userAgent</span>.<span style="color: #660066;">match</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/iPad/i</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #003366; font-weight: bold;">null</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><em>The PHP</em></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$isiPad</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>bool<span style="color: #009900;">&#41;</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_USER_AGENT'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'iPad'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><em>The .htaccess</em></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="txt" style="font-family:monospace;">RewriteCond %{HTTP_USER_AGENT} ^.*iPad.*$</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="txt" style="font-family:monospace;">RewriteRule ^(.*)$ http://ipad.yourdomain.com [R=301]</pre></td></tr></table></div>

<p><strong><span style="text-decoration: underline;">iPhone &amp; iPod touch&#31383;&#21475;&#26041;&#21521;&#25506;&#27979;</span></strong></p>
<p><em>The Javascript</em></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> orient<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #009900;">&#123;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">    <span style="color: #000066; font-weight: bold;">switch</span><span style="color: #009900;">&#40;</span>window.<span style="color: #660066;">orientation</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>4
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">            <span style="color: #000066; font-weight: bold;">case</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">:</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;orient_css&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">href</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;css/iphone_portrait.css&quot;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>5
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">            <span style="color: #000066; font-weight: bold;">break</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>6
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">            <span style="color: #000066; font-weight: bold;">case</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">90</span><span style="color: #339933;">:</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;orient_css&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">href</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;css/iphone_landscape.css&quot;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>7
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">            <span style="color: #000066; font-weight: bold;">break</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>8
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">&nbsp;</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>9
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">            <span style="color: #000066; font-weight: bold;">case</span> <span style="color: #CC0000;">90</span><span style="color: #339933;">:</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;orient_css&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">href</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;css/iphone_landscape.css&quot;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>10
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">           <span style="color: #000066; font-weight: bold;">break</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>11
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">&nbsp;</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>12
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #009900;">&#125;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>13
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">&nbsp;</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>14
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">window.<span style="color: #000066;">onload</span> <span style="color: #339933;">=</span> orient<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><strong><span style="text-decoration: underline;">iPad&#31383;&#21475;&#26041;&#21521;&#25506;&#27979;</span></strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">media</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;all and (orientation:portrait)&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;portrait.css&quot;</span>&gt;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">media</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;all and (orientation:landscape)&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;landscape.css&quot;</span>&gt;</span></pre></td></tr></table></div>

</pre>
</pre>
<h3>jQTouch&#31227;&#21160;&#35774;&#22791;&#26694;&#26550;</h3>
<p><img class="alignleft size-full wp-image-1400" title="jQTouch" src="http://www.4ebstudio.com/wp-content/uploads/2010/05/Getting-Started1.jpeg" alt="" width="500" height="315" /></p>
<p>iPhone&#25317;&#26377;&#20247;&#22810;&#24320;&#21457;&#26694;&#26550;&#65292;&#20854;&#20013;jQTouch&#26159;&#20348;&#20348;&#32773;&#12290;jQTouch&#25552;&#20379;&#20102;&#20840;&#26041;&#20301;&#30340;&#24037;&#20855;&#24110;&#21161;&#20320;&#30340;&#31227;&#21160;&#32593;&#32476;&#24212;&#29992;&#31243;&#24207;&#30475;&#19978;&#21435;&#26356;&#20687;&#21407;&#29983;&#30340;&#12290;&#20320;&#21487;&#20197;&#21040;&#36825;&#37324;<a href="http://jqtouch.com/" target="_blank">&#26597;&#30475;</a>&#35813;&#26694;&#26550;&#30340;&#32593;&#31449;&#65292;&#20063;&#21487;&#20197;&#20351;&#29992;&#20320;&#25163;&#20013;&#30340;iPhone&#36755;&#20837;<a href="http://jqtouch.com/preview/demos/main/" target="_blank">demo&#32593;&#22336;</a>&#26469;&#24863;&#21463;&#35813;&#26694;&#26550;&#24102;&#32473;&#20320;&#30340;&#26080;&#31351;&#39749;&#21147;&#12290;</p>
<h2>&#27979;&#35797;</h2>
<p>&#22312;iPhone&#25805;&#20316;&#31995;&#32479;&#19978;&#21019;&#24314;&#32593;&#31449;&#25110;&#32593;&#32476;&#24212;&#29992;&#31243;&#24207;&#30340;&#19968;&#20010;&#20851;&#38190;&#19988;&#26840;&#25163;&#30340;&#37096;&#20998;&#23601;&#26159;&#27979;&#35797;&#12290;&#21644;&#24120;&#35268;&#30340;&#32593;&#39029;&#27983;&#35272;&#22120;&#30456;&#27604;&#65292;&#35813;&#27979;&#35797;&#20250;&#30456;&#23545;&#22797;&#26434;&#19968;&#20123;&#12290;&#19981;&#36807;&#65292;&#22914;&#26524;&#20320;&#29087;&#24713;&#19968;&#20123;&#24037;&#20855;&#30340;&#20351;&#29992;&#30340;&#35805;&#65292;&#37027;&#20040;&#20250;&#20351;&#27979;&#35797;&#24037;&#20855;&#30456;&#23545;&#23481;&#26131;&#35768;&#22810;&#12290;</p>
<h3>Liveview</h3>
<p><img class="alignleft size-full wp-image-1401" title="liveview" src="http://www.4ebstudio.com/wp-content/uploads/2010/05/Getting-Started2.jpeg" alt="" width="200" height="183" /></p>
<p>Liveview&#26159;&#22312;&#20320;&#36827;&#34892;&#35774;&#35745;&#25110;&#32773;&#20195;&#30721;&#21046;&#20316;&#21021;&#22987;&#38454;&#27573;&#26102;&#30340;&#19968;&#27454;&#26234;&#33021;&#27979;&#35797;&#24037;&#20855;&#12290;&#23427;&#20801;&#35768;&#20320;&#23558;&#26700;&#38754;&#35774;&#35745;&#30340;&#22270;&#29255;&#30340;&#22270;&#29255;&#22312;&#20320;&#30340;&#31227;&#21160;&#35774;&#22791;&#19978;&#36827;&#34892;&#25773;&#25918;&#65292;&#20197;&#20415;&#30475;&#21040;&#35774;&#35745;&#22270;&#30340;&#23454;&#38469;&#25928;&#26524;&#12290;&#36825;&#23545;&#20110;&#33719;&#21462;&#23383;&#20307;&#22823;&#23567;&#20197;&#21450;&#35270;&#35273;&#32454;&#33410;&#26469;&#35828;&#38750;&#24120;&#26377;&#29992;&#65292;&#27605;&#31455;&#26377;&#20123;&#26102;&#20505;&#24819;&#20174;photoshop&#19978;&#25110;&#35768;&#26356;&#20026;&#36924;&#30495;&#30340;&#35270;&#35273;&#25928;&#26524;&#27604;&#36739;&#22256;&#38590;&#12290;</p>
<h3>&#20351;&#29992;iPhone&#27169;&#25311;&#22120;</h3>
<p>&#22312;&#25105;&#30475;&#26469;&#65292;&#27809;&#26377;&#20160;&#20040;&#27604;&#36739;&#22909;&#30340;iPhone&#25110;&#32773;iPad&#30340;&#20223;&#30495;&#22120;&#12290;&#30446;&#21069;&#20320;&#22312;&#32593;&#32476;&#19978;&#25214;&#21040;&#30340;&#37027;&#20123;&#20223;&#30495;&#22120;&#37117;&#26159;&#22312;&#28010;&#36153;&#20320;&#30340;&#26102;&#38388;&#12290;&#20320;&#26368;&#22909;&#21435;&#19979;&#36733;&#33529;&#26524;&#23448;&#26041;&#25552;&#20379;&#30340;iPhone&#25805;&#20316;&#31995;&#32479;&#27169;&#25311;&#22120;&#30340;<a href="https://daw.apple.com/cgi-bin/WebObjects/DSAuthWeb.woa/wa/login?appIdKey=D635F5C417E087A3B9864DAC5D25920C4E9442C9339FA9277951628F0291F620&amp;path=%2F%2Fiphone%2Findex.action" target="_blank">&#26368;&#26032;&#29256;&#26412;</a>&#65292;&#24403;&#28982;&#65292;&#23427;&#20063;&#25903;&#25345;iPad&#12290;</p>
<p>&#34429;&#28982;&#35774;&#32622;&#22909;SDK&#21644;&#26412;&#22320;&#27979;&#35797;&#29615;&#22659;&#38656;&#35201;&#33457;&#19978;&#19968;&#20123;&#21151;&#22827;&#65292;&#20294;&#26159;&#36825;&#20123;&#36824;&#26159;&#20540;&#24471;&#20320;&#21435;&#20570;&#30340;&#65292;&#24635;&#27604;&#20381;&#36182;&#20110;&#19968;&#20123;&#38750;&#23448;&#26041;&#19988;&#32463;&#24120;&#20250;&#20986;&#29616;&#19981;&#31934;&#30830;&#38169;&#35823;&#30340;&#20223;&#30495;&#22120;&#26469;&#35828;&#26356;&#22909;&#12290;</p>
<h2>PhoneGap: &#20004;&#20840;&#20854;&#32654;?</h2>
<p>PhoneGap&#26159;&#19968;&#27454;&#24320;&#28304;&#30340;&#65292;&#21487;&#20197;&#21019;&#24314;&#22810;&#31227;&#21160;&#24179;&#21488;&#30340;&#24320;&#21457;&#26694;&#26550;&#12290;&#22914;&#26524;&#20320;&#24819;&#20351;&#29992;HTML&#65292;CSS&#20197;&#21450;Javascript&#21019;&#24314;&#20320;&#30340;&#24212;&#29992;&#31243;&#24207;&#65292;&#21448;&#24819;&#35753;&#20182;&#20204;&#33021;&#22815;&#21407;&#29983;&#36816;&#34892;&#65292;&#24182;&#19988;&#21487;&#20197;&#20986;&#29616;&#22312;App Store&#19978;&#65292;&#37027;&#20040;<a href="http://phonegap.com/" target="_blank">PhoneGap</a>&#20415;&#26159;&#35299;&#20915;&#26041;&#26696;&#12290;&#23427;&#19981;&#20165;&#25903;&#25345;iPhone&#25805;&#20316;&#31995;&#32479;&#65292;&#36824;&#25903;&#25345;&#36816;&#34892;Android&#65292; Palm&#65292;Symbian&#65292;Windows&#65292;&#20197;&#21450;Blackberry&#25805;&#20316;&#31995;&#32479;&#30340;&#31227;&#21160;&#35774;&#22791;&#12290;</p>
<p><a href="http://www.phonegap.com/2010/04/14/phonegap-and-the-apple-developer-license-agreement/" target="_blank">PhoneGap&#21516;&#26679;&#25903;&#25345;</a>&#26368;&#36817;&#26497;&#20855;&#20105;&#35758;&#30340;3.3.1&#29256;&#26412;&#30340;&#33529;&#26524;&#26381;&#21153;&#26465;&#27454;&#12290;&#25442;&#21477;&#35805;&#35828;&#65292;&#21482;&#35201;&#20320;&#30340;&#24212;&#29992;&#31243;&#24207;&#25903;&#25345;PhoneGap&#65292;&#37027;&#20040;&#23427;&#20063;&#21516;&#26679;&#20250;&#34987;&#33529;&#26524;&#20844;&#21496;&#25152;&#25509;&#21463;&#12290;&#20320;&#21487;&#20197;&#26597;&#30475;&#19968;&#19979;&#20351;&#29992;PhoneGap&#21019;&#24314;&#30340;<a href="http://phonegap.com/projects" target="_blank">&#24212;&#29992;&#31243;&#24207;&#21015;&#34920;</a>&#26469;&#36827;&#19968;&#27493;&#35748;&#35782;&#36825;&#27454;&#24320;&#21457;&#26694;&#26550;&#12290;</p>
<p>&#65339;<a href="http://www.smashingmagazine.com/2010/05/28/web-development-for-the-iphone-and-ipad-getting-started/" target="_blank">&#21407;&#25991;&#38142;&#25509;</a>&#65341;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/web-development-for-the-iphone-and-ipad-getting-started.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>17款MySQL管理与开发工具综述</title>
		<link>http://www.4ebstudio.com/mysql-admin-and-development-tools-round-up.html</link>
		<comments>http://www.4ebstudio.com/mysql-admin-and-development-tools-round-up.html#comments</comments>
		<pubDate>Wed, 01 Apr 2009 09:27:41 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[实用工具]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[数据库]]></category>
		<category><![CDATA[网站开发]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=791</guid>
		<description><![CDATA[MySQL是一款目前最流行的开源数据库，快速，可靠以及易于上手。MySQL的一个主要特性就是它的跨平台支持，他几乎可以在任何操作系统中运行，包括Windows, OSX, Linux以及其他许多许多。因此，MySQL是最好的一款数据库，我们都在使用它。目前的问题就是最好的MySQL管理与开发工具是什么呢？
本文将向你介绍一些适用于初学者及专业人士的，可在Mac, Windows以及Linux上运行的，最实用且最流行的MySQL管理与开发工具。在这些工具中，我们认为最有特色的是phpMyAdmin, MySQL Workbench, HeidiSQL以及 SequelPro。
MySQL Workbench (Win, Linux, Mac)
MySQL Workbench
该软件是一款全能的，具有可视化数据设计的数据库软件，包括与MySQL数据库系统集成的数据库设计，建模，创建及维护功能。免费版属于公众版本，几乎可以满足你的所有需求。如果你觉得免费版使用起来不安全的话，可以使用它的商业版（标准版）。



帮助与支持
MySQL Workbench帮助
下载
选择你要下载的版本

HeidiSQL &#8211; MySQL made easy (Win, Linux)
Heidi SQL
Heidi SQL是一款轻量级的，具有灵活界面的软件。它允许你浏览和编辑你的数据库，管理数据表，查看和编辑记录，管理用户权限，从文本文件导入数据，运行SQL查询，在两个数据库之间进行数据表同步，导出 指定的数据表到其它的数据库或SQL脚本，所有的这些功能都集成在一个直观的Windows界面中。


帮助与支持
Heidi SQL 论坛
下载
jHeidi Alpha 4

你也可以在iPhone上下载一个名为jHeidi Mobi版的小软件，它仅提供Oracle以及MySQL的访问功能。
jHeidi Mobi下载页面
Aqua Data Studio (Win, Linux, OS X, Solaris)
Aqua Data Studio
这是一款完整的IDE，具有4个主要功能区：数据读取以及管理工具；数据库比较工具，源控以及文件系统；为Subversion (SVN) 以及CVS集成的源控；以及一个强大的数据库模型制造工具。Studio具有一个简单统一的界面，允许开发人员同时执行多项任务。


帮助与支持
Aqua Data Studio支持
下载
Aqua Data Studio下载页面

phpMyAdmin
phpMyAdmin
这是一款非常流行，功能丰富的免费工具，使用PHP开发，可以完整管理MySQL。它可以创建及删除数据库，创建/删除/改变数据表，删除/编辑/添加字段，执行任何SQL语句，管理用户及许可权限，以及管理字段的值。这款神奇的工具有一个非常独特的功能就是你可以下载和改变主题（虽然不是一个具有里程碑意义的功能，但是的确很独特），你可以从这里下载主题：phpMyAdmin Themes。


帮助与支持
phpMyAdmin支持
文档
phpMyAdmin文档
下载
phpMyAdmin下载页面

SQLyog MySQL GUI (Win)
SQLyog
SQLyog是另外一款非常流行的SQL管理工具，具有一系列实用功能，包括可视化模型设计工具，可视化读取创建工具，智能代码完成以及一个数据/结构同步工具。它支持HTTP / HTTPs / SSH数据封装以及SSL连接。你也可以指定一个工作管理，预设数据库备份时间表以及使用通知服务来提醒你工作的完成状态。该软件提供一个免费的公众版本以及一个付费的企业版本。你也可以使用MONyog，一个MySQL监视及指导工具。


帮助与支持
SQLyogl
问题解答
SQLyog FAQ
下载
SQLyog下载页面

MySQL-Front (Win)
MYSQL Front
这款软件为MySQL数据库提供了图解式的图形用户界面，是一款“真正”的应用工具。它可以提供比系统内置的更为精细的用户界面，响应迅速，可以毫无延迟的加载HTML页面。如果你的服务商允许的话，你可以直接连接到你的数据库。否则，你需要在你的网站上安装一个小的脚本。登录信息存储在你的硬盘上，因此无需再重新登录到不同的页面。


帮助与支持
MYSQL [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL是一款目前最流行的开源数据库，快速，可靠以及易于上手。MySQL的一个主要特性就是它的跨平台支持，他几乎可以在任何操作系统中运行，包括Windows, OSX, Linux以及其他许多许多。因此，MySQL是最好的一款数据库，我们都在使用它。目前的问题就是最好的MySQL管理与开发工具是什么呢？</p>
<p>本文将向你介绍一些适用于初学者及专业人士的，可在Mac, Windows以及Linux上运行的，最实用且最流行的MySQL管理与开发工具。在这些工具中，我们认为最有特色的是phpMyAdmin, MySQL Workbench, HeidiSQL以及 SequelPro。</p>
<h3>MySQL Workbench (Win, Linux, Mac)</h3>
<p><a href="http://dev.mysql.com/workbench/">MySQL Workbench</a><br />
该软件是一款全能的，具有可视化数据设计的数据库软件，包括与MySQL数据库系统集成的数据库设计，建模，创建及维护功能。免费版属于公众版本，几乎可以满足你的所有需求。如果你觉得免费版使用起来不安全的话，可以使用它的商业版（标准版）。</p>
<p><img class="alignnone size-full wp-image-1179" title="mysqlscreen1" src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen1.jpg" alt="mysqlscreen1" /></p>
<p><span id="more-791"></span></p>
<ul>
<li>帮助与支持<br />
<a href="http://dev.mysql.com/workbench/?page_id=10">MySQL Workbench帮助</a></li>
<li>下载<br />
<a href="http://dev.mysql.com/downloads/workbench/5.1.html">选择你要下载的版本</a></li>
</ul>
<h3>HeidiSQL &#8211; MySQL made easy (Win, Linux)</h3>
<p><a href="http://www.heidisql.com/?&amp;">Heidi SQL</a><br />
Heidi SQL是一款轻量级的，具有灵活界面的软件。它允许你浏览和编辑你的数据库，管理数据表，查看和编辑记录，管理用户权限，从文本文件导入数据，运行SQL查询，在两个数据库之间进行数据表同步，导出 指定的数据表到其它的数据库或SQL脚本，所有的这些功能都集成在一个直观的Windows界面中。</p>
<p><a href="http://www.heidisql.com/?&amp;"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen2.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助与支持<br />
<a href="http://www.heidisql.com/support.php">Heidi SQL 论坛</a></li>
<li>下载<br />
<a href="http://www.heidisql.com/jheidi/">jHeidi Alpha 4</a></li>
</ul>
<p>你也可以在iPhone上下载一个名为jHeidi Mobi版的小软件，它仅提供Oracle以及MySQL的访问功能。</p>
<p><a href="http://www.heidisql.com/jheidi/">jHeidi Mobi下载页面</a></p>
<h3>Aqua Data Studio (Win, Linux, OS X, Solaris)</h3>
<p><a href="http://www.aquafold.com/">Aqua Data Studio</a></p>
<p>这是一款完整的IDE，具有4个主要功能区：数据读取以及管理工具；数据库比较工具，源控以及文件系统；为Subversion (SVN) 以及CVS集成的源控；以及一个强大的数据库模型制造工具。Studio具有一个简单统一的界面，允许开发人员同时执行多项任务。</p>
<p><a href="http://www.aquafold.com/"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen3.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助与支持<br />
<a href="http://www.aquafold.com/support.html">Aqua Data Studio支持</a></li>
<li>下载<br />
<a href="http://www.aquafold.com/downloads.html">Aqua Data Studio下载页面</a></li>
</ul>
<h3>phpMyAdmin</h3>
<p><a href="http://www.phpmyadmin.net/home_page/index.php">phpMyAdmin</a></p>
<p>这是一款非常流行，功能丰富的免费工具，使用PHP开发，可以完整管理MySQL。它可以创建及删除数据库，创建/删除/改变数据表，删除/编辑/添加字段，执行任何SQL语句，管理用户及许可权限，以及管理字段的值。这款神奇的工具有一个非常独特的功能就是你可以下载和改变主题（虽然不是一个具有里程碑意义的功能，但是的确很独特），你可以从这里下载主题：<a href="http://www.phpmyadmin.net/home_page/themes.php">phpMyAdmin Themes</a>。</p>
<p><a href="http://www.phpmyadmin.net/home_page/index.php"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/phpmy.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助与支持<br />
<a href="http://www.phpmyadmin.net/home_page/support.php">phpMyAdmin支持</a></li>
<li>文档<br />
<a href="http://www.phpmyadmin.net/home_page/docs.php">phpMyAdmin文档</a></li>
<li>下载<br />
<a href="http://www.phpmyadmin.net/home_page/downloads.php">phpMyAdmin下载页面</a></li>
</ul>
<h3>SQLyog MySQL GUI (Win)</h3>
<p><a href="http://www.webyog.com/en/index.php">SQLyog</a></p>
<p>SQLyog是另外一款非常流行的SQL管理工具，具有一系列实用功能，包括可视化模型设计工具，可视化读取创建工具，智能代码完成以及一个数据/结构同步工具。它支持HTTP / HTTPs / SSH数据封装以及SSL连接。你也可以指定一个工作管理，预设数据库备份时间表以及使用通知服务来提醒你工作的完成状态。该软件提供一个免费的公众版本以及一个付费的企业版本。你也可以使用<a href="http://www.webyog.com/en/screenshots_monyog.php">MONyog</a>，一个MySQL监视及指导工具。</p>
<p><a href="http://www.webyog.com/en/index.php"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/yog.gif" alt="SQLyog MySQL GUI Screenshot" /></a></p>
<ul>
<li>帮助与支持<br />
<a href="http://www.webyog.com/forums/">SQLyogl</a></li>
<li>问题解答<br />
<a href="http://www.webyog.com/faq/">SQLyog FAQ</a></li>
<li>下载<br />
<a href="http://www.webyog.com/en/downloads.php#sqlyog">SQLyog下载</a>页面</li>
</ul>
<h3>MySQL-Front (Win)</h3>
<p><a href="http://www.mysqlfront.de/">MYSQL Front</a></p>
<p>这款软件为MySQL数据库提供了图解式的图形用户界面，是一款“真正”的应用工具。它可以提供比系统内置的更为精细的用户界面，响应迅速，可以毫无延迟的加载HTML页面。如果你的服务商允许的话，你可以直接连接到你的数据库。否则，你需要在你的网站上安装一个小的脚本。登录信息存储在你的硬盘上，因此无需再重新登录到不同的页面。</p>
<p><a href="http://www.mysqlfront.de/"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen6.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助与支持<br />
<a href="http://www.mysqlfront.de/forum/">MYSQL Frontl论坛</a></li>
<li>Download<br />
<a href="http://www.mysqlfront.de/download.html">MYSQL Front下载页面</a></li>
</ul>
<h3>Sequel Pro (Mac OS X)</h3>
<p><a href="http://www.sequelpro.com/">Sequel Pro</a></p>
<p>这款MAC OSX下的数据库管理软件可以让你直接读取本地或者远程服务器上的数据库，提供了多种格式的文件导入导出功能，包括SQL, CSV以及XML。Sequel Pro是开源CocoaMySQL项目的一款派生程序。它自称为“Mac OS X下外观最好看的MySQL数据库管理程序”，看看下面的屏幕截图的确没错，界面非常漂亮也极酷。</p>
<p><a href="http://www.sequelpro.com/"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/sequel.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助与支持<br />
<a href="http://www.sequelpro.com/support.html">Sequel Pro支持页面</a></li>
<li>下载<br />
<a href="http://www.sequelpro.com/download.html">Sequel Pro下载页面</a></li>
</ul>
<h3>SQL Buddy (Web-App)</h3>
<p><a href="http://www.sqlbuddy.com/">SQL Buddy</a></p>
<p>这款超酷的轻量级ajax数据库管理工具是一款令人震惊的工具。安装非常非常简单，解压文件包到你的服务器即可。如果需要升级的话，删除旧版本然后替换成新的版本。由于是基于Ajax的，因此对浏览器非常友好，可以使用标准的浏览器功能比如“书签”，“返回”以及“刷新”。该工具还提供一些有用的快捷键，你可以查看这里：<a href="http://www.sqlbuddy.com/help/">SQL Buddy Keyboard Sh快捷键</a>。</p>
<p><a href="http://www.sqlbuddy.com/"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen8.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://www.sqlbuddy.com/help/">SQL Buddy Support</a></li>
<li>下载<br />
<a href="http://www.sqlbuddy.com/download/">SQL Buddy下载页面</a></li>
</ul>
<h3>EMS SQL Manager (Win)</h3>
<p><a href="http://www.sqlmanager.net/en/products/mysql/manager">EMS SQL Manager</a></p>
<p>EMS SQL Manager是一款高性能的数据库管理和开发工具。特性包括MySQL切换，查看，储存进程及功能，InnoDB外键（foreign key），允许你创建/编辑所有的MySQL数据库对象，设计数据库视觉样式，运行SQL脚本，导入和导出数据库数据，管理用户及权限以及其他的用户属性。该软件是一款是商业软件，不过他的免费版本已经足够强大了，可以提供很多特性。</p>
<p><a href="http://www.sqlmanager.net/en/products/mysql/manager"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen10.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://www.sqlmanager.net/products/mysql/manager/faq">EMS SQL Manager支持</a></li>
<li>下载<br />
<a href="http://www.sqlmanager.net/en/products/mysql/manager/download">EMS SQL Manager下载</a>页面</li>
</ul>
<h3>Navicat Lite MySQL Admin Tool (Win, OS X, Linux)</h3>
<p><a href="http://mysql.navicat.com/">Navicat Lite MySQL Admin Tool</a></p>
<p><a href="http://mysql.navicat.com/"></a>Navicat是一款快速，值得信赖并且流行的（已经被下载了上万次）数据库管理工具，旨在简化数据库管理以及降低管理成本。Navicat 迎合数据库管理人员，开发人员以及中小企业而设计的直观GUI（图形用户界面）可以让你以安全和简单的方式创建，组织，读取以及共享信息。Navicat Lite为非赢利性客户提供了免费下载。</p>
<p><a href="http://mysql.navicat.com/"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen14.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://support.navicat.com/">Navicat支持</a></li>
<li>下载<br />
<a href="http://mysql.navicat.com/download.html">Navicat下载</a></li>
</ul>
<h3>DreamCoder for MySQL (Win)</h3>
<p><a href="http://www.sqldeveloper.net/index.php">DreamCoder for MySQL</a></p>
<p>DreamCoder支持3.23到6.0版本的MySQL，并且支持所有的MySQL特性，包括数据表，查看，进程，函数，切换，InnoDB Table，外键，UDFS，BLOB Type等。它还包括一些非常先进的选项来进行数据操作，视觉化创建查询，执行查询，脚本执行，生成报告，数据监控以及从一些流行的格式导入导出数据。DreamCoder对于MySQL的新手来说易于上手，对于专业人士来说功能足够强大。</p>
<p><a href="http://www.sqldeveloper.net/index.php"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen15.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://www.sqldeveloper.net/support.html">DreamCoder支持</a></li>
<li>下载<br />
<a href="http://www.sqldeveloper.net/download.html">DreamCoder下载页面</a></li>
</ul>
<h3>Toad MySQL (Win)</h3>
<p><a href="http://www.toadsoft.com/toadmysql/">Toad MySQL</a></p>
<p><a href="http://www.toadsoft.com/toadmysql/"></a>Toad MySQL 是一款数据库开发和管理工具，提供了高效率的特性来快速创建和执行访问以及管理复杂的数据库系统。它提供的工具可以进行比较，执行以及搜索数据对象，管理项目，导入导出数据。该软件使用了现今流行的“标签文档界面（Tabbed Document Interface）”，这意味着你无需不断的改变，重排或者平铺你的窗口就可以查看到一个完整的最大化的窗口。</p>
<p><a href="http://www.toadsoft.com/toadmysql/"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen16.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://www.toadsoft.com/toadmysql/faq.htm">Toad MySQL 支持</a></li>
<li>下载<br />
<a href="http://www.toadsoft.com/toadmysql/FreewareDownload.htm">Toad MySQL下载页面</a></li>
</ul>
<h3>DB Tools Manager Professional (Win)</h3>
<p><a href="http://www.dbtools.com.br/EN/dbmanagerpro/">DB Tools Manager Professional</a></p>
<p>DBManager 是一款相当强大的数据库管理工具，内建MySQL, PostgreSQL, Interbase/Firebird, SQLite, DBF tables, MSAccess, MSSQL Server, Sybase, Oracle以及ODBC数据库引擎，使之成为一款非常高级的数据库应用程序。免费版本（标准版）具有一些小巧的特性可以为初级使用者提供基本的数据管理需求，你可以进行非商业化的使用。</p>
<p><a href="http://www.dbtools.com.br/EN/dbmanagerpro/"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen17.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://www.dbtools.com.br/EN/forums">DB Tools Manager论坛</a></li>
<li>下载<br />
<a href="http://www.dbtools.com.br/EN/downloads">DB Tools Manager下载页面</a></li>
</ul>
<h3>MyCon &#8211; MySQL GUI (Win)</h3>
<p><a href="http://www.scibit.com/products/mycon/">MyCon &#8211; MySQL GUI</a></p>
<p>MyCon是一款非常强大的基于窗口的图形用户界面（MySQL GUI），可以进行MySQL服务器端的数据库管理。这款使用简单的MySQL GUI客户端包括所有的功能以及工具，满足你作为DBA，开发人员，管理人员，汇报人员或是普通的终端使用者的所有需求。</p>
<ul>
<li>帮助与支持<br />
<a href="http://forum.scibit.com/">MyCon &#8211; MySQL GUI论坛</a></li>
<li>下载<br />
<a href="http://www.scibit.com/products/mycon/">Free MyCon下载页面</a></li>
</ul>
<h3>MyDB Studio (Win)</h3>
<p><a href="http://www.mydb-studio.com/">MyDB Studio</a></p>
<p>MyDB Studio是MySQL服务器管理的工具套件。MyDB Studio（免费版）专为MySQL开发人员及管理人员设计，可以快速的进行管理，创建，执行访问以及有效的开发SQL和PHP代码。可以关注一下即将面试的Adobe Air版本的MyDB Studio，据说非常酷。</p>
<p><a href="http://www.mydb-studio.com/"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen18.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://www.mydb-studio.com/index.php?lang=en&amp;p=4">MyDB Studio FAQ</a></li>
<li>下载<br />
<a href="http://www.mydb-studio.com/index.php?lang=en&amp;p=3">MyDB Studio下载页面</a></li>
</ul>
<h3>MySQL Sidu (Win)</h3>
<p><a href="http://sidu.sourceforge.net/mysql-sidu.php">MySQL Sidu</a></p>
<p>MySQL Sidu是一款免费的MySQL客户端程序，通过你的浏览器进行工作，简单，直观并且 易于上手。Sidu并不具有和其他类似工具一样强大的功能，但是它捆绑的特性也足够用了。虽然功能有限，但是正如他的名字那样可以完成基本需求（Sidu由Select Insert Delete Update几个单词的首字母组成，意思是选择，插入，删除，更新）。你也可以使用Firefox的扩展插件在网页上进行工作。详细说明可以看这里：<a href="http://sidu.sourceforge.net/mysql-sidu-addon.php">Firefox addon for MySQL Sidu</a>。</p>
<p><a href="http://sidu.sourceforge.net/mysql-sidu.php"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen19.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://sidu.sourceforge.net/mysql-sidu-support.php">MySQL Sidu支持</a></li>
<li>下载<br />
<a href="http://sidu.sourceforge.net/download-mysql-client-free.php">MySQL Sidu下载页面</a></li>
</ul>
<h3>apache的朋友 &#8211; xampp (Win, Mac, Linux, Solaris)</h3>
<p><a href="http://sidu.sourceforge.net/mysql-sidu.php">xampp</a></p>
<p><a href="http://sidu.sourceforge.net/mysql-sidu.php"></a>安装Apache服务器并非容易的事情，如果你还想再添加MySQL, PHP以及Perl就更加困难了。XAMPP是一款包含了MySQL, PHP以及Perl的易于安装的Apache安装包。它的安装和使用相当简单，下载，解压，执行即可。</p>
<p><a href="http://www.apachefriends.org/en/xampp.html"><img src="http://4ebstudio.com/wp-content/uploads/2009/04/mysqlscreen20.jpg" alt="MySql Tools Screenshot" /></a></p>
<ul>
<li>帮助和支持<br />
<a href="http://www.apachefriends.org/en/contact.html">xampp支持</a></li>
<li>下载<br />
<a style="text-decoration: none;" href="http://www.apachefriends.org/en/xampp.html">xampp下载页面</a></li>
</ul>
<p>[<a href="http://www.smashingmagazine.com/2009/03/25/mysql-admin-and-development-tools-round-up/">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/mysql-admin-and-development-tools-round-up.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>开源社交网络程序BuddyPress安装指南</title>
		<link>http://www.4ebstudio.com/social-networking-with-buddypress.html</link>
		<comments>http://www.4ebstudio.com/social-networking-with-buddypress.html#comments</comments>
		<pubDate>Tue, 31 Mar 2009 06:34:14 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[设计教程]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=96</guid>
		<description><![CDATA[Automattic，WordPress的子公司，近期近期正在研发一款名为BuddyPress的社交网络软件，并将于近期推出。该软件建立在WordPress的基础上，由Andy Peatling开发，让你让你搭建类似Facebook的社交网络平台。下面，让我们来看看如何安装BuddyPress。
Step 1 &#8211; 什么是BuddyPress?


BuddyPress是一款基于WordPress Multi-User (MU)的社交网络应用插件。WordPress MU是WordPress.com的开发的另一款软件，允许搭建多用户博客。BuddyPress为WordPress增加了许多新的社交互动特性。这些特性可以一次添加也可以根据需要独立安装。以下就是这些特性：

WordPress博客
会员个人档案
私人信息
朋友网络
包括博客，照片以及其他用户自定内容的群组
&#8220;The Wire&#8221; (类似Facebook的涂鸦墙wall)
Activity/Action Stream
bbPress论坛


查看BuddyPres网站上的所有特性演示

今天，我们将安装一套完整的BuddyPress，从零开始建设一个社交网络。
软件为RC版本，但是已经非常接近最终版。目前的版本通过提供一个管理员控制面板以及所有的上述的基本功能来帮助你开始建设社交网络。
Step 2 &#8211; 安装需求
在你安装BuddyPress系统之前，请确保你的服务器提供了以下两块内容：

一个MySQL数据库来储存BuddyPress信息。如果你还没有建立数据库，那么为用户新建一个，并包含所有用户特权（如更新，插入，删除，选择等）。请务必记住用户名及密码以备后用。
一个mod rewrite模块，这样你可以拥有简洁链接。如果你已经使用WordPress或者其他软件来生成简洁链接，那么你可以不需要添加任何内容，直接进入下一步。


Step 3 &#8211; 下载WordPress MU
在安装BuddyPress之前，你需要安装WordPress MU副本。下载最新版本的压缩文件 (ZIP) (TAR.GZ)并解压缩。解压后，你应该可以看到一个类似&#8221;wordpress-mu&#8221;名字的文件夹。
将文件上传到你将要搭建网站的目录，可以是主域名下，也可以是二级域名下。

Step 4 &#8211; 安装WordPress MU
一旦上传完成以后你可以直接安装WordPress MU。
在浏览器的地址栏输入你的上传文件路径，index.php将自动执行。你将会看到一个需要输入一些细节的屏幕。具体输入方法如下：

Blog Addresses &#8211; 本文将选择&#8221;sub-directories&#8221;。如果你启用了Wildcard DNS记录，你可以选择另外一个选项，不过文本将不会涉及到该选项的使用方法了。
Database Name &#8211; 在第2步中你建立的数据库名称。
User Name &#8211; 第2步创建的用户名。
Password - 第2步创建的密码。
Database Host &#8211; 如果MySQL服务器和网站服务器相同的话，那么这里通常就是192.168.0.169 。只有在安装显示服务器设置错误的时候才可以更改此项。
Server Address &#8211; 确认你的安装路径所对应的服务器/域名。
Site Title &#8211;  社交网网站的名称，根据你的需要自定。
Email &#8211; 输入有效的email地址以便使用管理员帐户。


一但你核查上述信息无误后，点击提交。如果所有填写的信息均正确，那么将会显示&#8221;Installation Finished!&#8221;屏幕，上面会显示你的用户名和密码，同时你还会收到一封包括所有设置信息的邮件。
在继续之前，请详细阅读Installation Finished页面上的设置许可指南。

Step 5 &#8211; 下载BuddyPress
这一步，你可以安装BuddyPress系统了。因为我们已经安装了完整的系统，因此你可以从这里下载&#8221;combo&#8221;文件。
解压combo文件，并将所有解压内容上床到wp-content文件夹下的mu-plugins文件夹内。上zip文件包内的所有文件夹和文件，并确保读取权限为755。
将刚上传到的wp-content下的mu-plugins/bp-themes移走。确保所有的文件夹都被授予755权限。

Step 6 [...]]]></description>
			<content:encoded><![CDATA[<p>Automattic，WordPress的子公司，近期近期正在研发一款名为BuddyPress的社交网络软件，并将于近期推出。该软件建立在WordPress的基础上，由Andy Peatling开发，让你让你搭建类似Facebook的社交网络平台。下面，让我们来看看如何安装BuddyPress。</p>
<h3 style="font-size: 1.17em;">Step 1 &#8211; 什么是BuddyPress?</h3>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/buddypressintro.png" alt="BuddyPress" /></div>
<div><span id="more-96"></span></div>
<p>BuddyPress是一款基于WordPress Multi-User (MU)的社交网络应用插件。WordPress MU是<a href="http://wordpress.com/">WordPress.com</a>的开发的另一款软件，允许搭建多用户博客。BuddyPress为WordPress增加了许多新的社交互动特性。这些特性可以一次添加也可以根据需要独立安装。以下就是这些特性：</p>
<ul>
<li>WordPress博客</li>
<li>会员个人档案</li>
<li>私人信息</li>
<li>朋友网络</li>
<li>包括博客，照片以及其他用户自定内容的群组</li>
<li>&#8220;The Wire&#8221; (类似Facebook的涂鸦墙wall)</li>
<li>Activity/Action Stream</li>
<li>bbPress论坛</li>
</ul>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/features.png" alt="Features" /></div>
<p>查看BuddyPres网站上的<a href="http://buddypress.org/demo/">所有特性演示</a></p>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/demo.png" alt="Demo" /></div>
<p>今天，我们将安装一套完整的BuddyPress，从零开始建设一个社交网络。</p>
<p>软件为RC版本，但是已经非常接近最终版。目前的版本通过提供一个管理员控制面板以及所有的上述的基本功能来帮助你开始建设社交网络。</p>
<h3 style="font-size: 1.17em;">Step 2 &#8211; 安装需求</h3>
<p>在你安装BuddyPress系统之前，请确保你的服务器提供了以下两块内容：</p>
<ul>
<li>一个<a href="http://net.tutsplus.com/tutorials/php/everything-you-need-to-get-started-with-mysql/">MySQL数据库</a>来储存BuddyPress信息。如果你还没有建立数据库，那么为用户新建一个，并包含所有用户特权（如更新，插入，删除，选择等）。请务必记住用户名及密码以备后用。</li>
<li>一个<a href="http://httpd.apache.org/docs/mod/mod_rewrite.html">mod rewrite模块</a>，这样你可以拥有简洁链接。如果你已经使用WordPress或者其他软件来生成简洁链接，那么你可以不需要添加任何内容，直接进入下一步。</li>
</ul>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/phpmyadmin.png" alt="phpMyAdmin" /></div>
<h3 style="font-size: 1.17em;">Step 3 &#8211; 下载WordPress MU</h3>
<p>在安装BuddyPress之前，你需要安装WordPress MU副本。下载<a href="http://mu.wordpress.org/latest.zip">最新版本的压缩文件 (ZIP)</a> (<a href="http://mu.wordpress.org/latest.tar.gz">TAR.GZ</a>)并解压缩。解压后，你应该可以看到一个类似&#8221;wordpress-mu&#8221;名字的文件夹。</p>
<p>将文件上传到你将要搭建网站的目录，可以是主域名下，也可以是二级域名下。</p>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/ftp.png" alt="FTP/Files" /></div>
<h3 style="font-size: 1.17em;">Step 4 &#8211; 安装WordPress MU</h3>
<p>一旦上传完成以后你可以直接安装WordPress MU。</p>
<p>在浏览器的地址栏输入你的上传文件路径，index.php将自动执行。你将会看到一个需要输入一些细节的屏幕。具体输入方法如下：</p>
<ul>
<li><strong>Blog Addresses</strong> &#8211; 本文将选择&#8221;sub-directories&#8221;。如果你启用了Wildcard DNS记录，你可以选择另外一个选项，不过文本将不会涉及到该选项的使用方法了。</li>
<li><strong>Database Name</strong> &#8211; 在第2步中你建立的数据库名称。</li>
<li><strong>User Name</strong> &#8211; 第2步创建的用户名。</li>
<li><strong>Password</strong> - 第2步创建的密码。</li>
<li><strong>Database Host</strong> &#8211; 如果MySQL服务器和网站服务器相同的话，那么这里通常就是192.168.0.169 。只有在安装显示服务器设置错误的时候才可以更改此项。</li>
<li><strong>Server Address</strong> &#8211; 确认你的安装路径所对应的服务器/域名。</li>
<li><strong>Site Title</strong> &#8211;  社交网网站的名称，根据你的需要自定。</li>
<li><strong>Email</strong> &#8211; 输入有效的email地址以便使用管理员帐户。</li>
</ul>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/wordpress-mu.png" alt="Install" /></div>
<p>一但你核查上述信息无误后，点击提交。如果所有填写的信息均正确，那么将会显示&#8221;Installation Finished!&#8221;屏幕，上面会显示你的用户名和密码，同时你还会收到一封包括所有设置信息的邮件。</p>
<p>在继续之前，请详细阅读Installation Finished页面上的设置许可指南。</p>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/install.png" alt="Install" /></div>
<h3 style="font-size: 1.17em;">Step 5 &#8211; 下载BuddyPress</h3>
<p>这一步，你可以安装BuddyPress系统了。因为我们已经安装了完整的系统，因此你可以从<a href="http://buddypress.org/download/combo/latest.zip">这里</a>下载&#8221;combo&#8221;文件。</p>
<p>解压combo文件，并将所有解压内容上床到wp-content文件夹下的mu-plugins文件夹内。上zip文件包内的所有文件夹和文件，并确保读取权限为755。</p>
<p>将刚上传到的wp-content下的mu-plugins/bp-themes移走。确保所有的文件夹都被授予755权限。</p>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/mu-plugins.png" alt="Files" /></div>
<h3 style="font-size: 1.17em;">Step 6 &#8211; 安装BuddyPress</h3>
<p>一旦文件都上传完毕，使用刚才创建的用户名和密码登录到WordPress MU的管理员控制面板。登录地址（刚才安装WordPress MU的时候发送到了你的email邮箱）格式如<a href="http://yourdomain.tld/folder/wp-login.php">http://yourdomain.tld/folder/wp-login.php</a>。</p>
<p>在&#8221;Site Admin&#8221;菜单下你可以看到&#8221;Themes&#8221; 链接并点击它。你将会看到一系列已经安装好的WordPress MU主题，其中一个是BuddyPress主题。在&#8221;BuddyPress Home Theme&#8221;前选择&#8221;Yes&#8221;，并且点击&#8221;Update Themes&#8221;。</p>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/themes.png" alt="Themes" /></div>
<p>最后，如果你需要用户可以登录到你的网站你需要启用注册功能。在&#8221;Site Admin&#8221;菜单下点选&#8221;Options&#8221;并确认&#8221;Allow new registrations&#8221;选择了Enabled选项。</p>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/allownewreg.png" alt="Allow New Registration Settings" /></div>
<p>好了，现在你已经可以使用你的社交网络 了。当你登录到管理控制板的时候，你可以在&#8221;Site Admin&#8221;下的 &#8221;BuddyPress&#8221;链接内进行一些格式化设定。如果想预览你的社交网络以及档案，从屏幕顶部的管理条上点击&#8221;My Account&#8221; 并且选择&#8221;Activity&#8221; 或&#8221;Profile&#8221;。</p>
<h3 style="font-size: 1.17em;">Step 7 &#8211; 额外的插件和主题</h3>
<p>目前BuddyPress的插件还比较少，不过一旦正式发布以后将会像WordPress一样有大量的插件涌入。不过，现在有几款非常酷的<a href="http://buddypress.org/extend/plugins/">插件</a>可供BuddyPress使用：</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/bpgroups">bpGroups</a> 改善群组系统。</li>
<li><a href="http://wordpress.org/extend/plugins/invitefriends-plug-in">Invite Friends</a> 允许你添加其他社交网络（如Twitter, Facebook 以及 GMail）上的朋友。</li>
<li><a href="http://wordpress.org/extend/plugins/twittertowire">Twitter To Wire</a> 自动添加你的tweet到wire上 (BuddyPress版本的Facebook“涂鸦墙wall”) 。</li>
</ul>
<p>BuddyPress也为主题提供了一个页面，但是目前还没有现成的主题可供下载。如果你非常渴望看到主题系统的强大力量，那么你可以参考以下的一些例子：<a href="http://wannanetwork.com/">WannaNetwork</a>, <a href="http://grungepress.com/">GrungePress</a>, 和<a href="http://flokka.com/">Flokka</a>。</p>
<div><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/263_buddypress/buddypress/extend.png" alt="Extend Screen Shot" /></div>
<p>[<a href="http://net.tutsplus.com/tutorials/wordpress/social-networking-with-buddypress/">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/social-networking-with-buddypress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10个极具创意的用户交互界面及其制作方法</title>
		<link>http://www.4ebstudio.com/10-creative-rich-ui-interfaces-how-to-create-them.html</link>
		<comments>http://www.4ebstudio.com/10-creative-rich-ui-interfaces-how-to-create-them.html#comments</comments>
		<pubDate>Mon, 30 Mar 2009 05:53:40 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[设计教程]]></category>
		<category><![CDATA[设计灵感]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[动态菜单]]></category>
		<category><![CDATA[折叠版]]></category>
		<category><![CDATA[滑动版]]></category>
		<category><![CDATA[网页特效]]></category>
		<category><![CDATA[表单美化]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=82</guid>
		<description><![CDATA[
用户体验在近几年得到了迅速的改善，主要体现在丰富的的用户交互界面上。AJAX, javascript以及CSS的广泛应用为用户提供了先进的，尖端的以及专业的动态交互界面解决方案。
之前已经有了很多文章来介绍一些令人惊叹的 javascript, Ajax和CSS技术以及哪里可以找到这些技术的使用方法。今天，我们将来看看10个极具创意且UI界面功能丰富的网站，以及如何使用文中提到的技术来制作类似的交互效果。
1. Alex Buga (滑移，可拖动的页脚以及动态按钮)

在这个绝对难以置信的设计中你会看到:


1.1 一个具有美观的动态悬浮效果的菜单
制作方法 » 使用超级弹性特效制作极具视觉冲击的网页菜单
该教程讲解了如何使用几行Javascript代码以及MooTools库来设计一个令人振奋的弹性菜单。

查看演示
1.2 滑动的文章显示面板
制作方法 » 漂亮的动态周线表
该教程向你讲述了如何设计一款带美观的，带有每日注释的动态周记，你可以在你的网站中使用该方法进行自定义设置。

查看演示
1.3 可以拖动的页脚
制作方法 » 事件委派表中的拖拽以及调整大小
只有父元素在控制事件。在本例中将由编辑容器内的元素来控制事件。如果你向你的容其中添加动态的元素，你无需再附上任何事件。

查看演示
2. Ricoverdeo (幻灯效果)

一个非常简洁的滑动效果，并且使用了大量的插图作为辅助。

2.1 在悬浮元素上添加简单的滑动效果
制作方法 » Easy Slider 1.5 &#8211; 简单的制作图片与内容滑动的jQuery插件
Easy Slider (我对这款插件的叫法)可以使图片或者任何内容通过点击或自动在水平或垂直方向上滑动。主要特性包括：连续滑动，“go to first”和&#8221;go to last&#8221;按钮，隐藏控制工具，可选的控制按钮的代码标记，在同一页面上垂直滑动或出现多多种滑动。

查看演示
3. jasonreedwebdesign (滑动标签，折叠面板)

Jason Reed在他的个人作品集上使用了一款流行的折叠面板效果允许用户进行页面导航。他还在折叠面板内使用了一款非常漂亮的滑动标签来增强界面结构。

3.1 互动标签
制作方法 » 自动滑动标签
滑动标签是一个mootools插件，可以添加一些漂亮简洁的效果。它和Panic Software&#8217;s Coda网站上的滑动效果相似。另外，它还可以在固定的时间间隔内自动滑移。

查看演示
3.2 折叠面板
制作方法 » 垂直折叠面板
该款插件提供了一些简单的选项来改变折叠面板的外观和动作。

制作方法 » 使用Mootools制作折叠面板


4. Dragon Interactive (动态菜单)

我非常喜欢他那叹为观止的菜单，乍一看以为是一个flash，后来通过查看代码发现就是使用了简单的XHTML，CSS以及Javascript。

3.1 动态菜单
制作方法» 使用jQuery制作动态菜单

查看演示

5. DesignShack (切换页面布局)

大多数CSS图库网站都会提供给用户改变页面布局的功能，从而使用户可以更加轻松，迅速的获取信息。 ƒ

5.1 转换页面外观
制作方法 » 使用CSS和jQuery显示转换钮
通过使用CSS和jQuery让用户切换页面布局。

查看演示

6. Profoto (面包屑Breadcrumbs)

Profoto有一个独特的面包屑(breadcrumb)菜单。点击面包屑链接的时候会在它的下方打开一个区域，给用户一些附加属性进行选择。

6.1 面包屑Breadcrumb
制作方法 » jBreadCrumb
jBreadCrumb是一款jQuery插件，可以通过更为灵活和聪明的方式来显示面包屑 。

查看演示

7. Shelfari [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>用户体验在近几年得到了迅速的改善，主要体现在丰富的的用户交互界面上。AJAX, javascript以及CSS的广泛应用为用户提供了先进的，尖端的以及专业的动态交互界面解决方案。</p>
<p>之前已经有了很多文章来介绍一些令人惊叹的 javascript, Ajax和CSS技术以及哪里可以找到这些技术的使用方法。今天，我们将来看看10个极具创意且UI界面功能丰富的网站，以及如何使用文中提到的技术来制作类似的交互效果。</p>
<h4 style="font-size: 1em;">1. <a href="http://www.alexbuga.com/v8/">Alex Buga (滑移</a><a href="http://www.alexbuga.com/v8/">，可拖动的页脚</a><a href="http://www.alexbuga.com/v8/">以及动态按钮)</a></h4>
<p><a href="http://www.alexbuga.com/v8/"></a><a href="http://www.alexbuga.com/v8/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_1.jpg" alt="Creative &amp; Rich UI interfaces" /></a><br />
在这个绝对难以置信的设计中你会看到:</p>
<p><span id="more-82"></span></p>
<ul>
<li><strong>1.1 一个具有美观的动态悬浮效果的菜单</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://woork.blogspot.com/2008/12/super-elastic-effect-to-design-high.html">使用超级弹性特效制作极具视觉冲击的网页菜单</a></h5>
<p>该教程讲解了如何使用几行Javascript代码以及MooTools库来设计一个令人振奋的弹性菜单。</p>
<p><a href="http://woork.blogspot.com/2008/12/super-elastic-effect-to-design-high.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_1_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://woorktuts.110mb.com/elasticmenu-mootools/index.html">查看演示</a></p>
<li><strong>1.2 滑动的文章显示面板</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://woork.blogspot.com/2009/01/elegant-animated-weekly-timeline-for.html">漂亮的动态周线表</a></h5>
<p>该教程向你讲述了如何设计一款带美观的，带有每日注释的动态周记，你可以在你的网站中使用该方法进行自定义设置。</p>
<p><a href="http://woork.blogspot.com/2009/01/elegant-animated-weekly-timeline-for.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_1_3.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://woorktuts.110mb.com/weeklytimeline/timeline.html">查看演示</a></p>
<li><strong>1.3 可以拖动的页脚</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://batiste.dosimple.ch/blog/2008-05-18-1/">事件委派表中的拖拽以及调整大小</a></h5>
<p>只有父元素在控制事件。在本例中将由编辑容器内的元素来控制事件。如果你向你的容其中添加动态的元素，你无需再附上任何事件。</p>
<p><a href="http://batiste.dosimple.ch/blog/2008-05-18-1/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_1_4.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://batiste.dosimple.ch/blog/posts/2008-05-18-1/jquery-drag-and-drop-and-resize-event-delegation.html">查看演示</a></ul>
<h4 style="font-size: 1em;">2. <a href="http://www.ricoverdeo.com/">Ricoverdeo (幻灯效果)</a></h4>
<p><a href="http://www.ricoverdeo.com/"></a><a href="http://www.ricoverdeo.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a><br />
一个非常简洁的滑动效果，并且使用了大量的插图作为辅助。</p>
<ul>
<li><strong>2.1 在悬浮元素上添加简单的滑动效果</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding">Easy Slider 1.5 &#8211; 简单的制作图片与内容滑动的jQuery插件</a></h5>
<p>Easy Slider (我对这款插件的叫法)可以使图片或者任何内容通过点击或自动在水平或垂直方向上滑动。主要特性包括：连续滑动，“go to first”和&#8221;go to last&#8221;按钮，隐藏控制工具，可选的控制按钮的代码标记，在同一页面上垂直滑动或出现多多种滑动。</p>
<p><a href="http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_1_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://cssglobe.com/lab/easyslider1.5/05.html">查看演示</a></ul>
<h4 style="font-size: 1em;">3. <a href="http://www.jasonreedwebdesign.com/">jasonreedwebdesign (滑动标签，折叠面板)</a></p>
<p><a href="http://www.jasonreedwebdesign.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_3.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p>Jason Reed在他的个人作品集上使用了一款流行的折叠面板效果允许用户进行页面导航。他还在折叠面板内使用了一款非常漂亮的滑动标签来增强界面结构。</p>
<ul>
<li><strong>3.1 互动标签</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://creativepony.com/journal/scripts/auto-sliding-tabs/">自动滑动标签</a></h5>
<p>滑动标签是一个mootools插件，可以添加一些漂亮简洁的效果。它和Panic Software&#8217;s Coda网站上的滑动效果相似。另外，它还可以在固定的时间间隔内自动滑移。</p>
<p><a href="http://creativepony.com/journal/scripts/auto-sliding-tabs/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/t2.gif" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://creativepony.com/demos/auto-sliding-tabs/">查看演示</a></p>
<li><strong>3.2 折叠面板</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://dev.portalzine.de/index?/Horizontal_Accordion--print">垂直折叠面板</a></h5>
<p>该款插件提供了一些简单的选项来改变折叠面板的外观和动作。</p>
<p><a href="http://dev.portalzine.de/index?/Horizontal_Accordion--print"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/j-5.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://www.nyokiglitter.com/tutorials/horizontal.html">使用</a><a href="http://www.nyokiglitter.com/tutorials/horizontal.html">Mootools</a><a href="http://www.nyokiglitter.com/tutorials/horizontal.html">制作折叠面板</a></h5>
<p><a href="http://www.nyokiglitter.com/tutorials/horizontal.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_3_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></ul>
</h4>
<h4 style="font-size: 1em;">4. <a href="http://www.dragoninteractive.com/">Dragon Interactive (动态菜单)</a></p>
<p><a href="http://www.dragoninteractive.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_4.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p>我非常喜欢他那叹为观止的菜单，乍一看以为是一个flash，后来通过查看代码发现就是使用了简单的XHTML，CSS以及Javascript。</p>
<ul>
<li><strong>3.1 动态菜单</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法»</strong> <a href="http://www.shopdev.co.uk/blog/animated-menus-using-jquery/">使用jQuery</a><a href="http://www.shopdev.co.uk/blog/animated-menus-using-jquery/">制作动态菜单</a></h5>
<p><a href="http://www.shopdev.co.uk/blog/animated-menus-using-jquery/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_4_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://www.shopdev.co.uk/blog/menuDemo.html">查看演示</a></ul>
</h4>
<h4 style="font-size: 1em;">5. <a href="http://designshack.co.uk/gallery/">DesignShack (切换页面布局)</a></p>
<p><a href="http://designshack.co.uk/gallery/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_5.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p>大多数CSS图库网站都会提供给用户改变页面布局的功能，从而使用户可以更加轻松，迅速的获取信息。 ƒ</p>
<ul>
<li><strong>5.1 转换页面外观</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://designm.ag/tutorials/jquery-display-switch/">使用CSS和jQuery显示转换钮</a></h5>
<p>通过使用CSS和jQuery让用户切换页面布局。</p>
<p><a href="http://designm.ag/tutorials/jquery-display-switch/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_5_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://www.sohtanaka.com/web-design/examples/display-switch/">查看演示</a></ul>
</h4>
<h4 style="font-size: 1em;">6. <a href="http://www.profoto.com/products/profoto/lightshapingtools">Profoto (面包屑Breadcrumbs)</a></p>
<p><a href="http://www.profoto.com/products/profoto/lightshapingtools"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_6.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p>Profoto有一个独特的面包屑(breadcrumb)菜单。点击面包屑链接的时候会在它的下方打开一个区域，给用户一些附加属性进行选择。</p>
<ul>
<li><strong>6.1 面包屑Breadcrumb</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://www.comparenetworks.com/developers/jqueryplugins/jbreadcrumb.html">jBreadCrumb</a></h5>
<p>jBreadCrumb是一款jQuery插件，可以通过更为灵活和聪明的方式来显示面包屑 。</p>
<p><a href="http://www.comparenetworks.com/developers/jqueryplugins/jbreadcrumb.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_6_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://www.comparenetworks.com/developers/jqueryplugins/jbreadcrumb.html">查看演示</a></ul>
</h4>
<h4 style="font-size: 1em;">7. <a href="http://www.shelfari.com/">Shelfari (混合按钮)</a></p>
<p><a href="http://www.shelfari.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_7.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p>Shelfari具有一个非常有趣的混合按钮/向下滑移的菜单来显示对书籍的执行动作。如果你查看代码你会发现选择框那里并没有使用一个输入框，而仅仅使用了背景图片。</p>
<ul>
<li><strong>7.1 自定义表单元素</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法»</strong> <a href="http://customformelements.net/">Custom Form Elements</a></h5>
<p>曾经总是在好奇如何可以按照自己的方式定义表单元素，如选择框，多选框以及选择区域。Custom Form Elements通过使用Javascript和CSS来提升基于网页的XHMTL表单的样式及可用性。</p>
<p><a href="http://customformelements.net/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_7_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://customformelements.net/demopage.php">查看演示</a></ul>
</h4>
<h4 style="font-size: 1em;">8. <a style="text-decoration: none;" href="http://www.cssninjas.com/order">CSS Ninjas (费用预估滑杆)</a></p>
<p><a href="http://www.cssninjas.com/order"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_8.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p>CSS Ninjas提供了一个非常有趣的费用预估滑杆允许客户估算服务费用。</p>
<ul>
<li><strong>8.1 滑杆</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://www.filamentgroup.com/lab/update_jquery_ui_16_slider_from_a_select_element/">jQuery UI 1.7 Slider</a></h5>
<p>该款插件的目的就是通过渐进增强来控制jQuery UI Slider插件。</p>
<p><a href="http://www.filamentgroup.com/lab/update_jquery_ui_16_slider_from_a_select_element/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_8_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://www.filamentgroup.com/examples/slider_v2/index3.php">查看演示</a></ul>
</h4>
<h4 style="font-size: 1em;">9. <a style="text-decoration: none;" href="http://www.facebook.com/inbox/?compose">Facebook (表单自动完成)</a></p>
<p><a href="http://www.facebook.com/inbox/?compose"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_9.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p>Facebook的地址自动完成表单是表单自动完成的最好案例。</p>
<ul>
<li><strong>9.1 表单自动完成</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://www.emposha.com/javascript/jquery/jquerymultiselect.html">FCBKcomplete v 1.09</a></h5>
<p>一款有趣的facebook样式的动态输入框，可以自动完成或预载值。</p>
<p><a href="http://www.emposha.com/javascript/jquery/jquerymultiselect.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_9_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://www.emposha.com/demo/fcbkcomplete/">查看演示</a></ul>
</h4>
<h4 style="font-size: 1em;">10. <a style="text-decoration: none;" href="http://www.designflavr.com/">Design Flavr (Smooth Slideshow)</a></p>
<p><a href="http://www.designflavr.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_10.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p>DesignFlavr, 一个非常有名的设计灵感资源网站，使用了一个淡入淡出的幻灯效果来展示他们的特色作品以及相应的作品描述。</p>
<ul>
<li><strong>10.1 Smooth Slide</strong></li>
<h5 style="font-size: 0.83em;"><strong>制作方法 »</strong> <a href="http://www.serie3.info/s3slider/">s3Slider</a></h5>
<p>s3Slider是一款免费的jQuery插件，可以实现交互渐变的幻灯效果。</p>
<p><a href="http://www.serie3.info/s3slider/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/rich_ui_10_2.jpg" alt="Creative &amp; Rich UI interfaces" /></a></p>
<p><a href="http://www.serie3.info/s3slider/demonstration.html">查看演示</a></ul>
<div><span style="font-weight: normal;">[</span><a href="http://www.noupe.com/design/10-creative-rich-ui-interfaces-how-to-create-them.html"><span style="font-weight: normal;">原文链接</span></a><span style="font-weight: normal;">]</span></div>
</h4>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/10-creative-rich-ui-interfaces-how-to-create-them.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网站面包屑(breadcrumb)设计实例解析</title>
		<link>http://www.4ebstudio.com/breadcrumbs-in-web-design-examples-and-best-practices.html</link>
		<comments>http://www.4ebstudio.com/breadcrumbs-in-web-design-examples-and-best-practices.html#comments</comments>
		<pubDate>Sun, 29 Mar 2009 09:22:51 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[设计灵感]]></category>
		<category><![CDATA[breadcrumb]]></category>
		<category><![CDATA[showcase]]></category>
		<category><![CDATA[示例展示]]></category>
		<category><![CDATA[面包屑]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=784</guid>
		<description><![CDATA[在一个拥有很多页面的网站上，面包屑导航(breadcrumb navigation)可以大大提高用户导引的方式。换句话说，面包屑(breadcrumb)可以减少网站访问者找寻更深级别页面的步骤，并且改善了网站区块和页面的可访问性。而且面包屑(breadcrumb)还是一个有效的直观标识来告诉使用者他们当前的位置，是当前登录页面最好的上下文信息资源。
什么是面包屑(breadcrumb)?
“面包屑(breadcrumb)”是二级导航计划的一种形式，可以清楚的标明当前用户所在的网站或网络应用的位置。该术语源自《奇幻森林历险记》（Hansel and Gretel） 这篇童话故事，两个小孩子通过丢面包屑来标记回家的踪迹。和童话故事中一样，面包屑(breadcrumb)在现实应用中可以提供给用户追踪原始登陆点的方式。

Delicious.com上的面包屑(breadcrumb)


通常你可以在一些内容量极大，并且使用分级结构的网站上看到面包屑(breadcrumb)。你也可以在一些具有多重步骤的应用程序上看到它们。面包屑(breadcrumb)的结构非常简单，水平排放了一些文本链接，并且用大于号隔开(&#62;)；这个符号标明了当前页面与相邻页面之间的层级关系。
本文，我们将探讨面包屑(breadcrumb)在网站中的使用方法以及提供一些好的案例供参考。
什么时候需要使用面包屑(breadcrumb)?
大型网站或者具有层级结构页面的网站需要使用面包屑导航(breadcrumb navigation)。最好的例子就是一个电子商务网站，这种网站的产品都会根据逻辑分类进行归组。
对于一些仅有一级结构的网站你不需要使用面包屑(breadcrumb)。一个决定是否需要使用面包屑(breadcrumb)最好的办法就是建立一个网站地图或者用图表画出网站导航结构，并且分析一下使用面包屑(breadcrumb)是否可以改善用户在分类之间的导引动作。
面包屑导航（Breadcrumb navigation）只能作为一个网站附属的特性而不能代替主导航。它是一个方便的功能，一个二级导航计划可以让用户确认他的当前位置，并且是你的网站导航的另一种表现方式。
面包屑(breadcrumb)的形式
下面介三种主要的面包屑(breadcrumb)形式。
基于位置的(Location-based)

基于位置的面包屑(breadcrumb)可以告诉用户他们当前所在的网站层级。最具代表性的就是用在具有多级别（通常大于两级）的导航中。下面的示例 (SitePoint)中，每一个文本链接的层级都大于各自右侧的文本链接。

基于属性的(Attribute-based)

基于属性的面包屑(breadcrumb)路径显示了特定页面的属性。例如，在Newegg网站中，面包屑(breadcrumb)路径显示了特定页面上项目的属性。

该页面显示了所有具有制造者为“Lian Li”这个属性的计算机，同时他们还具有“MicroATX Mini Tower”这个表单元素。
基于路径的(Path-based)
基于路径的面包屑(breadcrumb)像用户提示了他们达到特定页面的步骤。这种形式的面包屑(breadcrumb)是动态的，因为它们显示的页面是用户在到达当前页面之前已经访问过的页面。
使用面包屑(breadcrumb)的好处
使用面包屑(breadcrumb)有以下几点好处：
为用户带来方便
使用面包屑(breadcrumb)主要是为用户提供站内导航的另一种方式。通过在多级结构的网站上为所有页面提供面包屑(breadcrumb)路径，用户可以更容易的定位到高级别的页面。
减少返回高级别页面的点击数量或动作
代替使用浏览器的返回按钮或者网站的主导航返回到高级别页面，用户现在可以通过面包屑(breadcrumb)使用更少的点击到达目的地。
通常不占用屏幕空间
因为通常都是使用水平方向且不进行格式化，面包屑(breadcrumb)路径不需要占用页面很多空间。这样的好处就是他们对于内容的加载没有任何负面影响，并且如果使用得得当的话将化解其他负载。
减少跳出率
面包屑(breadcrumb)路径对于吸引首次访问者进入当前加载页面以后继续查看网站其他内容是一个非常棒的方式。例如，当一个用户通过google搜索进入到一个页面，看到一个面包屑(breadcrumb)路径的时候可能会试图点击更高级别的页面来查看相关感兴趣的文章。这样依赖，就可以减少整个网站的跳出率。
使用面包屑(breadcrumb)的常见错误
使用面包屑(breadcrumb)是意见十分简单的事情，在决定是否需要使用他们之前仅仅需要考虑几点建议。下面让我们看看需要避免的一些错误使用情况。
在不要使用的时候而使用了面包屑(breadcrumb)
最易发生的错误就是面包屑(breadcrumb)对于网站没有任何益处的时候而使用了它。

在上面的例子中，Slicethepie为使用者提供了太多的导航选择。 (1) 主导航， (2) 面包屑(breadcrumb)路径以及 (3)二级导航的位置都十分接近。面包屑(breadcrumb)在这里并没有为用户提供什么方便之处，因为二级导航已经直接显示出了下级页面。而且，点击面包屑(breadcrumb)上的二级链接 (”Music”)将把你代回到一级标签 (”Listen”)，这将错误的向你提示第一个标签会比第二个标签(”Search” 和 “Artist hall of fame”)级别高。
将面包屑(breadcrumb)作为主导航
正如前所属，使用面包屑(breadcrumb)仅仅是一种可选的导航方案。

在上面的例子中，mefeedia并没有提供主要的查看视频的导航菜单。尽管这里在页脚部分有一个文字链接导航，但是在页面主体上并没有一个导航菜单，从而使得网站其他部分的定位非常困难。

假设你通过Google直接到达了视频页面，那么可供你使用的导航仅有面包屑(breadcrumb)。也就是说如果你已经浏览了网站的其他页面并且到达了一个没有主导航菜单的页面，那么你不得不使用浏览器的“返回”按钮访问主菜单。
当页面具有多种分类的时候使用面包屑(breadcrumb)
面包屑(breadcrumb)具有一个线性结构，因此当你的页面分类种类较多的时候使用它会比较困难。决定是否需要使用面包屑(breadcrumb)通常都很大的依赖于你的网站结构设计。当一个低级别的页面具有一个以上的父级分类，那么使用面包屑(breadcrumb)是无效的，不精确的，而且会让用户非常迷糊。
面包屑(breadcrumb)导航设计考虑因素
当设计面包屑(breadcrumb)导航计划的时候，需要在大脑中牢记几点。让我们一起来看看当你设计面包屑(breadcrumb)的时候可能会遇到的问题。
应该用什么区分开链接项目？
通常被接受并且广泛认知的区分面包屑(breadcrumb)超级链接的符号就是大于号(&#62;)。最具代表性的说，大于号用来表示层级结构，像这样的结构主分类&#62;子分类。

Other symbols used are arrows pointing to the right, right angle quotation marks (») and slashes (/).

选择使用什么样子的分隔符依赖于整个网站的美观设计以及所使用的面包屑(breadcrumb)形式。比如，基于路径的面包屑(breadcrumb)就不需要在每个链接文本之间提供层级关系，使用大于号并不能精确的传递他们之间的关系。
面包屑(breadcrumb)应该多大？
你无需让面包屑(breadcrumb)占据网页的主导位置。一个面包屑(breadcrumb)仅仅扮演用户使用助手的功能。它的尺寸只需可以传到足够的信息给用户足以，因此可以很小，或者比主导航小一些。

上图像我们显示了一个非常好的原则就是面包屑(breadcrumb)不能作为用户到达页面的时候被第一眼吸引的东西。
面包屑(breadcrumb)应该放在什么位置？
面包屑(breadcrumb)通常显示也页面的上半部分，如果导航菜单使用的是水平方向的话就在主导航菜单下方即可。
面包屑(breadcrumb)展示
我们已经讨论过了面包屑(breadcrumb)的6W(who, what, when, where, why以及how)，下面来看看一些实例。以下部分你将看到一些非常棒的网站上使用面包屑(breadcrumb)的例子。
1. 经典的基于文本的面包屑(breadcrumb)
TypePad Design Assistant

NASA

Nestle 使用的面包屑(breadcrumb)文本是页面上最小的文本，有效的体现了面包屑(breadcrumb)的谦逊而不唐突。

Marchand de Trucs

Bridge 55

Overstock.com 在它基于属性的面包屑(breadcrumb)上使用了标准的大于号，并且为产品属性使用了选择框，这样用户就无需再对它们进行筛选。

2. 使用其他符号代替 “&#62;”
TechRadar UK 和 BP [...]]]></description>
			<content:encoded><![CDATA[<p>在一个拥有很多页面的网站上，面包屑导航(breadcrumb navigation)可以大大提高用户导引的方式。换句话说，面包屑(breadcrumb)可以减少网站访问者找寻更深级别页面的步骤，并且改善了网站区块和页面的<a href="http://en.wikipedia.org/wiki/Findability">可访问性</a>。而且面包屑(breadcrumb)还是一个有效的直观标识来告诉使用者他们当前的位置，是当前登录页面最好的上下文信息资源。</p>
<h3 style="font-size: 1.17em;">什么是面包屑(breadcrumb)?</h3>
<p>“面包屑(breadcrumb)”是<strong style="font-weight: bold;">二级导航计划</strong>的一种形式，可以清楚的标明当前用户所在的网站或网络应用的位置。该术语源自<a href="http://en.wikipedia.org/wiki/Hansel_and_Gretel">《奇幻森林历险记》（Hansel and Gretel）</a> 这篇童话故事，两个小孩子通过丢面包屑来标记回家的踪迹。和童话故事中一样，面包屑(breadcrumb)在现实应用中可以提供给用户追踪原始登陆点的方式。</p>
<p><img style="border: 0px initial initial;" title="interactive_delicious" src="http://4ebstudio.com/wp-content/uploads/2009/03/interactive_delicious.jpg" alt="interactive_delicious" width="243" height="99" /><br />
<em style="font-style: italic;"><a href="http://delicious.com/SixRevisions/webdesign+design">Delicious.com</a>上的面包屑(breadcrumb)</em></p>
<p><em style="font-style: italic;"><span id="more-784"></span><br />
</em></p>
<p>通常你可以在一些内容量极大，并且使用分级结构的网站上看到面包屑(breadcrumb)。你也可以在一些具有多重步骤的应用程序上看到它们。面包屑(breadcrumb)的结构非常简单，水平排放了一些文本链接，并且用大于号隔开(&gt;)；这个符号标明了当前页面与相邻页面之间的层级关系。</p>
<p>本文，我们将探讨面包屑(breadcrumb)在网站中的使用方法以及提供一些好的案例供参考。</p>
<h3 style="font-size: 1.17em;">什么时候需要使用面包屑(breadcrumb)?</h3>
<p>大型网站或者具有层级结构页面的网站需要使用<strong style="font-weight: bold;">面包屑导航(breadcrumb navigation)</strong>。最好的例子就是一个电子商务网站，这种网站的产品都会根据逻辑分类进行归组。</p>
<p>对于一些仅有一级结构的网站你<strong style="font-weight: bold;">不需要</strong>使用面包屑(breadcrumb)。一个决定是否需要使用面包屑(breadcrumb)最好的办法就是建立一个<a href="http://en.wikipedia.org/wiki/Site_map">网站地图</a>或者用图表画出网站导航结构，并且分析一下使用面包屑(breadcrumb)是否可以改善用户在分类之间的导引动作。</p>
<p>面包屑导航（Breadcrumb navigation）只能作为一个网站附属的特性而不能代替主导航。它是一个方便的功能，一个<strong style="font-weight: bold;">二级导航计划</strong>可以让用户确认他的当前位置，并且是你的网站导航的另一种表现方式。</p>
<h3 style="font-size: 1.17em;">面包屑(breadcrumb)的形式</h3>
<p>下面介三种主要的面包屑(breadcrumb)形式。</p>
<p><strong style="font-weight: bold;">基于位置的(Location-based)<br />
</strong></p>
<p>基于位置的面包屑(breadcrumb)可以告诉用户他们当前所在的网站层级。最具代表性的就是用在具有多级别（通常大于两级）的导航中。下面的示例 (<a href="http://www.sitepoint.com/article/introducing-joomla/">SitePoint</a>)中，每一个文本链接的层级都大于各自右侧的文本链接。</p>
<p><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/location_based_breadcrumb_example_sitepoint.jpg" alt="Example of location-based breadcrumb." width="500" height="179" /></p>
<p><strong style="font-weight: bold;">基于属性的(Attribute-based)<br />
</strong></p>
<p>基于属性的面包屑(breadcrumb)路径显示了特定页面的属性。例如，在<a href="http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&amp;N=2010090007%2050001375%201054808291&amp;name=MicroATX%20Mini%20Tower">Newegg</a>网站中，面包屑(breadcrumb)路径显示了特定页面上项目的属性。</p>
<p><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/newegg_attribute_based_navigation.jpg" alt="Example of attribute-based breadcrumbs." width="500" height="109" /></p>
<p>该页面显示了所有具有制造者为“<em style="font-style: italic;">Lian Li”</em>这个属性的计算机，同时他们还具有“<em style="font-style: italic;">MicroATX Mini Towe</em>r”这个表单元素。</p>
<p><strong style="font-weight: bold;">基于路径的(Path-based)</strong></p>
<p><strong style="font-weight: bold;"></strong>基于路径的面包屑(breadcrumb)像用户提示了他们达到特定页面的步骤。这种形式的面包屑(breadcrumb)是动态的，因为它们显示的页面是用户在到达当前页面之前已经访问过的页面。</p>
<h3 style="font-size: 1.17em;">使用面包屑(breadcrumb)的好处</h3>
<p>使用面包屑(breadcrumb)有以下几点好处：</p>
<p><strong style="font-weight: bold;">为用户带来方便</strong></p>
<p>使用面包屑(breadcrumb)主要是为用户提供站内导航的另一种方式。通过在多级结构的网站上为所有页面提供面包屑(breadcrumb)路径，用户可以更容易的定位到高级别的页面。</p>
<p><strong style="font-weight: bold;">减少返回高级别页面的点击数量或动作</strong></p>
<p>代替使用浏览器的返回按钮或者网站的主导航返回到高级别页面，用户现在可以通过面包屑(breadcrumb)使用更少的点击到达目的地。</p>
<p><strong style="font-weight: bold;">通常不占用屏幕空间</strong></p>
<p>因为通常都是使用水平方向且不进行格式化，面包屑(breadcrumb)路径不需要占用页面很多空间。这样的好处就是他们对于内容的加载没有任何负面影响，并且如果使用得得当的话将化解其他负载。</p>
<p><strong style="font-weight: bold;">减少跳出率</strong></p>
<p>面包屑(breadcrumb)路径对于吸引首次访问者进入当前加载页面以后继续查看网站其他内容是一个非常棒的方式。例如，当一个用户通过google搜索进入到一个页面，看到一个面包屑(breadcrumb)路径的时候可能会试图点击更高级别的页面来查看相关感兴趣的文章。这样依赖，就可以减少整个网站的跳出率。</p>
<h3 style="font-size: 1.17em;">使用面包屑(breadcrumb)的常见错误</h3>
<p>使用面包屑(breadcrumb)是意见十分简单的事情，在决定是否需要使用他们之前仅仅需要考虑几点建议。下面让我们看看需要避免的一些错误使用情况。</p>
<p><strong style="font-weight: bold;">在不要使用的时候而使用了面包屑(breadcrumb)</strong></p>
<p>最易发生的错误就是面包屑(breadcrumb)对于网站没有任何益处的时候而使用了它。</p>
<p><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/simple_pie_mistake.jpg" alt="Using breadcrumbs when you do not need it." width="500" height="200" /></p>
<p>在上面的例子中，<a href="http://www.slicethepie.com/Music/Default.aspx">Slicethepie</a>为使用者提供了太多的导航选择。 (1) 主导航， (2) 面包屑(breadcrumb)路径以及 (3)二级导航的位置都十分接近。面包屑(breadcrumb)在这里并没有为用户提供什么方便之处，因为二级导航已经直接显示出了下级页面。而且，点击面包屑(breadcrumb)上的二级链接 (”Music”)将把你代回到一级标签 (”Listen”)，这将错误的向你提示第一个标签会比第二个标签(”Search” 和 “Artist hall of fame”)级别高。</p>
<p><strong style="font-weight: bold;">将面包屑(breadcrumb)作为主导航</strong></p>
<p>正如前所属，使用面包屑(breadcrumb)仅仅是一种可选的导航方案。</p>
<p><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/mefeedia.jpg" alt="Using breadcrumbs as primary navigation./" width="496" height="128" /></p>
<p>在上面的例子中，<a href="http://www.mefeedia.com/entry/fri-feb-27-2009/14804198">mefeedia</a>并没有提供主要的查看视频的导航菜单。尽管这里在页脚部分有一个文字链接导航，但是在页面主体上并没有一个导航菜单，从而使得网站其他部分的定位非常困难。</p>
<p><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/mefeedia_2_primary_nav.jpg" alt="Using breadcrumbs trails as primary navigation - example 2." width="500" height="381" /></p>
<p>假设你通过Google直接到达了视频页面，那么可供你使用的导航仅有面包屑(breadcrumb)。也就是说如果你已经浏览了网站的其他页面并且到达了一个没有主导航菜单的页面，那么你不得不使用浏览器的“返回”按钮访问主菜单。</p>
<p><strong style="font-weight: bold;">当页面具有多种分类的时候使用面包屑(breadcrumb)</strong></p>
<p>面包屑(breadcrumb)具有一个线性结构，因此当你的页面分类种类较多的时候使用它会比较困难。决定是否需要使用面包屑(breadcrumb)通常都很大的依赖于你的网站结构设计。当一个低级别的页面具有一个以上的父级分类，那么使用面包屑(breadcrumb)是无效的，不精确的，而且会让用户非常迷糊。</p>
<h3 style="font-size: 1.17em;">面包屑(breadcrumb)导航设计考虑因素</h3>
<p>当设计面包屑(breadcrumb)导航计划的时候，需要在大脑中牢记几点。让我们一起来看看当你设计面包屑(breadcrumb)的时候可能会遇到的问题。</p>
<p><strong style="font-weight: bold;">应该用什么区分开链接项目？</strong></p>
<p>通常被接受并且广泛认知的区分面包屑(breadcrumb)超级链接的符号就是大于号(&gt;)。最具代表性的说，大于号用来表示层级结构，像这样的结构<em style="font-style: italic;">主分类&gt;子分类。</em></p>
<p><a href="http://www.google.com/support/websearch/bin/answer.py?hl=en&amp;answer=134479"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/greater_than_symbol_google.jpg" alt="Example of greater than symbols separating the text links." width="433" height="136" /></a></p>
<p>Other symbols used are arrows pointing to the right, right angle quotation marks (») and slashes (/).</p>
<p><a href="http://www.uxmatters.com/topics/ajax-rias-web-20-apps/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/forward_slashes_uxmatters.jpg" alt="Example of alternative hierarchy separators." width="438" height="100" /></a></p>
<p>选择使用什么样子的分隔符依赖于整个网站的美观设计以及所使用的面包屑(breadcrumb)形式。比如，基于路径的面包屑(breadcrumb)就不需要在每个链接文本之间提供层级关系，使用大于号并不能精确的传递他们之间的关系。</p>
<p><strong style="font-weight: bold;">面包屑(breadcrumb)应该多大？</strong></p>
<p>你无需让面包屑(breadcrumb)占据网页的主导位置。一个面包屑(breadcrumb)仅仅扮演用户使用助手的功能。它的尺寸只需可以传到足够的信息给用户足以，因此可以很小，或者比主导航小一些。</p>
<p><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/size_of_breadcrumb_campaign_monitor.jpg" alt="An example of a good-sized breadcrumb trail." width="499" height="318" /></p>
<p>上图像我们显示了一个非常好的原则就是面包屑(breadcrumb)不能作为用户到达页面的时候被第一眼吸引的东西。</p>
<p><strong style="font-weight: bold;">面包屑(breadcrumb)应该放在什么位置？</strong></p>
<p>面包屑(breadcrumb)通常显示也页面的上半部分，如果导航菜单使用的是水平方向的话就在主导航菜单下方即可。</p>
<h3 style="font-size: 1.17em;">面包屑(breadcrumb)展示</h3>
<p>我们已经讨论过了面包屑(breadcrumb)的6W(who, what, when, where, why以及how)，下面来看看一些实例。以下部分你将看到一些非常棒的网站上使用面包屑(breadcrumb)的例子。</p>
<h3 style="font-size: 1.17em;">1. 经典的基于文本的面包屑(breadcrumb)</h3>
<p><a href="http://www.typepad.com/go/design-assistant/">TypePad Design Assistant</a></p>
<p><a href="http://www.typepad.com/go/design-assistant/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/typical_breadcrumb_typepad.jpg" alt="classic breadcrumb - example 1." width="495" height="78" /></a></p>
<p><a href="http://www.nasa.gov/news/budget/index.html">NASA</a></p>
<p><a href="http://www.nasa.gov/news/budget/index.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/greater_than_symbol_nasa.jpg" alt="Classic text-based breadcrumbs" width="280" height="132" /></a></p>
<p><a href="http://www.nestle.com/SharedValueCSR/Overview.htm">Nestle</a> 使用的面包屑(breadcrumb)文本是页面上最小的文本，有效的体现了面包屑(breadcrumb)的谦逊而不唐突。</p>
<p><a href="http://www.nestle.com/SharedValueCSR/Overview.htm"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/greater_than_symbol_nestle.jpg" alt="Nestle example." width="500" height="474" /></a></p>
<p><a href="http://www.marchanddetrucs.com/magasin-de-magie/thematiques/close-up/autres/">Marchand de Trucs</a></p>
<p><a href="http://www.marchanddetrucs.com/magasin-de-magie/thematiques/close-up/autres/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/typical_breadcrumb_marchand.jpg" alt="classic breadcrumb - example 2." width="500" height="150" /></a></p>
<p><a href="http://www.bridge55.com/t-shirts/gio-goi/gio-goi-key-t-shirt-bas100202-black.html">Bridge 55</a></p>
<p><a href="http://www.bridge55.com/t-shirts/gio-goi/gio-goi-key-t-shirt-bas100202-black.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/typical_breadcrumb_bridge_55.jpg" alt="classic breadcrumb - example 3." width="500" height="150" /></a></p>
<p><a href="http://www.overstock.com/Home-Garden/Beds/Twin,/bed-size,/2013/subcat.html">Overstock.com</a> 在它基于属性的面包屑(breadcrumb)上使用了标准的大于号，并且为产品属性使用了选择框，这样用户就无需再对它们进行筛选。</p>
<p><a href="http://www.overstock.com/Home-Garden/Beds/Twin,/bed-size,/2013/subcat.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/typical_breadcrumb_overstock.jpg" alt="classic breadcrumb - example 4." width="505" height="167" /></a></p>
<h3 style="font-size: 1.17em;">2. 使用其他符号代替 “&gt;”</h3>
<p><a href="http://www.techradar.com/news/computing">TechRadar UK</a> 和 <a href="http://www.bp.com/productslistsearch.do?categoryId=9007366&amp;contentId=7014115">BP</a> 使用向右的三角。</p>
<p><a href="http://www.techradar.com/news/computing"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/replacing_techradar.jpg" alt="Using other symbols for hierachy separators - example 2." width="495" height="78" /></a></p>
<p><a href="http://www.techradar.com/news/computing"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/replacing_bp.jpg" alt="Replacing the greater than symbol example." width="413" height="136" /></a></p>
<p><a href="http://psd.tutsplus.com/category/tutorials/drawing/">PSDTUTS</a> 和 <a href="http://www.uniquemartique.com/site/martique/product/291">Martique</a> 使用了破折号。</p>
<p><a href="http://psd.tutsplus.com/category/tutorials/drawing/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/replacing_psdtuts.jpg" alt="Using other symbols for hierachy separators - example 3." width="500" height="111" /></a></p>
<p><a href="http://www.uniquemartique.com/site/martique/product/291"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/replacing_martique.jpg" alt="Using other symbols for hierachy separators - example 4." width="500" height="106" /></a></p>
<p><a href="http://www.mousetominx.co.uk/products.php?cat=7">Mouse to Minx</a> 使用了向右的箭头来表示页面的层级关系。</p>
<p><a href="http://www.mousetominx.co.uk/products.php?cat=7"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/replacing_mouse_to_minx.jpg" alt="Using other symbols for hierachy separators - example 5." width="500" height="106" /></a></p>
<p><a href="http://www.useit.com/alertbox/pr.html">Jakob Nielsen’s Alertbox</a> 使用了右箭头。</p>
<p><a href="http://www.useit.com/alertbox/pr.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/replacing_usitdotcome.jpg" alt="Using other symbols for hierachy separators - example 1." width="495" height="78" /></a></p>
<p><a href="http://www.target.com/Beach-Towels-Bath-Bed/b/ref=sc_fe_l_2/176-1138487-8856958?ie=UTF8&amp;node=1041470">Target</a> 使用了半角冒号 (:) 。</p>
<p><a href="http://www.target.com/Beach-Towels-Bath-Bed/b/ref=sc_fe_l_2/176-1138487-8856958?ie=UTF8&amp;node=1041470"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/replacing_target.jpg" alt="semicolon separator example." width="413" height="88" /></a></p>
<h3 style="font-size: 1.17em;">3. 超越简单的文字链接</h3>
<p>现在的面包屑(breadcrumb)设计趋势用简单的一句话来说就是“面包屑(breadcrumb)不一定是普通的”。在下面的示例中，你将看到一些与整个网站设计风格完美结合的漂亮的面包屑(breadcrumb)样式。</p>
<p><a href="http://listen.grooveshark.com/">Grooveshark</a></p>
<p><a href="http://listen.grooveshark.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_groove_shark.jpg" alt="styled breadcrumbs - example 1." width="459" height="81" /></a></p>
<p><a href="http://tv.yahoo.com/the-10-000-pyramid/show/28443/castcrew">Yahoo! TV</a></p>
<p><a href="http://tv.yahoo.com/the-10-000-pyramid/show/28443/castcrew"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_yahootv.jpg" alt="Beautiful breadcrumb trails." width="378" height="98" /></a></p>
<p><a href="http://www.ideo.com/work/item/s500/">IDEO</a></p>
<p><a href="http://www.ideo.com/work/item/s500/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_ideo.jpg" alt="styled breadcrumbs - example 2." width="505" height="167" /></a></p>
<p><a href="http://store.apple.com/us/product/MB352LL/B?fnode=MTY1NDA4NA&amp;mco=MTY1OTg1Nw">Apple Store</a></p>
<p><a href="http://store.apple.com/us/product/MB352LL/B?fnode=MTY1NDA4NA&amp;mco=MTY1OTg1Nw"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_apple.jpg" alt="styled breadcrumbs - example 3." width="505" height="167" /></a></p>
<p><a href="http://coolspotters.com/entertainment/websites">Coolspotters</a></p>
<p><a href="http://coolspotters.com/entertainment/websites"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_coolspotters.jpg" alt="styled breadcrumbs - example 4." width="505" height="167" /></a></p>
<p><a href="http://www.devlounge.net/design/sidebars-that-rock">Devlounge</a></p>
<p><a href="http://www.devlounge.net/design/sidebars-that-rock"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_devlounge.jpg" alt="styled breadcrumbs - example 5." width="495" height="127" /></a></p>
<p><a href="https://launchpad.net/lottanzb">LottaNZB</a></p>
<p><a href="https://launchpad.net/lottanzb"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_launchpad.jpg" alt="" width="330" height="74" /></a></p>
<p><a href="http://www.pixelpoodle.com/?action=news&amp;id=24">Pixelpoodle</a></p>
<p><a href="http://www.pixelpoodle.com/?action=news&amp;id=24"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_pixeldoodle.jpg" alt="Beautifully-styled breadcrumbs - example." width="425" height="65" /></a></p>
<p><a href="http://www.guardian.co.uk/world/obama-administration">guardian.co.uk</a></p>
<p><a href="http://www.guardian.co.uk/world/obama-administration"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/beautifully_guardianuk.jpg" alt="Beautiful navigation - examples." width="500" height="150" /></a></p>
<h3 style="font-size: 1.17em;">4. 多步过程的面包屑(breadcrumb)</h3>
<p><a href="https://www.statementstacker.com/register/step2">Statement Tracker</a> 使用了面包屑(breadcrumb)路径来标示帐号注册的步骤。</p>
<p><a href="https://www.statementstacker.com/register/step2"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/sequential_statementtracker.jpg" alt="Sequential process example." width="500" height="204" /></a></p>
<p><a href="http://flickr.com/tour/">Flickr</a> 使用面包屑(breadcrumb)来标示Flickr使用方法的单元数字。</p>
<p><a href="http://flickr.com/tour/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/sequential_flickr.jpg" alt="breadcrumb" width="372" height="84" /></a></p>
<h3 style="font-size: 1.17em;">5. 带有子导航的面包屑(breadcrumb)</h3>
<p>下面将向你展示一些这样的面包屑(breadcrumb)样式，当用鼠标点击或者悬浮在链接上的时候会打开一个子导航面板列出一些附加属性或者位置。</p>
<p><a href="http://www.marketwatch.com/newscommentary/industries/technology">MarketWatch</a></p>
<p><a href="http://www.marketwatch.com/newscommentary/industries/technology"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/subnav_marketwatch.jpg" alt="breadcrumb with sub-navigation example." width="413" height="166" /></a></p>
<p><a href="http://www.profoto.com/products/profoto/lightshapingtools">Profoto</a> 具有一个独特的面包屑(breadcrumb)：点击面包屑(breadcrumb)上的链接将会在下方打开一个区块向用户显示附加的属性以供选择。</p>
<p><a href="http://www.profoto.com/products/profoto/lightshapingtools"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/primary_nav_protofoto.jpg" alt="Experimental Example 2." width="500" height="152" /></a></p>
<p><a href="http://www.som.cranfield.ac.uk/som/p858/About-Cranfield/Location/Getting-to-Cranfield-via-Public-Transport">Cranfield University</a></p>
<p><a href="http://www.som.cranfield.ac.uk/som/p858/About-Cranfield/Location/Getting-to-Cranfield-via-Public-Transport"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/primary_nav_cranfield.jpg" alt="Flyout Breadcrumbs" width="366" height="291" /></a></p>
<p><a href="http://www.lonelyplanet.com/germany/north-rhine-westphalia/cologne">Lonely Planet</a> 同样具有一个fly-out样式的面包屑(breadcrumb)供你改变属性。</p>
<p><a href="http://www.lonelyplanet.com/germany/north-rhine-westphalia/cologne"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/primary_nav_lonely_planet.jpg" alt="flyout menu - example 3." width="471" height="74" /></a></p>
<p>点击一个面包屑(breadcrumb)链接将会打开相应项目的页面，同时点击向下的那个按钮会打开附加的选项。</p>
<p><a href="http://www.lonelyplanet.com/germany/north-rhine-westphalia/cologne"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/primary_nav_lonely_planet_2.jpg" alt="Flyout menu - example 4." width="500" height="302" /></a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc295790.aspx">MSDN</a> 的面包屑(breadcrumb)具有一个可以打开二级导航列表的滚动面板。</p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc295790.aspx"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/subnav_msdn.jpg" alt="subnavigation example 1." width="428" height="250" /></a></p>
<p><a href="http://www.wowhead.com/?spells=7.11.574">Wowhead</a> 的面包屑(breadcrumb)具有一个多级别的二级导航</p>
<p><a href="http://www.wowhead.com/?spells=7.11.574"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/subnav_wowhead.jpg" alt="" width="399" height="154" /></a></p>
<h3 style="font-size: 1.17em;">6. 具有交互功能的面包屑(breadcrumb)</h3>
<p><a href="http://delicious.com/SixRevisions/webdesign+design">Delicious</a> 可以让你移除面包屑(breadcrumb)上面的项目来帮你快速定位书签。</p>
<p><a href="http://delicious.com/SixRevisions/webdesign+design"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/interactive_delicious.jpg" alt="interactive example 1." width="243" height="99" /></a></p>
<h3 style="font-size: 1.17em;">7. 具有实验性的示例</h3>
<p><a href="http://www.booreiland.nl/">Booreiland</a> 使用了一个面包屑(breadcrumb)风格的导航计划作为主菜单，允许用户快速理解他们当前所浏览的内容。</p>
<p><a href="http://www.booreiland.nl/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/primary_nav_booreiland.jpg" alt="Experimental example 1." width="500" height="215" /></a></p>
<p>用户交互设计师，<a href="http://aenui.com/about-me/">AEN UI</a>的Aen Tan发明了一种称为 “<a href="http://aenui.com/user-interface/tabcrumbs-best-of-both-worlds/">Tabcrumbs</a>”的设计方式，即一个将标签和面包屑(breadcrumb)组合在一起的导航计划。</p>
<p><a href="http://aenui.com/about-me/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/primary_nav_superbots.jpg" alt="Tabcrumbs example." width="458" height="191" /></a></p>
<h4 style="font-size: 1em;">关于本文作者</h4>
<p><strong style="font-weight: bold;">Jacob Gube</strong></p>
<p>是一名网页开发和设计人员，也是 <a href="http://sixrevisions.com/">Six Revisions</a>的一名作者。如果你想和他联系的话，可以<a href="http://twitter.com/jggube">加入他的Twitter</a>。</p>
<p>[<a href="http://www.smashingmagazine.com/2009/03/17/breadcrumbs-in-web-design-examples-and-best-practices-2/">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/breadcrumbs-in-web-design-examples-and-best-practices.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>13款必备的WordPress插件</title>
		<link>http://www.4ebstudio.com/the-13-most-essential-plugins-for-wordpress.html</link>
		<comments>http://www.4ebstudio.com/the-13-most-essential-plugins-for-wordpress.html#comments</comments>
		<pubDate>Sat, 28 Mar 2009 06:36:39 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=99</guid>
		<description><![CDATA[WordPress 是一款功能强大且灵活的博客与内容管理系统，上千款插件足以帮你实现一些基本的功能。下面将介绍13款在安装好WordPress后必用的插件。
Akismet

这款插件使用起来没什么难度。Akismet 使用他的网络服务来检查你的博客上的评论是否为垃圾评论。该款插件是由WordPress官方开发的，因此整合性非常好，并且被集成在了WordPress安装程序中。你所需要的就是一个WordPress.com API key来安装并运行该插件。

下载Akismet
Custom More Link

当我在设置read more标签的时候经常困扰我的就是当你点击显示全部文章内容的时候，如何跳转到被插入的more标签那里。该款插件允许你摆脱这个困扰并且可以彻底自定义链接。
下载Custom More Link
Different Posts Per Page

加入你想在首页显示3篇文章，在分类页面显示10篇文章，在归档页显示20篇文章。而你又不想修改模板代码，那么你可以使用该款插件来自定义每页显示的文章数量。
下载Different Posts Per Page
Google XML Sitemaps

虽然该款插件叫做 “Google” XML 网站地图，但是Ask，MSN，以及 Yahoo也支持它。它的设置非常简单而且一旦启用以后就不用再去理会它了。
下载Google XML Sitemaps
No Self Pings

Trackback 是允许用户链接并讨论你的博客文章的一种非常棒的方式，但是当你链接你自己文章的时候也会包含你自己的网站。特别是当你使用related posts插件的时候，更是如此。而No Self Pings 插件对于过滤你自己的trackback是非常有用的。
下载No Self Pings
Redirection

如果你正将别的网站的内容转移到WordPress的时候，你的URL可能会不同。该款插件对于添加301转向以确保用户可以被引到正确的位置非常有用。而且你也可以保证404错误页面的正确引用以及使用正则表达式来创建其他转向。
下载Redirection
Search Unleashed

WordPress自带的搜索功能通常会遗漏一些你想搜索的东西，而该款插件可以帮你弥补这一点。你可以对所有文章，页面，评论以及其他meta-data进行全文搜索。当你添加或编辑内容的时候，搜索引擎可以自动更新，因此你无需担心他们会过期。
下载 Search Unleashed
Subscribe to Comments

你可能需要经常提供给评论者有谁继续评论了。该款插件提供了一个简单的选择框让评论者选择是否需要通过email接收后续评论内容。该款插件已经内置在了WordPress.com的博客上，因此它应该也可以很好的与WordPress.org内核相整合。
下载Subscribe to Comments
WP-DB-Backup

该款插件可以让你按需求或者定期备份你的WordPress数据库。备份数据库以避免任何出错情况是非常必要的，因此可以执行一个定期备份。或许你不需要使用备份功能，但备份以防意外总比真得出了状况无法挽回要好很多。
下载WP-DB-Backup
WP-PageNavi

与WordPress默认的previous和next链接不同，该插件可以添加更多高级导航功能。你可以完全自定义分页显示样式。
下载WP-PageNavi
wp-typogrify

该款插件可以使用真正的引号( ’ &#38; ” )来替代prime-quote ( ′ &#38; ″ )。该款插件可以自动修正引号并且可以应用其他的印刷增效。
下载wp-typogrify
WP Security Scan

WordPress团队通过不断更新来提升安全性，但是你也可以通过其他的方式来确保你的网站安全。该款插件可以帮你扫描网站并且帮助你提供其他所需的保护。
下载WP Security Scan
WP Super Cache

WP Super Cache插件可以通过生成静态html文件来加速你的网站。如果你想的网站流量很大，你必须装这个插件来保证网速。如果你不想生成html文件可以使用WP [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/">WordPress</a> 是一款功能强大且灵活的博客与内容管理系统，上千款<a href="http://wordpress.org/extend/plugins/">插件</a>足以帮你实现一些基本的功能。下面将介绍13款在安装好WordPress后必用的插件。</p>
<h2 style="font-size: 1.5em;">Akismet</h2>
<div><a href="http://wordpress.org/extend/plugins/akismet/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/akismet.png" alt="Akismet" /></a></div>
<p>这款插件使用起来没什么难度。Akismet 使用他的网络服务来检查你的博客上的评论是否为垃圾评论。该款插件是由WordPress官方开发的，因此整合性非常好，并且被集成在了WordPress安装程序中。你所需要的就是一个<a href="http://en.wordpress.com/api-keys/">WordPress.com API key</a>来安装并运行该插件。</p>
<p><span id="more-99"></span></p>
<p><a href="http://wordpress.org/extend/plugins/akismet/"><strong style="font-weight: bold;">下载Akismet</strong></a></p>
<h2 style="font-size: 1.5em;">Custom More Link</h2>
<div><a href="http://wordpress.org/extend/plugins/cy-custom-morelink/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/customize-more-link.png" alt="Custom More Link" /></a></div>
<p>当我在设置<a href="http://codex.wordpress.org/Customizing_the_Read_More">read more标签</a>的时候经常困扰我的就是当你点击显示全部文章内容的时候，如何跳转到被插入的more标签那里。该款插件允许你摆脱这个困扰并且可以彻底自定义链接。</p>
<p><a href="http://wordpress.org/extend/plugins/cy-custom-morelink/"><strong style="font-weight: bold;">下载Custom More Link</strong></a></p>
<h2 style="font-size: 1.5em;">Different Posts Per Page</h2>
<div><a href="http://wordpress.org/extend/plugins/different-posts-per-page/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/different-posts-per-page.png" alt="Different Posts Per Page" /></a></div>
<p>加入你想在首页显示3篇文章，在分类页面显示10篇文章，在归档页显示20篇文章。而你又不想修改模板代码，那么你可以使用该款插件来自定义每页显示的文章数量。</p>
<p><a href="http://wordpress.org/extend/plugins/different-posts-per-page/"><strong style="font-weight: bold;">下载Different Posts Per Page</strong></a></p>
<h2 style="font-size: 1.5em;">Google XML Sitemaps</h2>
<div><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/xml-sitemap-generator.png" alt="Google XML Sitemaps" /></a></div>
<p>虽然该款插件叫做 “Google” XML 网站地图，但是Ask，MSN，以及 Yahoo也支持它。它的设置非常简单而且一旦启用以后就不用再去理会它了。</p>
<p><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/"><strong style="font-weight: bold;">下载Google XML Sitemaps</strong></a></p>
<h2 style="font-size: 1.5em;">No Self Pings</h2>
<div><a href="http://wordpress.org/extend/plugins/no-self-ping/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/no-self-pings.png" alt="No Self Pings" /></a></div>
<p>Trackback 是允许用户链接并讨论你的博客文章的一种非常棒的方式，但是当你链接你自己文章的时候也会包含你自己的网站。特别是当你使用<a href="http://wordpress.org/extend/plugins/search.php?q=related+posts">related posts</a>插件的时候，更是如此。而<a href="http://wordpress.org/extend/plugins/no-self-ping/">No Self Pings 插件</a>对于过滤你自己的trackback是非常有用的。</p>
<p><a href="http://wordpress.org/extend/plugins/no-self-ping/"><strong style="font-weight: bold;">下载No Self Pings</strong></a></p>
<h2 style="font-size: 1.5em;">Redirection</h2>
<div><a href="http://wordpress.org/extend/plugins/redirection/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/redirection.png" alt="Redirection" /></a></div>
<p>如果你正将别的网站的内容转移到WordPress的时候，你的URL可能会不同。该款插件对于添加301转向以确保用户可以被引到正确的位置非常有用。而且你也可以保证404错误页面的正确引用以及使用正则表达式来创建其他转向。</p>
<p><a href="http://wordpress.org/extend/plugins/redirection/"><strong style="font-weight: bold;">下载Redirection</strong></a></p>
<h2 style="font-size: 1.5em;">Search Unleashed</h2>
<div><a href="http://wordpress.org/extend/plugins/search-unleashed/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/search-unleashed.png" alt="Search Unleashed" /></a></div>
<p>WordPress自带的搜索功能通常会遗漏一些你想搜索的东西，而该款插件可以帮你弥补这一点。你可以对所有文章，页面，评论以及其他meta-data进行全文搜索。当你添加或编辑内容的时候，搜索引擎可以自动更新，因此你无需担心他们会过期。</p>
<p><a href="http://wordpress.org/extend/plugins/search-unleashed/"><strong style="font-weight: bold;">下载 Search Unleashed</strong></a></p>
<h2 style="font-size: 1.5em;">Subscribe to Comments</h2>
<div><a href="http://wordpress.org/extend/plugins/subscribe-to-comments/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/subscribe-to-comments.png" alt="Subscribe to Comments" /></a></div>
<p>你可能需要经常提供给评论者有谁继续评论了。该款插件提供了一个简单的选择框让评论者选择是否需要通过email接收后续评论内容。该款插件已经内置在了WordPress.com的博客上，因此它应该也可以很好的与WordPress.org内核相整合。</p>
<p><a href="http://wordpress.org/extend/plugins/subscribe-to-comments/"><strong style="font-weight: bold;">下载Subscribe to Comments</strong></a></p>
<h2 style="font-size: 1.5em;">WP-DB-Backup</h2>
<div><a href="http://wordpress.org/extend/plugins/wp-db-backup/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/db-backup.png" alt="WP-DB-Backup" /></a></div>
<p>该款插件可以让你按需求或者定期备份你的WordPress数据库。备份数据库以避免任何出错情况是非常必要的，因此可以执行一个定期备份。或许你不需要使用备份功能，但备份以防意外总比真得出了状况无法挽回要好很多。</p>
<p><a href="http://wordpress.org/extend/plugins/wp-db-backup/"><strong style="font-weight: bold;">下载WP-DB-Backup</strong></a></p>
<h2 style="font-size: 1.5em;">WP-PageNavi</h2>
<div><a href="http://wordpress.org/extend/plugins/wp-pagenavi/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/page-navi.png" alt="Page Navi" /></a></div>
<p>与WordPress默认的<a href="http://codex.wordpress.org/Next_and_Previous_Links">previous和next链接</a>不同，该插件可以添加更多高级导航功能。你可以完全自定义分页显示样式。</p>
<p><a href="http://wordpress.org/extend/plugins/wp-pagenavi/"><strong style="font-weight: bold;">下载WP-PageNavi</strong></a></p>
<h2 style="font-size: 1.5em;">wp-typogrify</h2>
<div><a href="http://wordpress.org/extend/plugins/wp-typogrify/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/typogrify.png" alt="wp-typogrify" /></a></div>
<p>该款插件可以使用真正的引号( ’ &amp; ” )来替代prime-quote ( ′ &amp; ″ )。该款插件可以自动修正引号并且可以应用其他的印刷增效。</p>
<p><a href="http://wordpress.org/extend/plugins/wp-typogrify/"><strong style="font-weight: bold;">下载wp-typogrify</strong></a></p>
<h2 style="font-size: 1.5em;">WP Security Scan</h2>
<div><a href="http://wordpress.org/extend/plugins/wp-security-scan/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/security-scan.png" alt="WP Security Scan" /></a></div>
<p>WordPress团队通过不断更新来提升安全性，但是你也可以通过其他的方式来确保你的网站安全。该款插件可以帮你扫描网站并且帮助你提供其他所需的保护。</p>
<p><a href="http://wordpress.org/extend/plugins/wp-security-scan/"><strong style="font-weight: bold;">下载WP Security Scan</strong></a></p>
<h2 style="font-size: 1.5em;">WP Super Cache</h2>
<div><a href="http://wordpress.org/extend/plugins/wp-super-cache/"><img style="border: 0px initial initial;" src="http://nettuts.s3.amazonaws.com/245_wordpressPlugins/images/super-cache.png" alt="http://wordpress.org/extend/plugins/wp-super-cache/" /></a></div>
<p>WP Super Cache插件可以通过生成静态html文件来加速你的网站。如果你想的网站流量很大，你必须装这个插件来保证网速。如果你不想生成html文件可以使用WP Cache插件。</p>
<p><a href="http://wordpress.org/extend/plugins/wp-super-cache/"><strong style="font-weight: bold;">下载WP Super Cache</strong></a></p>
<p>[<a href="http://net.tutsplus.com/articles/web-roundups/the-13-most-essential-plugins-for-wordpress/">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/the-13-most-essential-plugins-for-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>45款苹果设计风格的photoshop教程</title>
		<link>http://www.4ebstudio.com/45%e6%ac%be%e8%8b%b9%e6%9e%9c%e8%ae%be%e8%ae%a1%e9%a3%8e%e6%a0%bc%e7%9a%84photoshop%e6%95%99%e7%a8%8b.html</link>
		<comments>http://www.4ebstudio.com/45%e6%ac%be%e8%8b%b9%e6%9e%9c%e8%ae%be%e8%ae%a1%e9%a3%8e%e6%a0%bc%e7%9a%84photoshop%e6%95%99%e7%a8%8b.html#comments</comments>
		<pubDate>Thu, 26 Mar 2009 02:11:32 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[图形图像]]></category>
		<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[苹果新知]]></category>
		<category><![CDATA[设计教程]]></category>
		<category><![CDATA[设计灵感]]></category>
		<category><![CDATA[设计视频]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[touch]]></category>
		<category><![CDATA[图形]]></category>
		<category><![CDATA[平面设计]]></category>
		<category><![CDATA[苹果]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=48</guid>
		<description><![CDATA[多年来，苹果产品对全球的设计师和图像艺术家们来说都有深远的影响。简洁而锐利的Aqua界面强烈影响着新产品的展现形式和设计风格。除了产品设计外，苹果公司的网站和出版物的外观与版面也使其变得与众不同。
没有其他任何一家公司可以呈现出如此艳丽和绚烂夺目的风格作为每一次突破性的革新来长时间的改变着我们的生活。苹果公司已经建立了一种十分有效的方式来传递它的信息给广大的观众，并且苹果外观与感知在其中起着主导作用。
本文我们展示一系列漂亮的苹果风格的Photoshop教程。我们收集这些作品不仅因为我们对苹果的忠诚热爱，还因为我们觉得你们会从中受益。
Mac Photoshop教程

MacBook Air
在这个具有20个步骤的教程中，你将学会如何创作一台MacBook Air.

创作一款矢量风格的MacBook草图
一篇很长的用photoshop制作MacBook Pro的教程，使用了图形和多种技巧。

创作一款光滑的黑色iMac
一款黑色的iMac会是什么样子的呢？作为一个photoshop设计师，你可以设计一下你心目中的样子。

创作苹果鼠标
用photoshop传作一款简洁而优雅的苹果鼠标。

iPhone
Apple iPhone设计
使用简单的几个步骤设计这款时髦的手机。

创作一款 Apple iPhone草图
拥有一部iPhone是非常时髦的。快用Photoshop装作一款属于你自己的iPhone吧。

iPhone风格Icon
Apple发布了一些建议来创作网络应用，现在就先来学学如何制作iPhone风格的icon吧。

如何创作iPod Touch
最简单的创作iPod Touch的方法。

创作iPod Touch
纯手工绘制而无需使用任何图片创作出来的iPod Touch。

iPhone教程
该教程详细讲述了如何创建图形，应用效果并且创作你自己风格的iPhone。

iPhone GUI PSD
一个非常全面的元素库文件，所有元素均可编辑。

iPhone设计资源
这里有一些资源可以帮助你进行iPhone设计项目。

iCons和网页
创作操作系统下的Glass-Shelf Dock

Apple Leopard字体效果

iTunes Icon设计

iTune Icon

Mac主题

Jaguar风格文件夹

iPod
iPod Shuffle 草图

Apple遥控器

逼真的iPod

iPod

iPod Classic

Apple iPod

Logo和Wallpaper
绿色Apple设计

Apple Wallpaper

Apple’s Brushed Aluminum纹理制作

多彩Mac logo设计

光影效果

iPhone流体混合特效

60款非常漂亮的Apple Wallpapers
Showcase of 60 most beautiful Apple-related wallpapers, including the Apple logo, the Mac OS X, time machine, iPods and more.

视频教程
如何制作iPhone Icons

iPhone

iPod广告效果

Coldplay版苹果商业广告

iMac

Apple TV背景

创作 iTunes Icon

Mac广告
创作iPhone 广告

iPod风格笔刷

Grunge风格的iPod设计

I See iPod People平面广告

设计一款Coldplay版的苹果素描

制作Apple风格的广告

制作你自己的iPod风格照片

Attack of [...]]]></description>
			<content:encoded><![CDATA[<p>多年来，苹果产品对全球的设计师和图像艺术家们来说都有深远的影响。简洁而锐利的Aqua界面强烈影响着新产品的展现形式和设计风格。除了产品设计外，苹果公司的网站和出版物的外观与版面也使其变得与众不同。</p>
<p>没有其他任何一家公司可以呈现出如此艳丽和绚烂夺目的风格作为每一次突破性的革新来长时间的改变着我们的生活。苹果公司已经建立了一种十分有效的方式来传递它的信息给广大的观众，并且苹果外观与感知在其中起着主导作用。</p>
<p>本文我们展示一系列漂亮的苹果风格的Photoshop教程。我们收集这些作品不仅因为我们对苹果的忠诚热爱，还因为我们觉得你们会从中受益。</p>
<h3 style="font-size: 1.17em;">Mac Photoshop教程</h3>
<p><span id="more-48"></span></p>
<p><a href="http://www.photoshoptalent.com/photoshop-tutorials/pst/417/MacBook-Air.html">MacBook Air</a><br />
在这个具有20个步骤的教程中，你将学会如何创作一台MacBook Air.</p>
<p><a href="http://www.photoshoptalent.com/photoshop-tutorials/pst/417/MacBook-Air.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/mac-air.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.online-photoshoptutorials.com/2008/09/creating-a-vector-style-macbook-from-scratch.html">创作一款矢量风格的MacBook草图</a><br />
一篇很长的用photoshop制作MacBook Pro的教程，使用了图形和多种技巧。</p>
<p><a href="http://www.online-photoshoptutorials.com/2008/09/creating-a-vector-style-macbook-from-scratch.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/mac-pro.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://psdtuts.com/tutorials-effects/create-a-slick-black-imac-in-photoshop/">创作一款光滑的黑色iMac</a><br />
一款黑色的iMac会是什么样子的呢？作为一个photoshop设计师，你可以设计一下你心目中的样子。</p>
<p><a href="http://psdtuts.com/tutorials-effects/create-a-slick-black-imac-in-photoshop/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/black-imac.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.photoshopguidesign.com/tutorials/imouse_creating_apple_mouse.html">创作苹果鼠标</a><br />
用photoshop传作一款简洁而优雅的苹果鼠标。</p>
<p><a href="http://www.photoshopguidesign.com/tutorials/imouse_creating_apple_mouse.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/apple-mouse.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<h3 style="font-size: 1.17em;">iPhone</h3>
<p><a href="http://www.adobetutorialz.com/articles/2783/1/Apple-iPhone-Mobile-Phone-Design">Apple iPhone设计</a><br />
使用简单的几个步骤设计这款时髦的手机。</p>
<p><a href="http://www.adobetutorialz.com/articles/2783/1/Apple-iPhone-Mobile-Phone-Design"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/apple-iphone.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.teachtutorials.com/photoshop/1468-Good-tutorial-to-create-an-Apple-IPhone-case-from-scratch.html">创作一款 Apple iPhone草图</a><br />
拥有一部iPhone是非常时髦的。快用Photoshop装作一款属于你自己的iPhone吧。</p>
<p><a href="http://www.teachtutorials.com/photoshop/1468-Good-tutorial-to-create-an-Apple-IPhone-case-from-scratch.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/apple-iphone2.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.keepthewebweird.com/iphone-style-icon-tutorial/">iPhone风格Icon</a><br />
Apple发布了一些建议来创作网络应用，现在就先来学学如何制作iPhone风格的icon吧。</p>
<p><a href="http://www.keepthewebweird.com/iphone-style-icon-tutorial/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/iphone-icon.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://forum.crystalxp.net/index.php?showtopic=37215">如何创作iPod Touch</a><br />
最简单的创作iPod Touch的方法。</p>
<p><a href="http://forum.crystalxp.net/index.php?showtopic=37215"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/touch.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.photoshoptalent.com/photoshop-tutorials/pst/486/Create-an-iPod-Touch.html">创作iPod Touch</a><br />
纯手工绘制而无需使用任何图片创作出来的iPod Touch。</p>
<p><a href="http://www.photoshoptalent.com/photoshop-tutorials/pst/486/Create-an-iPod-Touch.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/touch2.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.xenicore.com/index.php?option=com_content&amp;task=view&amp;id=14&amp;Itemid=33">iPhone教程</a><br />
该教程详细讲述了如何创建图形，应用效果并且创作你自己风格的iPhone。</p>
<p><a href="http://www.xenicore.com/index.php?option=com_content&amp;task=view&amp;id=14&amp;Itemid=33"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/red-iphone.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.teehanlax.com/blog/?p=447">iPhone GUI PSD</a><br />
一个非常全面的元素库文件，所有元素均可编辑。</p>
<p><a href="http://www.teehanlax.com/blog/?p=447"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/gui.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://tutorialblog.org/designing-for-the-iphone-resources/">iPhone设计资源</a><br />
这里有一些资源可以帮助你进行iPhone设计项目。</p>
<p><a href="http://tutorialblog.org/designing-for-the-iphone-resources/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/iphone-resources.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<h3 style="font-size: 1.17em;">iCons和网页</h3>
<p><a href="http://www.tutorial9.net/photoshop/create-the-glass-shelf-dock-from-leopard-os-in-photoshop/">创作</a><a href="http://www.tutorial9.net/photoshop/create-the-glass-shelf-dock-from-leopard-os-in-photoshop/">操作系统下的</a><a href="http://www.tutorial9.net/photoshop/create-the-glass-shelf-dock-from-leopard-os-in-photoshop/">Glass-Shelf Dock</a></p>
<p><a href="http://www.tutorial9.net/photoshop/create-the-glass-shelf-dock-from-leopard-os-in-photoshop/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/glass-shelf.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://veerle.duoh.com/blog/comments/apple_leopard_text_effects/">Apple Leopard字体效果</a></p>
<p><a href="http://veerle.duoh.com/blog/comments/apple_leopard_text_effects/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/leopard-text.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://elitebydesign.com/design-the-itunes-icon-for-the-iphone-and-ipod-touch/">iTunes Icon</a><a href="http://elitebydesign.com/design-the-itunes-icon-for-the-iphone-and-ipod-touch/">设计</a></p>
<p><a href="http://elitebydesign.com/design-the-itunes-icon-for-the-iphone-and-ipod-touch/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/itunes-icon.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.ndesign-studio.com/resources/tutorials/itune-icon/">iTune Icon</a></p>
<p><a href="http://www.ndesign-studio.com/resources/tutorials/itune-icon/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/itunes-icon2.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.empiredezign.com/version2/portfolio/pages/tutorials/mactheme.htm">Mac主题</a></p>
<p><a href="http://www.empiredezign.com/version2/portfolio/pages/tutorials/mactheme.htm"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/mactheme.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://psdtuts.com/designing-tutorials/create-a-jaguar-style-folder-icon/">Jaguar风格文件夹</a></p>
<p><a href="http://psdtuts.com/designing-tutorials/create-a-jaguar-style-folder-icon/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/jaguar.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<h3 style="font-size: 1.17em;">iPod</h3>
<p><a href="http://pshero.com/archives/ipod-shuffle-from-scratch">iPod Shuffle 草图</a></p>
<p><a href="http://pshero.com/archives/ipod-shuffle-from-scratch"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/shuffle.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://psdtuts.com/designing-tutorials/design-a-shiny-photorealistic-apple-remote/">Apple遥控器</a></p>
<p><a href="http://psdtuts.com/designing-tutorials/design-a-shiny-photorealistic-apple-remote/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/apple-remote.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.depiction.net/tutorials/photoshop/realisticipod.php">逼真的iPod</a></p>
<p><a href="http://www.depiction.net/tutorials/photoshop/realisticipod.php"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/realistic-ipod.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.webdesign.org/web/photoshop/drawing-techniques/ipod-in-photoshop.15597.html">iPod</a></p>
<p><a href="http://www.webdesign.org/web/photoshop/drawing-techniques/ipod-in-photoshop.15597.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/ipod.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://photoshoplovr.com/uncategorized/make-the-new-ipod-classic-and-even-the-new-ipod-nano/">iPod Classic</a></p>
<p><a href="http://photoshoplovr.com/uncategorized/make-the-new-ipod-classic-and-even-the-new-ipod-nano/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/new-ipod.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.biorust.com/tutorials/detail/172/us/">Apple iPod</a></p>
<p><a href="http://www.biorust.com/tutorials/detail/172/us/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/create-ipod.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<h3 style="font-size: 1.17em;">Logo和Wallpaper</h3>
<p><a href="http://www.adobetutorialz.com/articles/2970/1/Green-Apple-Style-Design">绿色Apple设计</a></p>
<p><a href="http://www.adobetutorialz.com/articles/2970/1/Green-Apple-Style-Design"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/green-apple.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.adobetutorialz.com/articles/2855/1/Apple-Wallpaper">Apple Wallpaper</a></p>
<p><a href="http://www.adobetutorialz.com/articles/2855/1/Apple-Wallpaper"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/old-apple.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://abduzeedo.com/apple-brushed-aluminum-photoshop-tutorial">Apple’s Brushed Aluminum</a><a href="http://abduzeedo.com/apple-brushed-aluminum-photoshop-tutorial">纹理制作</a></p>
<p><a href="http://abduzeedo.com/apple-brushed-aluminum-photoshop-tutorial"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/aluminum.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.adobetutorialz.com/articles/3003/1/Mac---Colorful-Design">多彩</a><a href="http://www.adobetutorialz.com/articles/3003/1/Mac---Colorful-Design">Mac logo设计</a></p>
<p><a href="http://www.adobetutorialz.com/articles/3003/1/Mac---Colorful-Design"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/colorful-design.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://psdtuts.com/tutorials-effects/a-cool-lighting-effect-in-photoshop/">光影效果</a></p>
<p><a href="http://psdtuts.com/tutorials-effects/a-cool-lighting-effect-in-photoshop/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/lighting-effect.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.good-walls.com/2008/06/29/feed-your-iphone-tutorial/">iPhone</a><a href="http://www.good-walls.com/2008/06/29/feed-your-iphone-tutorial/">流体混合特效</a></p>
<p><a href="http://www.good-walls.com/2008/06/29/feed-your-iphone-tutorial/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/iphone-feed.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.hongkiat.com/blog/60-most-beautiful-apple-mac-os-x-leopard-wallpapers/">60款非常漂亮的Apple Wallpapers</a><br />
Showcase of 60 most beautiful Apple-related wallpapers, including the Apple logo, the Mac OS X, time machine, iPods and more.</p>
<p><a href="http://www.hongkiat.com/blog/60-most-beautiful-apple-mac-os-x-leopard-wallpapers/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/apple-wallpaper.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<h3 style="font-size: 1.17em;">视频教程</h3>
<p><a href="http://www.youtube.com/watch?v=IbVr3SNmud8">如何制作iPhone Icons</a></p>
<p><a href="http://www.youtube.com/watch?v=IbVr3SNmud8"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/icons-video.jpg" alt="Photoshop Tutorial Screenshot" width="480" height="360" /></a></p>
<p><a href="http://www.youtube.com/watch?v=wVT8UUZQPNM">iPhone</a></p>
<p><a href="http://www.youtube.com/watch?v=wVT8UUZQPNM"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/iphone-video.jpg" alt="Photoshop Tutorial Screenshot" width="480" height="360" /></a></p>
<p><a href="http://video.yahoo.com/watch/2954996/8480477">iPod广告效果</a></p>
<p><a href="http://video.yahoo.com/watch/2954996/8480477"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/ad-video.jpg" alt="Photoshop Tutorial Screenshot" width="480" height="360" /></a></p>
<p><a href="http://www.youtube.com/watch?v=ztEyIvx2xxc">Coldplay版苹果商业广告</a></p>
<p><a href="http://www.youtube.com/watch?v=ztEyIvx2xxc"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/coldplay-video.jpg" alt="Photoshop Tutorial Screenshot" width="480" height="360" /></a></p>
<p><a href="http://www.youtube.com/watch?v=11SACGYkf4s">iMac</a></p>
<p><a href="http://www.youtube.com/watch?v=11SACGYkf4s"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/imac-video.jpg" alt="Photoshop Tutorial Screenshot" width="480" height="360" /></a></p>
<p><a href="http://www.youtube.com/watch?v=arK41CUMfWc">Apple TV背景</a></p>
<p><a href="http://www.youtube.com/watch?v=arK41CUMfWc"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/apple-tv-video.jpg" alt="Photoshop Tutorial Screenshot" width="480" height="360" /></a></p>
<p><a href="http://www.youtube.com/watch?v=Z4CwZnkeVSs">创作 iTunes Icon</a></p>
<p><a href="http://www.youtube.com/watch?v=Z4CwZnkeVSs"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/itunes-video.jpg" alt="Photoshop Tutorial Screenshot" width="480" height="360" /></a></p>
<h3 style="font-size: 1.17em;">Mac广告</h3>
<p><a href="http://www.idotutorials.com/2008/09/29/create-an-iphone-advertisement/">创作iPhone 广告</a></p>
<p><a href="http://www.idotutorials.com/2008/09/29/create-an-iphone-advertisement/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/iphone-advertisement.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.solidoxygen.com/ipodbrush.php">iPod风格笔刷</a></p>
<p><a href="http://www.solidoxygen.com/ipodbrush.php"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/ipod-brushes.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.tutorial5.com/content/view/163/53/">Grunge风格的iPod设计</a></p>
<p><a href="http://www.tutorial5.com/content/view/163/53/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/grunge-ipod.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.photoshopsupport.com/tutorials/jennifer/ipod.html">I See iPod People</a><a href="http://www.photoshopsupport.com/tutorials/jennifer/ipod.html">平面广告</a></p>
<p><a href="http://www.photoshopsupport.com/tutorials/jennifer/ipod.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/ipod-people.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.tutorial9.net/photoshop/design-a-coldplayapple-inspired-portrait-in-photoshop/">设计一款Coldplay版的苹果素描</a></p>
<p><a href="http://www.tutorial9.net/photoshop/design-a-coldplayapple-inspired-portrait-in-photoshop/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/coldplay-inspired.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://great-design.blogspot.com/2008/02/creating-apple-style-advert.html">制作Apple风格的广告</a></p>
<p><a href="http://great-design.blogspot.com/2008/02/creating-apple-style-advert.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/apple-style-advert.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.photoshoplab.com/make-your-own-ipod-style-photo.html">制作你自己的iPod风格照片</a></p>
<p><a href="http://www.photoshoplab.com/make-your-own-ipod-style-photo.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/ipod-style.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p><a href="http://www.macmerc.com/articles/Graphics_Tips/260">Attack of the iPod People</a><a href="http://www.macmerc.com/articles/Graphics_Tips/260">广告风格设计</a></p>
<p><a style="text-decoration: none;" href="http://www.macmerc.com/articles/Graphics_Tips/260"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/03/attack.jpg" alt="Photoshop Tutorial Screenshot" width="500" height="300" /></a></p>
<p>[<a href="http://www.smashingmagazine.com/2009/03/25/45-apple-inspired-photoshop-tutorials/">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/45%e6%ac%be%e8%8b%b9%e6%9e%9c%e8%ae%be%e8%ae%a1%e9%a3%8e%e6%a0%bc%e7%9a%84photoshop%e6%95%99%e7%a8%8b.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10个你应该了解的极少用的HTML标签</title>
		<link>http://www.4ebstudio.com/10-rare-html-tags-you-really-should-know.html</link>
		<comments>http://www.4ebstudio.com/10-rare-html-tags-you-really-should-know.html#comments</comments>
		<pubDate>Wed, 25 Mar 2009 09:24:13 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=786</guid>
		<description><![CDATA[1. &#60;cite&#62;
我们大多数人都知道 &#60;blockquote&#62;标签，但是你是否知道它的兄弟 &#60;cite&#62;呢？&#60;cite&#62;允许你定义元素内的引用。典型的情况就是浏览器会将&#60;cite&#62;标签的内容选染成斜体，但是如果你设置了CSS样式的话，那么还是会以CSS样式为准的。
&#60;cite&#62;对于书目和其他网站索引是非常有用的。请看下面这个例子：
David Allen&#8217;s breakthrough organization book Getting Things Done has taken the web by storm.
2. &#60;optgroup&#62;

&#60;optgroup&#62;对于在选择菜单下的选择组中添加小定义是非常有用的。比如你想按照时间分类定义一组电影列表，那么你可以这样做：

&#60;label for=&#34;showtimes&#34;&#62;Showtimes&#60;/label&#62;


&#60;select id=&#34;showtimes&#34; name=&#34;showtimes&#34;&#62; &#60;optgroup label=&#34;1PM&#34;&#62;&#60;/optgroup&#62; &#60;option value=&#34;titanic&#34;&#62;Twister&#60;/option&#62; &#60;option value=&#34;nd&#34;&#62;Napoleon Dynamite&#60;/option&#62; &#60;option value=&#34;wab&#34;&#62;What About Bob?&#60;/option&#62; &#60;optgroup label=&#34;2PM&#34;&#62;&#60;/optgroup&#62; &#60;option value=&#34;bkrw&#34;&#62;Be Kind Rewind&#60;/option&#62; &#60;option value=&#34;stf&#34;&#62;Stranger Than Fiction&#60;/option&#62; &#60;/select&#62;




效果预览:
Showtimes
  Twister Napoleon Dynamite What About Bob?   Be Kind Rewind [...]]]></description>
			<content:encoded><![CDATA[<h3>1. &lt;cite&gt;</h3>
<p>我们大多数人都知道 &lt;blockquote&gt;标签，但是你是否知道它的兄弟 &lt;cite&gt;呢？&lt;cite&gt;允许你定义元素内的引用。典型的情况就是浏览器会将&lt;cite&gt;标签的内容选染成斜体，但是如果你设置了CSS样式的话，那么还是会以CSS样式为准的。</p>
<p>&lt;cite&gt;对于书目和其他网站索引是非常有用的。请看下面这个例子：</p>
<p>David Allen&#8217;s breakthrough organization book <em><cite>Getting Things Done</cite></em> has taken the web by storm.</p>
<h3>2. &lt;optgroup&gt;</h3>
<p><span id="more-786"></span></p>
<p>&lt;optgroup&gt;对于在选择菜单下的选择组中添加小定义是非常有用的。比如你想按照时间分类定义一组电影列表，那么你可以这样做：</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;showtimes&quot;</span>&gt;</span>Showtimes<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">select</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;showtimes&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;showtimes&quot;</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">optgroup</span> <span style="color: #000066;">label</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1PM&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">optgroup</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;titanic&quot;</span>&gt;</span>Twister<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;nd&quot;</span>&gt;</span>Napoleon Dynamite<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;wab&quot;</span>&gt;</span>What About Bob?<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">optgroup</span> <span style="color: #000066;">label</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2PM&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">optgroup</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;bkrw&quot;</span>&gt;</span>Be Kind Rewind<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stf&quot;</span>&gt;</span>Stranger Than Fiction<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">select</span>&gt;</span></pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p><strong>效果预览:</strong></p>
<p><label for="showtimes">Showtimes</label></p>
<select id="showtimes" name="showtimes"> <optgroup label="1PM"> <option value="titanic">Twister</option> <option value="nd">Napoleon Dynamite</option> <option value="wab">What About Bob?</option> </optgroup> <optgroup label="2PM"> <option value="bkrw">Be Kind Rewind</option> <option value="stf">Stranger Than Fiction</option> </optgroup> </select>
<p>这样做允许选择列表使用视觉效果将电影清单分开。</p>
<h3>3. &lt;acronym&gt;</h3>
<p>&lt;acronym&gt;标签可以用来定义或者进一步解释一组文字。当你将鼠标悬浮在使用了&lt;acronym&gt;标签的文字上的时候，将会在其下方出现一个带有文字的方框。看看下面的例子：</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">The microblogging site <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">acronym</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Founded in 2006&quot;</span>&gt;</span> Twitter<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">acronym</span>&gt;</span> has recently struggled with downtimes.</pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p><strong>效果预览:</strong></p>
<p><acronym title="Search Engine Optimization">SEO</acronym> is full of trickery and magic.</p>
<h3>4. &lt;address&gt;</h3>
<p>&lt;address&gt;是一个非常不起眼的小标签，但是它并非没有可用之地。顾名思义，&lt;address&gt;允许你对HTML中的地址添加语义代码。这个代码可以将标记内的文字斜体化。当然，你也可以通过CSS改变样式。</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">address</span>&gt;</span>Glen Stansberry <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">address</span>&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">1234 Web Dev Lane</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">Anywhere, USA</pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<h3>5. &lt;ins&gt;和&lt;del&gt;</h3>
<p>如果你想使用标记来显示编辑修订效果，&lt;ins&gt;和&lt;del&gt;正式你所要的。正如名字所暗示的，&lt;ins&gt;使用下划线突出显示添加的，&lt;del&gt;使用删除线显示被去除的。</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">John <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">del</span>&gt;</span>likes<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">del</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ins</span>&gt;</span>LOVES<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ins</span>&gt;</span> his new iPod.</pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p><strong>效果预览:</strong></p>
<p>John <del>likes</del> <ins>LOVES</ins> his new iPod.</p>
<h3>6. &lt;label&gt;</h3>
<p>当写代码的时候表单元素很容易被忽略。而其中一个最容易被忽略的就是&lt;label&gt;标签。&lt;label&gt;标签不仅可以快速注解你的标签文字，而且可以使用&#8221;for&#8221;语句定义哪个元素被赋予到了该标签。这些&lt;label&gt;标签不仅可以用来定义样式，而且可以让你为关联元素设置标题点击。</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;username&quot;</span>&gt;</span>Username<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;username&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<h3>7. &lt;fieldset&gt;</h3>
<p>&lt;fieldset&gt;是一个很少用的属性，他可以添加到你的表单上为表单元素创建一个逻辑组。一旦应用了&lt;fieldset&gt;标签，所有表单元素将会被一个方框缩包围。你可以在&lt;fieldset&gt;标签内使用&lt;label&gt;来定义该组的标题。</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">fieldset</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">fieldset</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">Are You Smarter Than a 5th Grader?</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">Yes
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;yes&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;yes&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">No
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;no&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;no&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p><strong>效果预览:</strong></p>
<form>
<fieldset>
<legend>Are You Smarter Than a 5th Grader?</legend>
<p>Yes</p>
<input name="yes" type="radio" value="yes" /> No</p>
<input name="no" type="radio" value="no" /></fieldset>
</form>
<h3>8. &lt;abbr&gt;</h3>
<p>&lt;abbr&gt;和&lt;acronym&gt;是同类标签，不过&lt;abbr&gt;仅仅用来定义缩写单词。和&lt;acronym&gt;一样，当你在缩写字符元素上使用鼠标悬浮的时候，该缩写的完整定义将会出现在下方。&lt;abbr&gt;极少被使用，但是对于多数屏幕阅读者，语法检查者和搜索引擎来说非常有用处。</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">abbr</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Sergeant&quot;</span>&gt;</span>Sgt.<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">abbr</span>&gt;</span> Pepper's Lonely Hearts Club is my favorite album.</pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p><strong>效果预览:</strong></p>
<p><abbr title="Sergeant">Sgt.</abbr> Pepper&#8217;s Lonely Hearts Club is my favorite album.</p>
<h3>9. rel</h3>
<p>Rel可能是一款超级有用的属性，任何HTML元素都可以应用它。它对于读取那些没有被特别定义的额外的变量非常有帮助。当你在HTML中使用Javascript的时候非常有用。如果你有一个链接，并想进行行内编辑，你可以这样做：</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;clickable&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;page.html&quot;</span>&gt;</span>This link is editable<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p>Javascript可以寻找带有&#8221;clickable&#8221;属性的链接，然后应用Ajax技术使该链接可以被进行行内编辑。而这仅仅是rel属性众多技术中的一个。</p>
<h3>10. &lt;wbr&gt;</h3>
<p>&lt;wbr&gt;是一个非常偏僻的标签。说实话，我怀疑你们是否有人接触过它。从本质上讲，这个标签允许你在指定的地方进行切断换行。不过这个标签非常独特，它需要依赖浏览器的分辨能力。这个标签对于想要避免出现垂直滚动条的情况非常有用。</p>
<p>如果你想使用这个效果，你可以试试看这个标签。不过需要注意的是，它并不被所有浏览器支持，具体的技术指标情参看<a href="http://www.quirksmode.org/oddsandends/wbr.html">这篇文章</a>。</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span>&gt;</span>How do you say Supercalifragilisticexpialidocious?<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span></pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p>[<a href="http://net.tutsplus.com/articles/web-roundups/10-rare-html-tags-you-really-should-know/">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/10-rare-html-tags-you-really-should-know.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
