<?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>四眼天兔工作室</title>
	<atom:link href="http://www.4ebstudio.com/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>世纪金鼎购物中心销售折页</title>
		<link>http://www.4ebstudio.com/shijijinding.html</link>
		<comments>http://www.4ebstudio.com/shijijinding.html#comments</comments>
		<pubDate>Tue, 29 Jun 2010 04:32:54 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[典型案例]]></category>
		<category><![CDATA[天兔广告]]></category>
		<category><![CDATA[商业地产]]></category>
		<category><![CDATA[宣传册]]></category>
		<category><![CDATA[广告]]></category>
		<category><![CDATA[折页]]></category>

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



]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1469 aligncenter" title="baigou001" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/baigou001.jpg" alt="" width="560" height="420" /></p>
<p style="text-align: center;"><img class="size-full wp-image-1469 aligncenter" title="baigou001" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/baigou002.jpg" alt="" width="560" height="420" /></p>
<p style="text-align: center;"><img class="size-full wp-image-1469 aligncenter" title="baigou001" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/baigou003.jpg" alt="" width="560" height="420" /></p>
<p style="text-align: center;"><img class="size-full wp-image-1469 aligncenter" title="baigou001" src="http://www.4ebstudio.com/wp-content/uploads/2010/06/baigou004.jpg" alt="" width="560" height="420" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/shijijinding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS&#30340;&#36328;&#27983;&#35272;&#22120;&#20195;&#30721;&#20934;&#21017;</title>
		<link>http://www.4ebstudio.com/the-principles-of-cross-browser-css-coding.html</link>
		<comments>http://www.4ebstudio.com/the-principles-of-cross-browser-css-coding.html#comments</comments>
		<pubDate>Fri, 11 Jun 2010 02:36:02 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔贴士]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[跨栏浏览器]]></category>

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


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

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

盒模型遵循以下规则：

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Massive Grunge Texture Pack
来源：lostandtaken.com

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

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

Folds: Texture Pack
来源：designinstruct.com

Designer Texture Pack #1
来源：texturezine.com

Pack 04
来源：addictedsp8.deviantart.com

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

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

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

Grungy Cement: Texture Pack
来源：devisefunction.com

Texture set 12
来源：anamcr.deviantart.com

