<?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/web-design-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>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>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>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>
		<item>
		<title>13个加速WordPress并提高性能的技巧</title>
		<link>http://www.4ebstudio.com/13-great-wordpress-speed-tips-tricks-for-max-performance.html</link>
		<comments>http://www.4ebstudio.com/13-great-wordpress-speed-tips-tricks-for-max-performance.html#comments</comments>
		<pubDate>Tue, 24 Mar 2009 06:38:13 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[实用工具]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[网站优化]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=101</guid>
		<description><![CDATA[对于一个成功的网站来说，性能是一个关键因素。如今WordPress已经越来越流行，但是它只有在某些情况下才能发挥出它的最佳效用。如果你觉得你的wordpress还没有发挥出最佳性能，并且你希望能够提高你网站的点击量或者发觉一些你所不知道的wordpress的隐藏功能，那么你可以试试以下的一些建议。
一些基本且简单的步骤
1. 升级到最新版本
WordPress 2.7相对之前的版本有很多性能上的提高，所以你最好升级到到最新的版本。
2. 移除不必要的插件，并更新现有的插件
移除任何你不使用的插件。禁用并且直接从你的服务器上将他们删除。禁用插件将会影响到网站的速度因为Wordpress会自动检测这些插件是启用了还是未启用。另外，你必须将你正在使用的插件升级到最新版本。开发人员之所以发布新的版本是因为他们修改了一些代码从而使插件能够更好的运行。

3. 最小化PHP以及数据库读取
我阅读了 Wpcandy’s simple ways to speed up WordPress 这篇非常好的技巧。它提供了许多建议来降低PHP和数据库读取。每当你的网站页面加载的时候，如果你的浏览器不得不执行任何PHP读取，它将增加页面的加载时间。如果你使用静态的HTML代替PHP读取，每次网页加载的时候，浏览器只读取HTML。
4. 从myPhpAdmin优化和修复你的数据库
每周或者定期你应该登录到你的myPhpAdmin对数据进行优化。打开你的Wordpress数据库图表，将所有选项全部选取，然后在选择框中选择“优化图表(Optimise Tables)”和“修复图表(Repair Tables)” 选项。你会惊奇的发现这个建议是多么的好，它将对现有数据库优化10%。

整理你的图片
5. 使用值得信赖的图片存储服务商
试着将网站上的图片，CSS，JavaScript和其他静态文件存放在Amazon S3存储空间上 ，你会发现你的服务器的CPU及内存的平均消耗数量会减少很多。具体请参考这里。

你也可以试试这个WordPress插件，WP-Offload将通过卸载你的静态内容如图片，文件以及多媒体等加速你的博客性能。这将大大降低你的宽带消耗以及HTTP请求数据。
6. 使用Shrink O’Matic优化你的图片
Shrink O’Matic是一款AIR软件可以轻松的批量修改你的图片大小。它可以处理JPGs, GIFs以及PNGs格式的图片。简单的拖拽图片，然后按照你的意思修改图片大小。你还以选择输出的大小，文件名称和格式。

提高性能的好建议
7.安装WP Super Cache插件
我猜你们大多数人都知道为什么我会坚持使用该插件。该插件可以从你的动态Wordpress博客上生成静态的html文件。当一个静态的html文件生成以后，你的服务器将不用再去读取那些极占资源的PHP脚本，并且不会去加载数据库中的任何内容，这样你的文章将会被加载的更快速。
8.PHP Speedy WP
PHP Speedy WP可以迅速且轻松的加速你的WordPress网站并且改善你的博客响应时间。CSS背景图片可以自动的转化为Data URI，这就十分有效的降低了HTTP请求的数量。另外更重要的是，它和IE浏览器器兼容，即使后者不支持Data URI。不幸的是，PHP speedy 存在一些漏洞需要修复：合并后的JavaScrip被放置在了页面头部，这样它就不能在WP Super Cache中工作。为了解决这个问题，你必须查看Prelovac提供的这篇文章，对这两个插件进行一些修改。

9.WP CSS
该插件可以备份压缩（GZIP）以及去除CSS文件中的空格。它可以让你自信的在CSS文件内使用@import而无需顾虑客户端的情况。它将查看你的style.css文件并且将任何@import文件置入其中。同时还会提供一个缓存修改时间。你还可以在指定的页面添加CSS文件或者将他们都放置在一个文件里面。
10.DB Cache
这个插件可以定期缓存你的每一个数据库。他的速度非常快而且仅使用了很少的空间。
11.通过使用AJAX Libraries API 加速访问你的常用架构
 AJAX Libraries API可以加速开发人员制作网页应用的速度，它仅仅是通过将一些非常流行的javascript库全都存放在了一起，这些库包括：

jQuery
prototype
script.aculo.us
MooTools
dojo

你可以直接添加这些链接：

&#60;script src=&#34;http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.2/prototype.js&#34; type=&#34;text/javascript&#34;&#62;&#60;!--mce:0--&#62;&#60;/script&#62;




或者可以使用Google’s API:

&#60;script src=&#34;http://www.google.com/jsapi&#34; type=&#34;text/javascript&#34;&#62;&#60;!--mce:1--&#62;&#60;/script&#62;


&#60;script type=&#34;text/javascript&#34;&#62;&#60;!--mce:2--&#62;&#60;/script&#62;




通过使用 google.load()方式，你的应用程序速度将会提升很多。
12.显示页面加载时间和读取数量
这里有一个非常简单的代码可以插入到你的模板中来显示你的页面加载时间，或者有多少sql数据被执行了。这个技巧对于判定WordPress优化效果非常有用。

 queries in   [...]]]></description>
			<content:encoded><![CDATA[<p>对于一个成功的网站来说，性能是一个关键因素。如今WordPress已经越来越流行，但是它只有在某些情况下才能发挥出它的最佳效用。如果你觉得你的wordpress还没有发挥出最佳性能，并且你希望能够提高你网站的点击量或者发觉一些你所不知道的wordpress的隐藏功能，那么你可以试试以下的一些建议。</p>
<p><strong>一些基本且简单的步骤</strong></p>
<h4 class="title">1. 升级到最新版本</h4>
<p>WordPress 2.7相对之前的版本有很多性能上的提高，所以你最好<a href="http://wordpress.org/download/">升级到</a>到最新的版本。</p>
<h4 class="title">2. 移除不必要的插件，并更新现有的插件</h4>
<p>移除任何你不使用的插件。禁用并且直接从你的服务器上将他们删除。禁用插件将会影响到网站的速度因为Wordpress会自动检测这些插件是启用了还是未启用。另外，你必须将你正在使用的插件升级到最新版本。开发人员之所以发布新的版本是因为他们修改了一些代码从而使插件能够更好的运行。</p>
<p><span id="more-101"></span></p>
<h4 class="title">3. 最小化PHP以及数据库读取</h4>
<p>我阅读了 <a href="http://wpcandy.com/articles/tutorials/4-simple-ways-to-speed-up-wordpress.html">Wpcandy’s simple ways to speed up WordPress</a> 这篇非常好的技巧。它提供了许多建议来降低PHP和数据库读取。每当你的网站页面加载的时候，如果你的浏览器不得不执行任何PHP读取，它将增加页面的加载时间。如果你使用静态的HTML代替PHP读取，每次网页加载的时候，浏览器只读取HTML。</p>
<h4 class="title">4. 从myPhpAdmin优化和修复你的数据库</h4>
<p>每周或者定期你应该登录到你的myPhpAdmin对数据进行优化。打开你的Wordpress数据库图表，将所有选项全部选取，然后在选择框中选择“优化图表(Optimise Tables)”和“修复图表(Repair Tables)” 选项。你会惊奇的发现这个建议是多么的好，它将对现有数据库优化10%。</p>
<p class="img"><img class="alignnone size-full wp-image-807" title="wordpress_speed_5" src="http://4ebstudio.com/wp-content/uploads/2009/03/wordpress_speed_5.jpg" alt="wordpress_speed_5" width="500" height="172" /></p>
<h3 class="title">整理你的图片</h3>
<h4 class="title">5. 使用值得信赖的图片存储服务商</h4>
<p>试着将网站上的图片，CSS，JavaScript和其他静态文件存放在<a href="http://aws.amazon.com/s3/">Amazon S3存储空间上 </a>，你会发现你的服务器的CPU及内存的平均消耗数量会减少很多。具体请参考<a href="http://www.labnol.org/internet/host-images-files-on-amazon-s3-storage/4923/">这里</a>。</p>
<p class="img"><img class="alignnone size-full wp-image-808" title="wordpress_speed_6" src="http://4ebstudio.com/wp-content/uploads/2009/03/wordpress_speed_6.jpg" alt="wordpress_speed_6" width="495" height="230" /></p>
<p>你也可以试试这个<a href="http://wordpress.org/extend/plugins/wp-offload/">WordPress插件</a>，WP-Offload将通过卸载你的静态内容如图片，文件以及多媒体等加速你的博客性能。这将大大降低你的宽带消耗以及HTTP请求数据。</p>
<h4 class="title">6.<a href="http://toki-woki.net/p/Shrink-O-Matic/"> 使用Shrink O’Matic优化你的图片</a></h4>
<p>Shrink O’Matic是一款AIR软件可以轻松的批量修改你的图片大小。它可以处理JPGs, GIFs以及PNGs格式的图片。简单的拖拽图片，然后按照你的意思修改图片大小。你还以选择输出的大小，文件名称和格式。</p>
<p class="img"><img class="alignnone size-full wp-image-804" title="wordpress_speed_1" src="http://4ebstudio.com/wp-content/uploads/2009/03/wordpress_speed_1.jpg" alt="wordpress_speed_1" width="500" height="271" /></p>
<h3 class="title">提高性能的好建议</h3>
<h4 class="title">7.<a href="http://wordpress.org/extend/plugins/wp-super-cache/">安装WP Super Cache插件</a></h4>
<p>我猜你们大多数人都知道为什么我会坚持使用该插件。该插件可以从你的动态Wordpress博客上生成静态的html文件。当一个静态的html文件生成以后，你的服务器将不用再去读取那些极占资源的PHP脚本，并且不会去加载数据库中的任何内容，这样你的文章将会被加载的更快速。</p>
<h4 class="title">8.<a href="http://aciddrop.com/2008/12/11/php-speedy-wp-05-now-works-with-wordpress-27/">PHP Speedy WP</a></h4>
<p><a href="http://aciddrop.com/2008/12/11/php-speedy-wp-05-now-works-with-wordpress-27/">PHP Speedy WP</a>可以迅速且轻松的加速你的WordPress网站并且改善你的博客响应时间。CSS背景图片可以自动的转化为Data URI，这就十分有效的降低了HTTP请求的数量。另外更重要的是，它和IE浏览器器兼容，即使后者不支持Data URI。不幸的是，PHP speedy 存在一些漏洞需要修复：合并后的JavaScrip被放置在了页面头部，这样它就不能在WP Super Cache中工作。为了解决这个问题，你必须查看<a href="http://www.prelovac.com/vladimir/optimize-wordpress-page-loading-time-with-php-speedy-and-wp-super-cache">Prelovac</a><a href="http://www.prelovac.com/vladimir/optimize-wordpress-page-loading-time-with-php-speedy-and-wp-super-cache">提供的这篇文章</a>，对这两个插件进行一些修改。</p>
<p class="img"><img class="alignnone size-full wp-image-805" title="wordpress_speed_3" src="http://4ebstudio.com/wp-content/uploads/2009/03/wordpress_speed_3.jpg" alt="wordpress_speed_3" width="500" height="330" /></p>
<h4 class="title">9.<a href="http://wordpress.org/extend/plugins/wp-css/">WP CSS</a></h4>
<p>该插件可以备份压缩（GZIP）以及去除CSS文件中的空格。它可以让你自信的在CSS文件内使用@import而无需顾虑客户端的情况。它将查看你的style.css文件并且将任何@import文件置入其中。同时还会提供一个缓存修改时间。你还可以在指定的页面添加CSS文件或者将他们都放置在一个文件里面。</p>
<h4 class="title">10.<a href="http://wordpress.org/extend/plugins/db-cache/">DB Cache</a></h4>
<p>这个插件可以定期缓存你的每一个数据库。他的速度非常快而且仅使用了很少的空间。</p>
<h4 class="title">11.<a href="http://code.google.com/apis/ajaxlibs/">通过使用AJAX Libraries API</a><a href="http://code.google.com/apis/ajaxlibs/"> 加速访问你的常用架构</a></h4>
<p><a href="http://code.google.com/apis/ajaxlibs/"> AJAX Libraries API</a>可以加速开发人员制作网页应用的速度，它仅仅是通过将一些非常流行的javascript库全都存放在了一起，这些库包括：</p>
<ul>
<li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery">jQuery</a></li>
<li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#prototype">prototype</a></li>
<li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#script_aculo_us">script.aculo.us</a></li>
<li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#mootools">MooTools</a></li>
<li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#dojo">dojo</a></li>
</ul>
<p>你可以直接添加这些链接：</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;">script</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.2/prototype.js&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--mce:0--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p>或者可以使用Google’s API:</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;">script</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.google.com/jsapi&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--mce:1--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</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;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--mce:2--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<p>通过使用 google.load()方式，你的应用程序速度将会提升很多。</p>
<h4 class="title">12.<a href="http://www.wprecipes.com/how-to-display-page-loading-time-number-of-queries">显示页面加载时间和读取数量</a></h4>
<p>这里有一个非常简单的代码可以插入到你的模板中来显示你的页面加载时间，或者有多少sql数据被执行了。这个技巧对于判定WordPress优化效果非常有用。</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"> queries in   seconds<span style="color: #339933;">.</span></pre></div></div>

<table class="sortable" border="0">
<tbody></tbody>
</table>
<h4 class="title">13.<a href="http://yoast.com/wordpress/optimize-db/">优化数据库</a></h4>
<p>MySQL是一个非常棒的数据库，但是他自身不会进行清理工作。该插件运行一个优化表的命令，有效的清楚了数据碎片。这是一个非常有用的数据表插件并且更新非常块。界面非常简单：仅有一个按钮：立刻优化（Optimize Now）。</p>
<p class="img"><img class="alignnone size-full wp-image-806" title="wordpress_speed_4" src="http://4ebstudio.com/wp-content/uploads/2009/03/wordpress_speed_4.jpg" alt="wordpress_speed_4" width="500" height="117" /></p>
<p class="img">
<p class="img">[<a href="http://www.noupe.com/wordpress/13-great-wordpress-speed-tips-tricks-for-max-performance.html">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/13-great-wordpress-speed-tips-tricks-for-max-performance.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE修复: Bicubic图像调整</title>
		<link>http://www.4ebstudio.com/ie-fix-bicubic-scaling-for-images.html</link>
		<comments>http://www.4ebstudio.com/ie-fix-bicubic-scaling-for-images.html#comments</comments>
		<pubDate>Tue, 17 Mar 2009 09:26:29 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[网页设计]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=789</guid>
		<description><![CDATA[Devthought 之前提供的一个css的小技巧现在还是值得拿出来再说说的。虽然这并非一个新点子，单他确实是一个非常重要的技巧。
下面就是我要说的这个小技巧：

img &#123; -ms-interpolation-mode: bicubic; &#125;

如果在你在代码中使用宽度或者长度标签来调整图片大小，IE会认为这是一个垃圾代码，除非你使用上面这个代码片段。总而言之，并不建议在浏览器中调整图片大小，但是总是会遇到一些例外的情况的。

[原文链接]
]]></description>
			<content:encoded><![CDATA[<p><a href="http://devthought.com/tumble/2009/03/tip-high-quality-css-thumbnails-in-ie7/">Devthought</a> 之前提供的一个css的小技巧现在还是值得拿出来再说说的。虽然这并非一个新点子，单他确实是一个非常重要的技巧。</p>
<p>下面就是我要说的这个小技巧：</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">img <span style="color: #00AA00;">&#123;</span> -ms-interpolation-mode<span style="color: #00AA00;">:</span> bicubic<span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>如果在你在代码中使用宽度或者长度标签来调整图片大小，IE会认为这是一个垃圾代码，除非你使用上面这个代码片段。总而言之，并不建议在浏览器中调整图片大小，但是总是会遇到一些例外的情况的。</p>
<p><img src="http://css-tricks.com/wp-content/csstricks-uploads/bicubicfix.jpg" alt="" width="570" height="464" /></p>
<p>[<a href="http://css-tricks.com/ie-fix-bicubic-scaling-for-images/">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/ie-fix-bicubic-scaling-for-images.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>读者精选: 30款必用的mac网页设计软件</title>
		<link>http://www.4ebstudio.com/readers-pick-30-incredibly-useful-mac-apps-for-web-design.html</link>
		<comments>http://www.4ebstudio.com/readers-pick-30-incredibly-useful-mac-apps-for-web-design.html#comments</comments>
		<pubDate>Thu, 05 Feb 2009 09:21:27 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[实用工具]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[苹果新知]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[开发软件]]></category>
		<category><![CDATA[绘图软件]]></category>
		<category><![CDATA[网站工具]]></category>
		<category><![CDATA[设计软件]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=782</guid>
		<description><![CDATA[上周我们发表了一篇名为 “15款网页设计师必备的mac应用程序“的文章，我请我们的读者说说他们最喜欢的mac应用软件以及原因。
本文我们将列举读者们建议的30款网页设计师和开发人员必备的mac应用程序，这些程序或能节省网页或程序开发的时间，或能帮助他们有效实施工作计划。
1. Transmit

功能丰富的FTP / SFTP / WebDAV客户端软件：获取iDisk, FTP, SFTP, 或者TLS/SSL上的文件。可以使用各种程序编辑远程文件，甚至是图形文件。具有拖拽功能和自动同步功能。

2. TextMate

无论你是一名程序开发人员还是设计师，编写代码都是一件非常辛苦的事情，TextMate可以让你工作起来游刃有余，降低脑力负荷，并让常规的手写工作交由电脑来完成。TextMate被我们的读者评选为最有用的和极具扩展功能的文本编辑器，特别是使用Subversion的用户。TextMate产品贴士，是一篇非常有用的文章，提供了12个技巧帮助你更有效的使用TextMate。
3. Anxiety

Anxiety是Mac OS X Leopard下的一款轻量级的To-do工具，可以和iCal以及Mail同步。Anxiety提供了一个简介而紧凑的界面，可以添加和查看你的任务清单，并且可以以各种方式集合在桌面背景上。
4. BBEdit

BBEdit是一款专业的Mac平台下的HTML及文本编辑工具，提供了对文本进行编辑，查找和管理的各种高性能。智能界面可以让你轻松使用BBEdit的各种特性，包括检索目标模式匹配，多文件查找替换（甚至是没有打开的文件以远程服务器上的文件），项目定义工具，功能导览以及针对不同代码语言的语法颜色标识，代码折叠，FTP和SFTP模式打开、保存文件，AppleScript，Mac OS X Unix脚本支持，文本和代码自动完成，当然还有一系列的HTML工具。
5. HyperEdit

Tumult HyperEdit 是一款轻量级的HTML编辑器，它提供了一个预览窗口来实时显示页面。HyperEdit打破了冗长乏味的代码书写模式：写html，保存，在浏览器中加载及预览。它实现了撰写，修改与预览的同步进行，加快了整个页面设计的进程。W3C验证会将错误的语法用红色的下划线标记出来。它内嵌了与Safari相同的渲染引擎，因此不仅符合标准而且速度还非常快。
6. Versions

Versions提供了在mac上用Subversion工作的一个非常好的方式。无论你是一个Subversion高手，还是新手，Versions都会帮你优化你的工作流程。
7. Skitch

skitch不仅允许你快速创建并编辑截屏，而且还提供给你一个服务器空间和平台来储存这些图片方面你在skitch页面上进行浏览。skitch特性包括：网页快照，捕捉对话瞬间，应用程序截屏，iSight捕捉，快速建立想法草图，连接到iPhoto库。
8. LaunchBar

LaunchBar是一款获奖的工具软件，提供了快速接口进入你的应用程序，文件，联系人以及书签，iTunes资源库，以及搜索引擎等，所有这些仅需输入你要查找的项目名称的缩写即可。
9. Quicksilver

当打开Quicksilver的时候，它会创建一个经常使用的文件夹和文件的目录。激活它以后，你可以快速查找和打开目录中的任意一项。Quicksilver可以基于先前的经验来查找哪个项目是你正在查找的。他也支持缩写功能，因此你可以输入整个字符或者片段即可。
10. Littlesnapper

LittleSnapper是一款截屏和网页快照应用程序。特性包括：完整页面捕捉，元素捕捉（意味着你将不再需要使用十字线），突出显示指定区域，内建文本标注，与客户共享快照等。
11. Aptana

Aptana Studio是一款完整的网页开发环境，整合了一系列强大的写作工具以及协作服务帮助你和你的团队实现轻松的工作。创建，调试，测试以及配置可扩展的PHP解决方案。支持jQuery, prototype, dojo, YUI, ExtJS, MooTools及其他 Ajax库。停放和扩展你的PHP及Jaxer 应用，使用Aptana RadRails快速开发Ruby及Rails应用。使用你的Ajax和JavaScript技巧创建服务器端应用等。
12. ForkLift

强大而快速的FTP应用程序。
13. journler

Journler是一款日记及信息记录软件。与iLife整合，语音和视频接口，文件导入和即时搜索与过滤，不仅集成Mail, iWeb以及Address Book，而且还支持博客，AppleScript以及Spotlight 。
14. Evernote

Evernote允许你在任何环境下使用任何工具或平台来捕获信息，并且在任何时候任何地点均可查看这些信息。
15. TimeLog

跟踪项目时间，界面类似iTunes™，任何一个Mac使用者都会对TimeLog感觉非常熟悉。TimeLog可以跟踪你正在使用的软件，并且显示时间线。这对于跟踪你的工作非常容易，甚至是你忘记了开始的时间。
16. Intaglio

Intaglio是Macintosh下的一款传统的绘画绘图软件。仿照原始的Macintosh绘图工具，Intaglio更倾向于初级使用者以及传统的Macintosh使用者。Intaglio创建2D图形，文字，颜色和适用于Mac OS X的脚本来提供作为一款廉价的绘图软件创建出的前所未有的力量和灵活性。Intaglio并不适用于Mac OS X，它起初的目的就是为了探索该平台为绘图工作实现理想化的能力。
17. Code Collector Pro

Code Collector Pro提供了组织，实用以及共享代码 片段的最好解决方案。
18. Rapidweaver

RapidWeaver是Mac OS X下的一款强大的网页设计应用程序。它基于标准的代码，并且能发不到任何ftp服务器上或是.Mac及MobileMe。
19. Paparazzi
Paparazzi是一款小型的Mac OS X工具用来制作网页快照。
20. Growl

Growl是Mac上的一款通知系统。它提供你正在使用的软件的一些提示信息，而无需进行程序切换。
21. Filezilla

另一款免费的FTP应用程序。
22. Mamp

MAMP可以在你的Mac OS X电脑上安装一个服务器环境。只需点几下鼠标，你就可以为Mac OS X安装Apache, PHP以及MySQL。
23. Billings

Billings可以在任何地方生成专业模式的发票，并且它还内建了30款模板供选择。
24. ColorSchemer

ColorSchemer是一款针对爱好者或者高级人士的专业配色程序。通过使用一个动态视觉色轮，可以即可观察各匹配颜色之间的关系，甚至可以让ColorSchemer智能提供给你一些配色建议。
25. ExpanDrive

ExpanDrive提供给你完全透明的打开，编辑，保存你的喜爱程序的方式，甚至是这些文件存在于世界各地的服务器上。透明的意思是说你甚至都不会感觉到你是在操作一个远程服务器上的文件，它就像是在你的电脑上直接使用USB驱动一样。
26. info.xhead

你的生活中总是会存在一些你不想忘掉的信息。不论它是密码，帐号，愿望列表或是让你挣脱乏味工作的百万美元想法，info.xhead 可以储存所有的这一切，并且将他们归类放置。
27. Vector Designer

VectorDesigner是一款使用简单，直观并且功能强大的适量绘图软件。它可以让你创造出各种极具想象力的适量图，如海报，手册，招贴画，logo，网页图形，t-shirt等等。它有丰富的工具和智能图形：轻松创建矩形，椭圆，多边形，五角星，贝尔曲线，甚至还可以将位图转化成矢量图形。
28. Cuppa

Cuppa是Mac OS X上一款小巧的饮茶时间工具，它会告诉你什么时候你的茶可以喝了。
29. PlainView

Plainview是一款全屏幕的浏览器。
30. Silverback

Silverback是一款为设计师和开发人员设计的并不抢眼的实用测试工具。它可以捕捉屏幕动作，录制参与者的动作、声音，轻而易举的添加段落标记，用遥控器控制录制，导出到Quicktime。
[原文链接]
]]></description>
			<content:encoded><![CDATA[<p>上周我们发表了一篇名为 “<a href="http://4ebstudio.com/15款网页设计师必用的mac应用程序.html">15款网页设计师必备的mac应用程序</a>“的文章，我请我们的读者说说他们最喜欢的mac应用软件以及原因。</p>
<p>本文我们将列举读者们建议的<strong style="font-weight: bold;">30款网页设计师和开发人员必备的mac应用程序</strong>，这些程序或能节省网页或程序开发的时间，或能帮助他们有效实施工作计划。</p>
<h3 style="font-size: 1.17em;">1. <a href="http://www.panic.com/transmit/">Transmit</a></h3>
<p><img style="border: 0px initial initial;" title="mac-apps17jpg" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps17jpg.jpeg" alt="mac-apps17jpg" width="500" height="215" /></p>
<p>功能丰富的FTP / SFTP / WebDAV客户端软件：获取iDisk, FTP, SFTP, 或者TLS/SSL上的文件。可以使用各种程序编辑远程文件，甚至是图形文件。具有拖拽功能和自动同步功能。</p>
<p><span id="more-782"></span></p>
<h3 style="font-size: 1.17em;">2. <a href="http://macromates.com/">TextMate</a></h3>
<p><a href="http://macromates.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps18jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>无论你是一名程序开发人员还是设计师，编写代码都是一件非常辛苦的事情，TextMate可以让你工作起来游刃有余，降低脑力负荷，并让常规的手写工作交由电脑来完成。TextMate被我们的读者评选为最有用的和极具扩展功能的文本编辑器，特别是使用Subversion的用户。<a href="http://www.456bereastreet.com/archive/200811/textmate_productivity_tips/">TextMate产品贴士</a>，是一篇非常有用的文章，提供了12个技巧帮助你更有效的使用TextMate。</p>
<h3 style="font-size: 1.17em;">3. <a href="http://anxietyapp.com/">Anxiety</a></h3>
<p><a href="http://anxietyapp.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps19jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Anxiety是Mac OS X Leopard下的一款轻量级的To-do工具，可以和iCal以及Mail同步。Anxiety提供了一个简介而紧凑的界面，可以添加和查看你的任务清单，并且可以以各种方式集合在桌面背景上。</p>
<h3 style="font-size: 1.17em;">4. <a href="http://www.barebones.com/products/bbedit/">BBEdit</a></h3>
<p><a href="http://www.barebones.com/products/bbedit/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps20jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>BBEdit是一款专业的Mac平台下的HTML及文本编辑工具，提供了对文本进行编辑，查找和管理的各种高性能。智能界面可以让你轻松使用BBEdit的各种特性，包括检索目标模式匹配，多文件查找替换（甚至是没有打开的文件以远程服务器上的文件），项目定义工具，功能导览以及针对不同代码语言的语法颜色标识，代码折叠，FTP和SFTP模式打开、保存文件，AppleScript，Mac OS X Unix脚本支持，文本和代码自动完成，当然还有一系列的HTML工具。</p>
<h3 style="font-size: 1.17em;">5. <a href="http://www.tumultco.com/HyperEdit/">HyperEdit</a></h3>
<p><a href="http://www.tumultco.com/HyperEdit/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps21jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Tumult HyperEdit 是一款轻量级的HTML编辑器，它提供了一个预览窗口来实时显示页面。HyperEdit打破了冗长乏味的代码书写模式：写html，保存，在浏览器中加载及预览。它实现了撰写，修改与预览的同步进行，加快了整个页面设计的进程。W3C验证会将错误的语法用红色的下划线标记出来。它内嵌了与Safari相同的渲染引擎，因此不仅符合标准而且速度还非常快。</p>
<h3 style="font-size: 1.17em;">6. <a href="http://versionsapp.com/">Versions</a></h3>
<p><a href="http://versionsapp.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps22jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Versions提供了在mac上用Subversion工作的一个非常好的方式。无论你是一个Subversion高手，还是新手，Versions都会帮你优化你的工作流程。</p>
<h3 style="font-size: 1.17em;">7. <a href="http://skitch.com/">Skitch</a></h3>
<p><a href="http://skitch.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps23jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>skitch不仅允许你快速创建并编辑截屏，而且还提供给你一个服务器空间和平台来储存这些图片方面你在skitch页面上进行浏览。skitch特性包括：网页快照，捕捉对话瞬间，应用程序截屏，iSight捕捉，快速建立想法草图，连接到iPhoto库。</p>
<h3 style="font-size: 1.17em;">8. <a href="http://www.obdev.at/products/launchbar/beta.html">LaunchBar</a></h3>
<p><a href="http://www.obdev.at/products/launchbar/beta.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps24jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>LaunchBar是一款获奖的工具软件，提供了快速接口进入你的应用程序，文件，联系人以及书签，iTunes资源库，以及搜索引擎等，所有这些仅需输入你要查找的项目名称的缩写即可。</p>
<h3 style="font-size: 1.17em;">9. <a href="http://docs.blacktree.com/quicksilver/what_is_quicksilver">Quicksilver</a></h3>
<p><a href="http://docs.blacktree.com/quicksilver/what_is_quicksilver"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps26jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>当打开Quicksilver的时候，它会创建一个经常使用的文件夹和文件的目录。激活它以后，你可以快速查找和打开目录中的任意一项。Quicksilver可以基于先前的经验来查找哪个项目是你正在查找的。他也支持缩写功能，因此你可以输入整个字符或者片段即可。</p>
<h3 style="font-size: 1.17em;">10. <a href="http://www.realmacsoftware.com/littlesnapper/">Littlesnapper</a></h3>
<p><a href="http://www.realmacsoftware.com/littlesnapper/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps25jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>LittleSnapper是一款截屏和网页快照应用程序。特性包括：完整页面捕捉，元素捕捉（意味着你将不再需要使用十字线），突出显示指定区域，内建文本标注，与客户共享快照等。</p>
<h3 style="font-size: 1.17em;">11. <a href="http://www.aptana.com/">Aptana</a></h3>
<p><a href="http://www.aptana.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps27jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Aptana Studio是一款完整的网页开发环境，整合了一系列强大的写作工具以及协作服务帮助你和你的团队实现轻松的工作。创建，调试，测试以及配置可扩展的PHP解决方案。支持jQuery, prototype, dojo, YUI, ExtJS, MooTools及其他 Ajax库。停放和扩展你的PHP及Jaxer 应用，使用Aptana RadRails快速开发Ruby及Rails应用。使用你的Ajax和JavaScript技巧创建服务器端应用等。</p>
<h3 style="font-size: 1.17em;">12. <a href="http://binarynights.com/">ForkLift</a></h3>
<p><a href="http://binarynights.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps28jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>强大而快速的FTP应用程序。</p>
<h3 style="font-size: 1.17em;">13. <a href="http://journler.com/">journler</a></h3>
<p><a href="http://journler.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps29jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Journler是一款日记及信息记录软件。与iLife整合，语音和视频接口，文件导入和即时搜索与过滤，不仅集成Mail, iWeb以及Address Book，而且还支持博客，AppleScript以及Spotlight 。</p>
<h3 style="font-size: 1.17em;">14. <a href="http://evernote.com/">Evernote</a></h3>
<p><a href="http://evernote.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps30jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Evernote允许你在任何环境下使用任何工具或平台来捕获信息，并且在任何时候任何地点均可查看这些信息。</p>
<h3 style="font-size: 1.17em;">15. <a href="http://www.mediaatelier.com/TimeLog4/">TimeLog</a></h3>
<p><a href="http://www.mediaatelier.com/TimeLog4/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps31jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>跟踪项目时间，界面类似iTunes™，任何一个Mac使用者都会对TimeLog感觉非常熟悉。TimeLog可以跟踪你正在使用的软件，并且显示时间线。这对于跟踪你的工作非常容易，甚至是你忘记了开始的时间。</p>
<h3 style="font-size: 1.17em;">16. <a href="http://purgatorydesign.com/Intaglio/">Intaglio</a></h3>
<p><a href="http://purgatorydesign.com/Intaglio/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps32jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Intaglio是Macintosh下的一款传统的绘画绘图软件。仿照原始的Macintosh绘图工具，Intaglio更倾向于初级使用者以及传统的Macintosh使用者。Intaglio创建2D图形，文字，颜色和适用于Mac OS X的脚本来提供作为一款廉价的绘图软件创建出的前所未有的力量和灵活性。Intaglio并不适用于Mac OS X，它起初的目的就是为了探索该平台为绘图工作实现理想化的能力。</p>
<h3 style="font-size: 1.17em;">17. <a href="http://www.mcubedsw.com/software/codecollectorpro">Code Collector Pro</a></h3>
<p><a href="http://www.mcubedsw.com/software/codecollectorpro"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps33jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Code Collector Pro提供了组织，实用以及共享代码 片段的最好解决方案。</p>
<h3 style="font-size: 1.17em;">18. <a href="http://www.realmacsoftware.com/rapidweaver/">Rapidweaver</a></h3>
<p><a href="http://www.mcubedsw.com/software/codecollectorpro"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps34jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>RapidWeaver是Mac OS X下的一款强大的网页设计应用程序。它基于标准的代码，并且能发不到任何ftp服务器上或是.Mac及MobileMe。</p>
<h3 style="font-size: 1.17em;">19. <a href="http://derailer.org/paparazzi/">Paparazzi</a></h3>
<p>Paparazzi是一款小型的Mac OS X工具用来制作网页快照。</p>
<h3 style="font-size: 1.17em;">20. <a href="http://growl.info/">Growl</a></h3>
<p><a href="http://growl.info/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps36jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Growl是Mac上的一款通知系统。它提供你正在使用的软件的一些提示信息，而无需进行程序切换。</p>
<h3 style="font-size: 1.17em;">21. <a href="http://filezilla-project.org/">Filezilla</a></h3>
<p><a href="http://filezilla-project.org/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps37jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>另一款免费的FTP应用程序。</p>
<h3 style="font-size: 1.17em;">22. <a href="http://www.mamp.info/en/mamp.html">Mamp</a></h3>
<p><a href="http://www.mamp.info/en/mamp.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps38jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>MAMP可以在你的Mac OS X电脑上安装一个服务器环境。只需点几下鼠标，你就可以为Mac OS X安装Apache, PHP以及MySQL。</p>
<h3 style="font-size: 1.17em;">23. <a href="http://www.billingsapp.com/index.html">Billings</a></h3>
<p><a href="http://www.billingsapp.com/index.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps39jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Billings可以在任何地方生成专业模式的发票，并且它还内建了30款模板供选择。</p>
<h3 style="font-size: 1.17em;">24. <a href="http://www.colorschemer.com/osx_info.php">ColorSchemer</a></h3>
<p><a href="http://www.colorschemer.com/osx_info.php"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps40jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>ColorSchemer是一款针对爱好者或者高级人士的专业配色程序。通过使用一个动态视觉色轮，可以即可观察各匹配颜色之间的关系，甚至可以让ColorSchemer智能提供给你一些配色建议。</p>
<h3 style="font-size: 1.17em;">25. <a href="http://www.expandrive.com/expandrive">ExpanDrive</a></h3>
<p><a href="http://www.expandrive.com/expandrive"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps41jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>ExpanDrive提供给你完全透明的打开，编辑，保存你的喜爱程序的方式，甚至是这些文件存在于世界各地的服务器上。透明的意思是说你甚至都不会感觉到你是在操作一个远程服务器上的文件，它就像是在你的电脑上直接使用USB驱动一样。</p>
<h3 style="font-size: 1.17em;">26. <a href="http://www.xheadsoftware.com/info_xhead.asp">info.xhead</a></h3>
<p><a href="http://www.xheadsoftware.com/info_xhead.asp"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps42jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>你的生活中总是会存在一些你不想忘掉的信息。不论它是密码，帐号，愿望列表或是让你挣脱乏味工作的百万美元想法，info.xhead 可以储存所有的这一切，并且将他们归类放置。</p>
<h3 style="font-size: 1.17em;">27. <a href="http://www.tweakersoft.com/vectordesigner/">Vector Designer</a></h3>
<p><a href="http://www.tweakersoft.com/vectordesigner/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps43jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>VectorDesigner是一款使用简单，直观并且功能强大的适量绘图软件。它可以让你创造出各种极具想象力的适量图，如海报，手册，招贴画，logo，网页图形，t-shirt等等。它有丰富的工具和智能图形：轻松创建矩形，椭圆，多边形，五角星，贝尔曲线，甚至还可以将位图转化成矢量图形。</p>
<h3 style="font-size: 1.17em;">28. <a href="http://www.nathanatos.com/software/">Cuppa</a></h3>
<p><a href="http://www.nathanatos.com/software/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps44jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Cuppa是Mac OS X上一款小巧的饮茶时间工具，它会告诉你什么时候你的茶可以喝了。</p>
<h3 style="font-size: 1.17em;">29. <a href="http://www.barbariangroup.com/software/plainview_app_1_0">PlainView</a></h3>
<p><a href="http://www.barbariangroup.com/software/plainview_app_1_0"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps45jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Plainview是一款全屏幕的浏览器。</p>
<h3 style="font-size: 1.17em;">30. <a href="http://silverbackapp.com/">Silverback</a></h3>
<p><a href="http://silverbackapp.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps46jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Silverback是一款为设计师和开发人员设计的并不抢眼的实用测试工具。它可以捕捉屏幕动作，录制参与者的动作、声音，轻而易举的添加段落标记，用遥控器控制录制，导出到Quicktime。</p>
<p>[<a href="http://www.noupe.com/tools/readers-pick-30-incredibly-useful-mac-apps-for-web-design.html">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/readers-pick-30-incredibly-useful-mac-apps-for-web-design.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>15款网页设计师必用的mac应用程序</title>
		<link>http://www.4ebstudio.com/15-incredible-mac-apps-for-freelance-web-designers.html</link>
		<comments>http://www.4ebstudio.com/15-incredible-mac-apps-for-freelance-web-designers.html#comments</comments>
		<pubDate>Thu, 29 Jan 2009 09:19:43 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[实用工具]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[苹果新知]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=778</guid>
		<description><![CDATA[1. Espresso

Espresso是由CSSEdit 的开发人员开发的一款非常强大的网页工具。提供了强大的编辑，项目管理，实时预览，实时发布及同步功能。Espresso具有一个无比强大的基于规则的语法引擎CoreSyntax，它可以将你的文本文件转化成语义结构。Espresso还具有一个可扩展的，可以和CSSEdit样式表单列表相媲美的导引。

2. CSSEdit

CSSEdit是专注于样式表单的一款工具，它提供了相当广泛的特性。选择器构建，高级视觉编辑器，实时预览，智能源码环境以及一个强大的X-Ray网页侦测器进行CSS调试。
3. Pixelmator

Pixelmator，Mac OS X上的一款设计漂亮，易于上手，快速且功能强大的图像编辑器，可以让你创建，编辑，增强你的图片效果。Pixelmator 是一款基于图层结构的图像编辑器，你可以从你的照片，其他图像，所选图形甚至是iSigh快速创建图形。 Pixelmator 可以直接从你的Mac上的小照相机添加层到你的作品上。通过Pixelmator强大，像素精确化收集的选择工具，你可以快速而轻松的选择你图像上的任一部位进行编辑及应用特殊效果来增强你的图片效果。
4. Coda

Panic Coda是一款伟大的一体化网页开发环境工具，在不同的标签上显示你经常使用的工具。这些工具包括：文本编辑器，CSS编辑器，文件传输，svn，终端和智能拼写检查。支持常见的语言，包括：CSS, HTML, Javascript, Java, Perl, PHP, Python, Ruby, SQL, XML, 以及纯文本。
5. Lineform

Lineform是一款理想的矢量艺术，图表以及插图工具。Lineform具有所有的最流行的工具，包括从手画多边形到合成特效等任何功能，可以让你不必实用多余的功能就能创建你想要的设计。
6. Fontcase

Fontcase是一款字体管理软件，提供了一个简洁而且功能强大的工具流程来帮助你管理安装在系统中的字体。类似iTunes的界面风格，Fontcase 具有一个强大的标记系统，用来让你像控制你的音乐一样来控制你的字体。
7. Deep- Image Search

Deep通过分析像素和计算最流行的颜色来计算你的图像中所使用的色彩范围。这就是Deep中的调色板的强大之处，你可以查找具有相同色彩的图像，特别是当你正在寻找最适合你网页的图像的时候尤其有用。事实上，你只要把任何图像拽到Deep中，它就会查找并排列你电脑中所有类似的图像。
8. Cyberduck

Cyberduck是为Mac设计的一款开源的FTP, SFTP, WebDAV, Mosso Cloud Files以及Amazon S3浏览器工具。它具有一个使用简单的，可以通过标签进行链接的界面。
9. Flow

Flow是另一款开始流行的文件传输软件。Flow可以将Mac上最好的传输到你的服务器文件和文件夹。简而言之，Flow可以让你像在本地工作一样进行远程工作。使用Flow，你可以直接在你的服务器上编辑文件，连接到FTP, SFTP, Amazon S3, WebDAV, 以及MobileMe iDisk服务器，无须用户接口和其他功能即可快速上传。
10. Sequel Pro

Sequel Pro是一款Mac OS X上的MySQL数据库管理软件。Sequel Pro可以让你在本地或远程直接进入你的MySQL数据库，支持各种流行格式包括SQL, CSV及 XML等的数据导入与导出。
11. Things

任务管理从来没有如此简单过。通过Responsibility中的Projects和Areas菜单管理你的 To-do项。特性包括：智能今日事件列表，可以自动收集所有你今天需要注意的事件；重复事件；任何条目均可轻松的通过日期进行存放；iPhone 同步及其他许多功能。
12. xscope

xScope是一款功能强大的套装工具，旨在测量，校准以及检测屏幕上的图形和布局。通过Mac OS X的菜单栏快速选择，xScope的灵活工具可以在桌面窗口以及UI元素上浮动，从而使测量工作轻而易举。
13. KeyCue

KeyCue让你实时预览任何应用程序的所有功能，并且可以让你通过使用菜单快捷方式更有有效的自动开始工作。
14. TextExpander

TextExpander通过对你经常使用的字符串、代码片段以及图像设置自定义的缩写来节省你无数的键盘敲击次数。
15. OnTheJob

On The Job拥有许多强大的功能但是最具声望的就是它是Mac OS X最简单的时间和花费跟踪解决方案。On The Job提供了灵活的发票创建功能。为特殊的时间范围，单一工作或生成多项工作创建发票。
其他你可能感兴趣的Mac应用程序
- TextMate
- Billings
- Littlesnapper
- MAMP
- Inkscape
- Picturesque
- Layers
[原文链接]
]]></description>
			<content:encoded><![CDATA[<h3 style="font-size: 1.17em;">1. <a href="http://macrabbit.com/espresso/">Espresso</a></h3>
<p><a href="http://macrabbit.com/espresso/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps1jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Espresso是由<a href="http://macrabbit.com/cssedit/">CSSEdit</a> 的开发人员开发的一款非常强大的网页工具。提供了强大的编辑，项目管理，实时预览，实时发布及同步功能。Espresso具有一个无比强大的基于规则的语法引擎CoreSyntax，它可以将你的文本文件转化成语义结构。Espresso还具有一个可扩展的，可以和<a href="http://macrabbit.com/cssedit/">CSSEdit</a>样式表单列表相媲美的导引。</p>
<p><span id="more-778"></span></p>
<p><strong style="font-weight: bold;">2. <a href="http://macrabbit.com/cssedit/">CSSEdit</a></strong></p>
<p><a href="http://macrabbit.com/cssedit/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps2jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>CSSEdit是专注于样式表单的一款工具，它提供了相当广泛的特性。选择器构建，高级视觉编辑器，实时预览，智能源码环境以及一个强大的X-Ray网页侦测器进行CSS调试。</p>
<h3 style="font-size: 1.17em;">3. <a href="http://www.pixelmator.com/">Pixelmator</a></h3>
<p><a href="http://www.pixelmator.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps3jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Pixelmator，Mac OS X上的一款设计漂亮，易于上手，快速且功能强大的图像编辑器，可以让你创建，编辑，增强你的图片效果。Pixelmator 是一款基于图层结构的图像编辑器，你可以从你的照片，其他图像，所选图形甚至是iSigh快速创建图形。 Pixelmator 可以直接从你的Mac上的小照相机添加层到你的作品上。通过Pixelmator强大，像素精确化收集的选择工具，你可以快速而轻松的选择你图像上的任一部位进行编辑及应用特殊效果来增强你的图片效果。</p>
<h3 style="font-size: 1.17em;">4. <a href="http://www.panic.com/coda/">Coda</a></h3>
<p><a href="http://www.panic.com/coda/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps4jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Panic Coda是一款伟大的一体化网页开发环境工具，在不同的标签上显示你经常使用的工具。这些工具包括：文本编辑器，CSS编辑器，文件传输，svn，终端和智能拼写检查。支持常见的语言，包括：CSS, HTML, Javascript, Java, Perl, PHP, Python, Ruby, SQL, XML, 以及纯文本。</p>
<h3 style="font-size: 1.17em;">5. <a href="http://www.freeverse.com/apps/app/?id=6020">Lineform</a></h3>
<p><a href="http://www.freeverse.com/apps/app/?id=6020"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps5jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Lineform是一款理想的矢量艺术，图表以及插图工具。Lineform具有所有的最流行的工具，包括从手画多边形到合成特效等任何功能，可以让你不必实用多余的功能就能创建你想要的设计。</p>
<h3 style="font-size: 1.17em;">6. <a href="http://www.bohemiancoding.com/?Fontcase">Fontcase</a></h3>
<p><a href="http://www.bohemiancoding.com/?Fontcase"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps6jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Fontcase是一款字体管理软件，提供了一个简洁而且功能强大的工具流程来帮助你管理安装在系统中的字体。类似iTunes的界面风格，Fontcase 具有一个强大的标记系统，用来让你像控制你的音乐一样来控制你的字体。</p>
<h3 style="font-size: 1.17em;">7. <a href="http://www.ironicsoftware.com/deep/index.html">Deep- Image Search</a></h3>
<p><a href="http://www.ironicsoftware.com/deep/index.html"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps7jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Deep通过分析像素和计算最流行的颜色来计算你的图像中所使用的色彩范围。这就是Deep中的调色板的强大之处，你可以查找具有相同色彩的图像，特别是当你正在寻找最适合你网页的图像的时候尤其有用。事实上，你只要把任何图像拽到Deep中，它就会查找并排列你电脑中所有类似的图像。</p>
<h3 style="font-size: 1.17em;">8. <a href="http://cyberduck.ch/">Cyberduck</a></h3>
<p><a href="http://cyberduck.ch/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps8jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Cyberduck是为Mac设计的一款开源的FTP, SFTP, WebDAV, Mosso Cloud Files以及Amazon S3浏览器工具。它具有一个使用简单的，可以通过标签进行链接的界面。</p>
<h3 style="font-size: 1.17em;">9. <a href="http://extendmac.com/flow/index.php">Flow</a></h3>
<p><a href="http://extendmac.com/flow/index.php"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps9jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Flow是另一款开始流行的文件传输软件。Flow可以将Mac上最好的传输到你的服务器文件和文件夹。简而言之，Flow可以让你像在本地工作一样进行远程工作。使用Flow，你可以直接在你的服务器上编辑文件，连接到FTP, SFTP, Amazon S3, WebDAV, 以及MobileMe iDisk服务器，无须用户接口和其他功能即可快速上传。</p>
<h3 style="font-size: 1.17em;">10. <a href="http://www.sequelpro.com/">Sequel Pro</a></h3>
<p><a href="http://www.sequelpro.com/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps10jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>Sequel Pro是一款Mac OS X上的MySQL数据库管理软件。Sequel Pro可以让你在本地或远程直接进入你的MySQL数据库，支持各种流行格式包括SQL, CSV及 XML等的数据导入与导出。</p>
<h3 style="font-size: 1.17em;">11. <a href="http://www.culturedcode.com/things/">Things</a></h3>
<p><a href="http://www.culturedcode.com/things/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps11jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>任务管理从来没有如此简单过。通过Responsibility中的Projects和Areas菜单管理你的 To-do项。特性包括：智能今日事件列表，可以自动收集所有你今天需要注意的事件；重复事件；任何条目均可轻松的通过日期进行存放；iPhone 同步及其他许多功能。</p>
<h3 style="font-size: 1.17em;">12. <a href="http://iconfactory.com/software/xscope">xscope</a></h3>
<p><a href="http://iconfactory.com/software/xscope"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps12jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>xScope是一款功能强大的套装工具，旨在测量，校准以及检测屏幕上的图形和布局。通过Mac OS X的菜单栏快速选择，xScope的灵活工具可以在桌面窗口以及UI元素上浮动，从而使测量工作轻而易举。</p>
<h3 style="font-size: 1.17em;">13. <a href="http://www.ergonis.com/products/keycue/">KeyCue</a></h3>
<p><a href="http://www.ergonis.com/products/keycue/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps13jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>KeyCue让你实时预览任何应用程序的所有功能，并且可以让你通过使用菜单快捷方式更有有效的自动开始工作。</p>
<h3 style="font-size: 1.17em;">14. <a href="http://www.smileonmymac.com/TextExpander/">TextExpander</a></h3>
<p><a href="http://www.smileonmymac.com/TextExpander/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps14jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>TextExpander通过对你经常使用的字符串、代码片段以及图像设置自定义的缩写来节省你无数的键盘敲击次数。</p>
<h3 style="font-size: 1.17em;">15. <a href="http://stuntsoftware.com/OnTheJob/">OnTheJob</a></h3>
<p><a href="http://stuntsoftware.com/OnTheJob/"><img style="border: 0px initial initial;" src="http://4ebstudio.com/wp-content/uploads/2009/02/mac-apps15jpg.jpeg" alt="Mac Apps For Web &amp; Graphic Designers" /></a></p>
<p>On The Job拥有许多强大的功能但是最具声望的就是它是Mac OS X最简单的时间和花费跟踪解决方案。On The Job提供了灵活的发票创建功能。为特殊的时间范围，单一工作或生成多项工作创建发票。</p>
<h3 style="font-size: 1.17em;">其他你可能感兴趣的Mac应用程序</h3>
<h5 style="font-size: 0.83em;">- <a href="http://macromates.com/">TextMate</a></h5>
<h5 style="font-size: 0.83em;">- <a href="http://www.billingsapp.com/index.html">Billings</a></h5>
<h5 style="font-size: 0.83em;">- <a href="http://www.realmacsoftware.com/littlesnapper/">Littlesnapper</a></h5>
<h5 style="font-size: 0.83em;">- <a href="http://www.mamp.info/en/mamp.html">MAMP</a></h5>
<h5 style="font-size: 0.83em;">- <a href="http://www.inkscape.org/">Inkscape</a></h5>
<h5 style="font-size: 0.83em;">- <a href="http://www.acqualia.com/picturesque/">Picturesque</a></h5>
<h5 style="font-size: 0.83em;">- <a href="http://layersapp.com/">Layers</a></h5>
<p>[<a href="http://www.noupe.com/tools/15-incredible-mac-apps-for-freelance-web-designers.html">原文链接</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/15-incredible-mac-apps-for-freelance-web-designers.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