Lava Rock: Texture Pack
来源：designinstruct.com

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

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

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

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

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

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

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

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

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

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


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

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


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

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


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


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

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

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


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


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


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


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

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

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

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

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

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

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


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

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

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


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


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


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


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


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


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


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


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


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


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


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


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


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

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

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


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

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

		<guid isPermaLink="false">http://www.4ebstudio.com/?p=1390</guid>
		<description><![CDATA[
网址：http://www.guigedao.com/
网站程序：joomla
网站类型：桌游门户网站
主要特色：以joomla原有程序为内核的高级定制的内容管理程序，融入更符合国内网民习惯使用的UE元素，同时提供4EB Studio自行开发的4admin后台，使客户在日后的网站使用中更易上手。
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1377 aligncenter" title="guigedao" src="http://www.4ebstudio.com/wp-content/uploads/2010/05/guigedao.jpg" alt="" width="600" height="487" /></p>
<p>网址：<a href="http://www.guigedao.com/" target="_blank">http://www.guigedao.com/</a></p>
<p><a href="http://www.myfeicui.com/" target="_blank"></a>网站程序：joomla</p>
<p>网站类型：桌游门户网站</p>
<p>主要特色：以joomla原有程序为内核的高级定制的内容管理程序，融入更符合国内网民习惯使用的UE元素，同时提供4EB Studio自行开发的4admin后台，使客户在日后的网站使用中更易上手。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/guigedao.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>上上千翡翠网站</title>
		<link>http://www.4ebstudio.com/myfeicui.html</link>
		<comments>http://www.4ebstudio.com/myfeicui.html#comments</comments>
		<pubDate>Fri, 26 Mar 2010 03:52:27 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[典型案例]]></category>
		<category><![CDATA[天兔建站]]></category>

		<guid isPermaLink="false">http://www.4ebstudio.com/?p=1380</guid>
		<description><![CDATA[
网址：http://www.myfeicui.com/
网站程序：joomla
网站类型：产品形象展示网站
主要特色：通过灵活生动的产品展示程序帮助企业提高销售业绩。同时紧凑及合理的文章发布结构将新闻资讯有效的展示给网站读者。
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1377 aligncenter" title="myfeicui" src="http://www.4ebstudio.com/wp-content/uploads/2010/03/myfeicui.jpg" alt="" width="600" height="487" /></p>
<p>网址：<a href="http://www.myfeicui.com/" target="_blank">http://www.myfeicui.com/</a></p>
<p><a href="http://www.myfeicui.com/" target="_blank"></a>网站程序：joomla</p>
<p>网站类型：产品形象展示网站</p>
<p>主要特色：通过灵活生动的产品展示程序帮助企业提高销售业绩。同时紧凑及合理的文章发布结构将新闻资讯有效的展示给网站读者。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/myfeicui.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>瑞为汽车租赁</title>
		<link>http://www.4ebstudio.com/case-rightway.html</link>
		<comments>http://www.4ebstudio.com/case-rightway.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 09:14:07 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[典型案例]]></category>
		<category><![CDATA[天兔建站]]></category>

		<guid isPermaLink="false">http://www.4ebstudio.com/?p=1365</guid>
		<description><![CDATA[
网址：http://www.onrightway.com/
网站程序：joomla
网站类型：企业形象网站
主要特色：运用joomla的自带核心功能让内容并不繁杂的小型企业网站同样运行的游刃有余。
]]></description>
			<content:encoded><![CDATA[<p><img title="rightway" src="http://4ebstudio.com/wp-content/uploads/2010/03/rightway.png" alt="rightway" width="580" /></p>
<p>网址：<a href="http://www.onrightway.com/index.php?option=com_content&#038;view=frontpage&#038;Itemid=1" target="_blank">http://www.onrightway.com/</a><br />
网站程序：joomla<br />
网站类型：企业形象网站<br />
主要特色：运用joomla的自带核心功能让内容并不繁杂的小型企业网站同样运行的游刃有余。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/case-rightway.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>德国生活助手网站</title>
		<link>http://www.4ebstudio.com/case-cn-de.html</link>
		<comments>http://www.4ebstudio.com/case-cn-de.html#comments</comments>
		<pubDate>Fri, 05 Feb 2010 02:57:39 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[典型案例]]></category>
		<category><![CDATA[天兔建站]]></category>

		<guid isPermaLink="false">http://www.4ebstudio.com/?p=1357</guid>
		<description><![CDATA[
网址：http://www.cn-de.de/
网站程序：joomla
网站类型：生活资讯类门户网站
主要特色：专业门户网站。根据客户需求在运用原有核心扩展的基础上通过修改及定制工序以求达到整站各栏目间的通畅运行。
]]></description>
			<content:encoded><![CDATA[<p><img title="cn-de" src="http://4ebstudio.com/wp-content/uploads/2010/01/cn-de.png" alt="cn-de" width="580" /></p>
<p>网址：<a href="http://www.cn-de.de/" target="_blank">http://www.cn-de.de/</a></p>
<p>网站程序：joomla</p>
<p>网站类型：生活资讯类门户网站</p>
<p>主要特色：专业门户网站。根据客户需求在运用原有核心扩展的基础上通过修改及定制工序以求达到整站各栏目间的通畅运行。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/case-cn-de.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CG521三维动画爱好者社区网站</title>
		<link>http://www.4ebstudio.com/cg521-web-design.html</link>
		<comments>http://www.4ebstudio.com/cg521-web-design.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 14:47:39 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[天兔建站]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=883</guid>
		<description><![CDATA[
网址：http://www.cg521.com
网站程序：joomla
网站类型：设计类门户网站
主要特色：整合新闻发布，目录索引，个人图库，论坛，社区等几大核心功能搭建专业门户网站。根据客户需求在运用原有核心扩展的基础上通过修改及定制工序以求达到整站各栏目间的通畅运行。
]]></description>
			<content:encoded><![CDATA[<p><img title="cg521" src="http://4ebstudio.com/wp-content/uploads/2009/09/cg521.png" alt="cg521" width="580" /></p>
<p>网址：<a href="http://www.cg521.com" target="_blank">http://www.cg521.com</a><br />
网站程序：joomla<br />
网站类型：设计类门户网站<br />
主要特色：整合新闻发布，目录索引，个人图库，论坛，社区等几大核心功能搭建专业门户网站。根据客户需求在运用原有核心扩展的基础上通过修改及定制工序以求达到整站各栏目间的通畅运行。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/cg521-web-design.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>和拓（北京）商业管理有限公司网站</title>
		<link>http://www.4ebstudio.com/htcmc-web-design.html</link>
		<comments>http://www.4ebstudio.com/htcmc-web-design.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 07:52:19 +0000</pubDate>
		<dc:creator>4EB Studio</dc:creator>
				<category><![CDATA[典型案例]]></category>
		<category><![CDATA[天兔建站]]></category>

		<guid isPermaLink="false">http://4ebstudio.com/?p=24</guid>
		<description><![CDATA[
网址：http://www.htcmc.net
网站程序：joomla
网站类型：企业网站
主要功能：文章发布，案例展示，商业条目信息提交与罗列，资源下载
]]></description>
			<content:encoded><![CDATA[<p><img title="htcmc" src="http://4ebstudio.com/wp-content/uploads/2009/09/htcmc.png" alt="htcmc" width="580" /></p>
<p>网址：<a href="http://www.htcmc.net" target="_blank">http://www.htcmc.net</a><br />
网站程序：joomla<br />
网站类型：企业网站<br />
主要功能：文章发布，案例展示，商业条目信息提交与罗列，资源下载</p>
]]></content:encoded>
			<wfw:commentRss>http://www.4ebstudio.com/htcmc-web-design.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
