<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[蜗爱CSS - Ps/Web设计]]></title>
<link>http://www.woaicss.com/</link>
<description><![CDATA[css初学者 前端技术]]></description>
<language>zh-cn</language>
<copyright><![CDATA[Copyright 2005 PBlog3 v2.8]]></copyright>
<webMaster><![CDATA[wo-ai-niqq@163.com(蜗牛)]]></webMaster>
<generator>PBlog2 v2.4</generator> 
<image>
	<title>蜗爱CSS</title>
	<url>http://www.woaicss.com/images/logos.gif</url>
	<link>http://www.woaicss.com/</link>
	<description>蜗爱CSS</description>
</image>

			<item>
			<link>http://www.woaicss.com/article/photoshop/banner.htm</link>
			<title><![CDATA[banner设计]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Fri,16 Apr 2010 14:09:10 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=186</guid>
		<description><![CDATA[&nbsp;&nbsp;专题页面banner，贴出来接受拍砖。<br/><br/><img src="http://www.woaicss.com/attachments/month_1004/l2010416141836.jpg" border="0" alt=""/><br/><br/>[点击小图看大图]]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/css82.htm</link>
			<title><![CDATA[网页设计中字体设置详解]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Sat,30 Jan 2010 15:57:52 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=176</guid>
		<description><![CDATA[&nbsp;&nbsp;浏览器默认的样式往往在不同的浏览器、不同的语言版本甚至不同的系统版本都有不同的设置，这就导致如 果直接利用默认样式的页面在各个浏览器下显示非常不一致，于是就有了类似<a target="_blank" href="http://developer.yahoo.com/yui/3/cssreset/" rel="external">YUI的reset</a>之类用来尽量重写浏览器的默认设置保证各个浏览器样式一致性的做法。<br/><br/>拿字体来说，各个浏览器默认的字体种类、字体大小和字体行高都不一样，比如IE8的中文版在Windows XP下显示网页时默认字体是宋体，而英文版肯定不会如此。所以我们需要统一设置默认的字体样式，以便实现一致的显示效果来保证设计的一致性和提高开发效率。<br/><br/><span style="color:Teal"><strong><span style="font-size:15pt;line-height:100%;">样式优先级</span></strong></span><br/>通常用户看到的页面的样式会受到三层控制:<br/><br/>第一层是浏览器的默认样式 <br/>第二层是网页定义样式 <br/>第三层是用户自定义样式 <br/>和<a target="_blank" href="http://www.woaicss.com" rel="external">CSS</a>一样，后面的优先级 高于前面的，也就是说网页定义样式可以覆盖浏览器的默认样式，而用户自定义样式优先级最高。不过，当有 !important 时，网页样式可以覆盖用户自定义样式。用户!important &gt; 网页!important &gt; 用户 &gt; 网页 &gt; 浏览器默认。<br/><br/><strong><span style="color:Teal"><span style="font-size:15pt;line-height:100%;">字体：</span></span></strong><a target="_blank" href="http://www.designworkplan.com/typography-fonts/arial-is-everywh&#101;re.htm" rel="external">arial</a><br/>我们页面的绝大部分内容字符都是中文，毫无疑问目前为止在网页上最常用也是最通用的显示中文的字体是宋体，但是<a target="_blank" href="http://dancewithnet.com/lab/2009/web-font/" rel="external">宋体在显示英文、数字和英文符号时过于糟糕</a>，比如©字符，所以我们一般期望通过CSS来实现用更好的字体样式来显示它们，然后用宋体来显示中文和中文符号。之所以选择arial是因为：<br/><br/>1.Windows和Mac都预装了这款字体，应该是使用最广泛的网页字体了。它的潜在对手tahoma和helvetica<br/>就没有这么幸运了。 <br/><br/>2.视觉设计的专业人士可能会认为在Windows中使用tahoma、在Mac中使用helvetica更好，比如<a target="_blank" href="http://lifesinger.org/blog/2009/08/font-family-in-css/" rel="external">淘宝的默认字体样式</a>是font: 12px/1 Tahoma, Helvetica, Arial, &#34;\5b8b\4f53&#34;, sans-serif;这是一个很不错的选择，但是你也会发现Google、YAHOO、Youtube、Bing甚至MSN的新版都使用<br/>arial作为第一默认字体。所以从美观和可读性上来讲arial应该是完全可以接受的。 <br/><br/>3.一般情况下设置font-family都会在最后设置<a target="_blank" href="http://www.cnblogs.com/ruxpinsp1/archive/2008/04/29/font-in-front-end-development-1.html" rel="external">通用字体族</a>以保证其安全性，比如Google的设置为<br/>font-family:arial,sans-serif;<br/>，但是至少在非中文版的Win7下当编码是GBK时，IE8会因<br/>sans-serif<br/>来渲染宋体，导致字体出现变形，这就是为什么淘宝需要在<br/>sans-serif<br/>前加上宋体而Google无需这样做的原因。 <br/><br/>4.因为中文字体的选择非常有限，所以目前所有的主流浏览器都设置使用宋体来显示中文。Baidu的首页和搜索结果页使用<br/>font-family:arial;<br/>可以从侧面说明这样做的安全性。可能有人注意到Firefox中国版默认显示的中文字体是微软雅黑，这是因为谋智网络擅自修改了用户自定义样式，不允许网页的样式覆盖浏览器设置的样式。也是由于类似的情况，我们要弹性设计网页非常重要。 <br/><br/>使用英文字体作为第一默认字体会导致的问题之一就是<a target="_blank" href="http://dancewithnet.com/lab/2009/web-font/" rel="external">中英文以及符号混排时的对齐问题</a>、通过设置行高和hasLayout能解决绝大部分情况，但是都不会很完美，如果把字体改成“宋体”能彻底的解决问题。很明显，这个问题只出现在IE上。所以，如果你的网站很少使用英文、数字和英文符号，那么直接设置<br/>{font-family:\5b8b\4f53;}<br/>也是很合理的选择。<br/><br/><span style="color:Teal"><strong><span style="font-size:15pt;line-height:100%;">大小：12px</span></strong></span><br/><br/>1. 12px是宋体能显示的极限，虽然微<a target="_blank" href="http://www.docin.com/p-2647154.html" rel="external">软雅黑能显示更小的字体</a>，但目前的应用环境尚未成熟。由于宋体基本上是目前显示中文唯一的通用Web字体，所以12px成为最常用的字体大小。我们当然可以依据产品的需要来修改这个默认值。 <br/><br/>2.不用考虑基于字体大小（em）的设计。<br/> <br/>3.在Chrome3.0之后的中文版中，字体大小最小值是12px，比如你设置最小字体为10px，最后也变成12px。 <br/><br/><span style="color:Teal"><strong><span style="font-size:15pt;line-height:100%;">行高：1.5倍</span></strong></span><br/><br/>1.这是一个经验值，不同的产品对这个值要求可能不同，但我们一般会设置最常用的为默认值。比如YUI的font中是<br/>font:13px/1.231 arial,helvetica,clean,sans-serif;<br/>即字体大小默认值是13px，行高是13*1.231=16.003px，默认的行高是默认字体的1.231倍。对于中文来说，常用的字体大小12px、14px、16px、18px等偶数大小，在IE6和IE7设置其行高也为偶数能解决一些特殊情况下的字体对其问题。 <br/><br/>2.在IE6和IE7中，行高值必须大于字体的2px才能保证字体的完整显示或当其作为链接时能有效显示下划线。 <br/><br/>3.设置<br/>line-height<br/>时，注意不要使用单位（包括%在内），因为子节点会继承经过运算后的line-height值，所以当使用单位后浏览器会把<br/>line-height<br/>计算成第一次定义的绝对值，而不会随着字体大小的变化而变化，而无单位的数值表示是所在容器的<br/>font-size<br/>的倍数，所以设置为无单位的数值是最佳选择。 <br/><br/>4.<a target="_blank" href="http://www.woaicss.com/article/div/css62.htm" rel="external">深入CSS 行高</a>非常有利于理解<br/>line-height<br/>，值得一读。 <br/><br/><span style="color:Teal"><strong><span style="font-size:15pt;line-height:100%;">性能和效率</span></strong></span><br/><br/>1.大部分平台都有<br/>arial<br/>，减少浏览器的查找时间。 <br/><br/>2.代码最少，书写方便。<br/>arial<br/>基本上是名字最短的字体了，可以节约CSS的大小。 <br/><br/>3.所有的字母都小写，目前Google就是这样做的，好处是既可以编写更快也能提升Gzip压缩的效率。 <br/><br/>4.<a target="_blank" href="http://lifesinger.org/blog/2009/08/font-family-in-css/" rel="external">中文最好用unicode</a>表示，比如使用宋体是<br/>{font-family:\5b8b\4f53;}<br/>，使用微软雅黑是<br/>{font-family:\5fae\8f6f\96c5\9ed1;}<br/>，这样的好处是避免编码问题，同时能得到所有的主流浏览器的支持。 <br/><br/>5.<a target="_blank" href="http://www.cnblogs.com/ruxpinsp1/archive/2008/05/11/font-in-front-end-development-4.html" rel="external">使用正确的字体种类写法，避免使用引号</a>，这样可以缩小CSS的大小。中文字体可以按上一条方式来编写。 <br/><br/><span style="color:Teal"><strong><span style="font-size:15pt;line-height:100%;">未来</span></strong></span><br/><br/>1.通过对中英文及符号混排的测试， 我发现微软雅黑其实表现相当不错，包括英文数字和英文字符以及在IE6和IE7的显示效果上，但唯一的遗憾是在XP下如果安装了微软雅黑字体的用户没有打 开“使用屏幕字体的边缘平滑”选项的话，在firefox、Safari和Opera、特别是IE6下会非常模糊难以辨认。针对这个问题目前并没有很好的 解决方案，所以只有等到IE6使用比率非常小的时候才可能正式的使用它。或许需要到2014年，XP死掉的时候。 <br/><br/>2.虽然很早就有了@font-face，但是浏览器的支持、网速和商业问题，导致它很少被应用。最近关于字体的好消息是Firefox3.6将支持Web Open Font Forma。关于Web字体未来的相关信息可以看<a target="_blank" href="http://www.comsharp.com/GetKnowledge/zh-CN/CMS_K441.aspx" rel="external">Web 字体的未来</a>、<a target="_blank" href="http://www.comsharp.com/GetKnowledge/zh-CN/It_News_K830.aspx" rel="external">关于 Web 字体：现状与未来</a>和<a target="_blank" href="http://www.comsharp.com/GetKnowledge/zh-CN/It_News_K832.aspx" rel="external">再谈 Web 字体的现状与未来</a>。 <br/><br/>原文地址：<a target="_blank" href="http://dancewithnet.com/2009/11/22/default-web-font-style/" rel="external">默认Web字体样式 @ 随网之舞</a>]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/ps20.htm</link>
			<title><![CDATA[网页美化你用小图标吗？]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Mon,11 Jan 2010 14:20:26 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=168</guid>
		<description><![CDATA[&nbsp;&nbsp; <span style="font-size:14pt;line-height:100%;"> ©&lt;&gt;</span>这几个字符您一定不陌生吧，下面这几个呢？ <span style="font-size:14pt;line-height:100%;">›»«</span>如果您还知道那再看这几个呢？<span style="font-size:14pt;line-height:100%;">☎☠✎ ✓</span>下面来看看他们的在网页中的真面目吧 <br/><div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.woaicss.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> Example Source Code </div><div class="UBBContent"><br/>  &amp; nbsp;&amp; copy;&amp; lt;&lt;&amp; gt;&amp; rsaquo;&amp; raquo;&amp; laquo;&amp; #9742;&amp; #9760;&amp; #9998;&amp; #10003;依次为空格<span style="font-size:14pt;line-height:100%;">©&lt;&lt;&gt;›»«☎☠✎✓</span></div></div><br/><br/>&nbsp;&nbsp;看到这您是不是有点晕，不知道我在什么，下面贴几张图您就明白了。<br/> <div align="center"><img src="http://www.woaicss.com/attachments/month_1001/k2010111141729.gif" border="0" alt=""/></div><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_1001/x2010111141743.gif" border="0" alt=""/></div><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_1001/p2010111141756.jpg" border="0" alt=""/></div><br/><br/>您发现了没有，图中的文字中用到了许多修饰的小图标，是不是给界面的美观增色不少？是的，合理的运用这些小图标既可以使轻松指引读者还可以从细节上为网页整体增色，何乐而不为呢？那么是不是要去搜集一些类似的小图标呢？答案是不用。那些事只有美工才需要，我们一向比较懒，所以我们就…<br/><br/>今天的主角闪亮登场→HTML Symbol Entities。那么为什么要使用字符而不使用小图标呢好处有哪些呢？<br/><br/>1.它比图标加载速度快；<br/><br/>2.它的大小可以随字体的大小而变化；<br/><br/>3.它可以随意改变颜色。<br/><br/>下面用☎做个demo，<br/><br/>正常情况：<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.woaicss.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> Example Source Code </div><div class="UBBContent"><br/>以下为引用的内容：<br/><br/>&lt;p&gt;正常电话图标：☎&lt;/p&gt;<br/><br/>正常电话图标：☎<br/></div></div><br/><br/>改变字体大小：<br/><div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.woaicss.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> Example Source Code </div><div class="UBBContent"><br/>以下为引用的内容：<br/><br/>&lt;p style=&#34;font-size:26px;&#34;&gt;大号电话图标：☎&lt;/p&gt;<br/><br/><span style="font-size:24pt;line-height:100%;">大号电话图标：☎</span></div></div><br/><br/>改变颜色：<br/><div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.woaicss.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> Example Source Code </div><div class="UBBContent"><br/>以下为引用的内容：<br/><br/>&lt;p style=&#34;color:Red;font-size:26px;&#34;&gt;大号红色图标：☎&lt;/p&gt;<br/><br/><span style="color:Red"><span style="font-size:24pt;line-height:100%;">大号红色图标：☎</span></span></div></div><br/><br/>是不是很简单，用起来很爽呢？但是有人又会问：“这么多字符我怎么记得住每个对应的代码是什么？”如果您是观察仔细的人，可能会发现其实基本上每个字符都有对应的名字，而且都是英文的缩写如：©；就是copyright的缩写,←就是left arrow的缩写，是不是很好记呢？如果您还是懒的记，那就什么时候用，什么时候来这里（<a target="_blank" href="http://www.w3schools.com/tags/ref_symbols.asp" rel="external">w3schools</a>）或这里（<a target="_blank" href="http://www.bigbaer.com/reference/character_entity_reference.htm" rel="external">Character Entity Reference HTML 4</a>）看吧，很详细而且比较权威。<br/><br/>原文地址：<a href="http://www.cnblogs.com/gudao119/archive/2010/01/05/1639447.html" target="_blank" rel="external">http://www.cnblogs.com/gudao119/archive/2010/01/05/1639447.html</a><br/><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/158.htm</link>
			<title><![CDATA[20个精彩的圣诞节photoshop教程]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Thu,24 Dec 2009 10:25:16 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=158</guid>
		<description><![CDATA[&nbsp;&nbsp; <div align="center"><img src="http://www.woaicss.com/attachments/month_0912/d2009122495534.jpg" border="0" alt=""/></div><br/><br/>一组国外网站上以圣诞节为主题的photoshop教程，风格各异但都很漂亮。<br/><br/><strong><a target="_blank" href="http://www.grafpedia.com/tutorials/design-an-awesome-christmas-tree-in-photoshop" rel="external">用photoshop制作一个绚丽的圣诞树</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/o200912249599.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://blog.boxedart.com/tutorials/how-to-draw-the-header-from-the-christmas-greetings-templat/" rel="external">设计一个圣诞风格的网页模板</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/o2009122410017.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://forcg.com/tutorials/drawing/cr&#101;ate-a-beautiful-christmas-card/" rel="external">制作一个漂亮的圣诞节贺卡</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/92009122410111.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://alfoart.com/christmas_card_1.html" rel="external">制作一个漂亮而富有创意的圣诞节贺卡</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/n200912241037.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.tutorialdesk.com/?p=93" rel="external">制作一个现代感的圣诞壁纸</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/j2009122410429.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://10steps.sg/tutorials/photoshop/make-a-sketchy-wallpaper-for-this-christmas/" rel="external">圣诞节手绘壁纸</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/92009122410529.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.adobetutorialz.com/articles/30970180/1/Design-a-simple-illustration-for-Christmas" rel="external">圣诞树</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/h2009122410629.jpg" border="0" alt=""/></div><br/><br/><a target="_blank" href="http://www.adobetutorialz.com/articles/30970178/1/how-to-cr&#101;ate-a-christmas-card-in-photoshop" rel="external">photoshop制作圣诞贺卡</a><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/w2009122410726.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.adobetutorialz.com/articles/30970155/1/How-to-Cr&#101;ate-and-decorate-Christmas-tree-in-Photoshop" rel="external">如何创建和装饰一个圣诞树在photoshop中</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/s200912241093.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.ps-tutor.com/effects/creating-a-multinational-christmas-wallpaper" rel="external">制作一个多国的圣诞壁纸</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/g2009122410104.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.eyesontutorials.com/articles/5313/1/Christmas-Balls/Page1.html" rel="external">圣诞球教程</a>（不知道什么东东）</strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/a20091224101112.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.adobetutorialz.com/articles/30970109/1/design-christmas-card-with-tree-balls-in-photoshop" rel="external">用圣诞树球设计圣诞卡</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/r2009122410136.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.illustrateddesigns.com/articles/2919/1/We-wish-you-a-Merry-Christmas/Page1.html" rel="external">祝你圣诞快乐</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/b20091224101421.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.webdesign.org/photoshop/drawing-techniques/christmas-glass-balls-drawing-lesson-exclusive-tutorial.16790.html" rel="external">圣诞玻璃球制作</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/m20091224101655.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.webdesign.org/photoshop/drawing-techniques/drawing-unique-christmas-decorations-exclusive-tutorial.16764.html" rel="external">绘制独特的圣诞装饰品</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/e20091224101813.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.photoshoplady.com/forums/3d-tutorials/165-cr&#101;ate-christmas-card-awesome-snowman-night-scene.html#post569" rel="external">制作圣诞贺卡</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/p20091224102120.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.psdcore.com/tutorials/designing/christmas-star-decoration/" rel="external">圣诞星星绘制</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/a20091224102232.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.webdesign.org/photoshop/drawing-techniques/swirly-christmas-tree-exclusive-tutorial.16734.html" rel="external">Swirly圣诞树</a></strong> <br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/a20091224102325.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://www.psdcore.com/tutorials/designing/christmas-ball-decoration/" rel="external">绘制圣诞球</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/n20091224102413.jpg" border="0" alt=""/></div><br/><br/><strong><a target="_blank" href="http://psdfan.com/designing/christmas-wrapped-text-effect/" rel="external">圣诞礼品文字效果</a></strong><br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/o20091224102510.jpg" border="0" alt=""/></div><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/ps111.htm</link>
			<title><![CDATA[web设计和制作中虚线的实现]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Sat,05 Dec 2009 09:49:04 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=145</guid>
		<description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp;在设计和制作网页过程中，常常需要加入虚线分割线，像腾讯、搜狐、新浪首页都有灰色虚线的应用。但是虚线的实现，无论在设计中还是后面的制作中都不太容易。<br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp;<strong>（一）设计中实现虚线</strong><br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;总结以下photoshop画虚线的几种方法（只讨论直线）：<br/>&nbsp;&nbsp; <br/>&nbsp;&nbsp; （1）使用画笔—点击“画笔笔尖形状”，调整“间距”<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/m200912510132.jpg" border="0" alt=""/></div><br/>这种方法简便，制作出的虚线点分布均匀，通过描边路径可以画出任意形状的虚线。<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/j2009125101632.jpg" border="0" alt=""/></div><br/>&nbsp;&nbsp; （2）画一条直线，截取等宽距离（麻烦）<br/>&nbsp;&nbsp; （3）文字工具输入英文字符“....”调整文字间距。——我用这种方法，朋友说我变态，但是这种方法制作出来的效果我最满意。<br/>&nbsp;&nbsp; （4）定义画笔—描边路径，和第一种方法相似，但是控制虚线单元的长度。<br/>&nbsp;&nbsp; （5）直接从满意的网页上截取（汗..以前图省事经常这么干..），因为只是出效果，具体在后面的制作中，你绘制的虚线再完美可能也用不上。<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;<strong>（二）页面制作中虚线实现</strong><br/>&nbsp;&nbsp;效果图设计的完美固然重要，但是最终还是要精确还原设计稿，css中的dotted（点线）在IE6下显示和其它浏览器不同，而且点过于密集效果不是很理想。dashed（虚线），虽然浏览器表现相同，但是虚线单元宽，也不是我想要的效果。单独使用图片来完成虚线，又会产生多余标签，这点让人很纠结。看下面用css定义的虚线：<br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.woaicss.com/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp74124">
<!doctype html public &#34;-//w3c//dtd html 4.0 transitional//en&#34;>
<html>
 <head>
  <title> new document </title>
  <meta name=&#34;generator&#34; content=&#34;editplus&#34;>
  <meta name=&#34;author&#34; content=&#34;&#34;>
  <meta name=&#34;keywords&#34; content=&#34;&#34;>
  <meta name=&#34;description&#34; content=&#34;&#34;>
	<style type=&#34;text/css&#34;>
		<!--
		
		.box{margin:20px auto;width:250px;height:100px;border-top:1px dotted red;border-bottom:1px dashed green;}


		-->

	</style>
 </head>

 <body>
	<div class=&#34;box&#34;>

	</div>
 </body>
</html>
</TEXTAREA><br/><INPUT onclick="runEx('temp74124')"  type="button" class="userbutton" value="运行此代码"/> <INPUT onclick="doCopy('temp74124')"  type="button" class="userbutton" value="复制此代码"/> <INPUT onclick="saveCode('temp74124')" type="button" class="userbutton" value="保存此代码"><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/l200912511117.jpg" border="0" alt=""/></div><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0912/4200912511130.jpg" border="0" alt=""/></div><br/><br/>总结：设计效果图，画虚线用第一种方法。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;还原设计稿，点元素图片填充（腾讯用的此种方法，虽然不一定权威，但是个人觉得效果可以）<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;个人意见，仅供参考！<br/><br/><br/><span style="color:Red">本文原创，转载注明出处！<a href="http://www.woaicss.com/" target="_blank" rel="external">http://www.woaicss.com/</a></span><br/><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/ps10.htm</link>
			<title><![CDATA[2009年最佳photoshop教程]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Fri,20 Nov 2009 20:48:39 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=140</guid>
		<description><![CDATA[&nbsp;&nbsp;SMASHING上看到的一组photoshop教程，很好，很强大。三组：图片处理教程、文字效果处理、另外一组web设计教程，先记下教程地址。<br/> <br/><span style="font-family:黑体"><span style="color:Teal"><span style="font-size:16pt;line-height:100%;"><strong>图片处理</strong></span></span></span><br/><br/><span style="color:Teal"><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://www.tutorial9.net/photoshop/creative-photoshop-animal-king-photo-manipulation-tutorial/" rel="external">狮子王图片处理教程</a></span></span><br/><br/><div align="center"><a target="_blank" href="http://www.tutorial9.net/photoshop/creative-photoshop-animal-king-photo-manipulation-tutorial/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/420091120204259.jpg" border="0" alt=""/></a></div><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://psd.tutsplus.com/tutorials/tutorials-effects/how-to-mold-paint-splatter-to-a-face-in-photoshop/" rel="external">如何制作颜料溅到脸上效果</a></span><br/><br/><div align="center"><a target="_blank" href="http://psd.tutsplus.com/tutorials/tutorials-effects/how-to-mold-paint-splatter-to-a-face-in-photoshop/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/620091120205514.jpg" border="0" alt=""/></a></div><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/creating-a-spy-fly-photo-manipulation/" rel="external">制作间谍飞机照片</a></span><br/><br/><div align="center"><a target="_blank" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/creating-a-spy-fly-photo-manipulation/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/a20091120205838.jpg" border="0" alt=""/></a></div><br/><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-cr&#101;ate-a-fantasy-landscape-photo-manipulation/" rel="external">制作一个梦幻景观图片</a></span><br/><br/><br/><div align="center"><a target="_blank" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-cr&#101;ate-a-fantasy-landscape-photo-manipulation/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/y2009112021142.jpg" border="0" alt=""/></a></div><br/><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://psdfan.com/tutorials/photo-effects/photo-manipulate-a-falling-angel/" rel="external">堕落天使创意图片</a></span><br/><br/><div align="center"><a target="_blank" href="http://psdfan.com/tutorials/photo-effects/photo-manipulate-a-falling-angel/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/a2009112021525.jpg" border="0" alt=""/></a></div><br/><br/><br/><span style="font-family:黑体"><span style="color:Teal"><span style="font-size:16pt;line-height:100%;"><strong>文字效果</strong></span></span></span><br/><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://psd.tutsplus.com/tutorials/3d/how-to-cr&#101;ate-3d-text-blocks-in-photoshop/" rel="external">3D文字效果</a></span><br/><br/><br/><div align="center"><a target="_blank" href="http://psd.tutsplus.com/tutorials/3d/how-to-cr&#101;ate-3d-text-blocks-in-photoshop/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/l20091120211238.jpg" border="0" alt=""/></a></div><br/><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://abduzeedo.com/awesome-milk-typography-effect-photoshop" rel="external">牛奶飞溅效果文字</a></span><br/><br/><br/><div align="center"><a target="_blank" href="http://abduzeedo.com/awesome-milk-typography-effect-photoshop" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/g20091120211510.jpg" border="0" alt=""/></a></div><br/><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://psd.tutsplus.com/tutorials/text-effects-tutorials/cr&#101;ate-destructive-black-and-white-lettering-with-a-dramatic-splash-effect/" rel="external">水溅起文字效果</a></span><br/><br/><br/><div align="center"><a target="_blank" href="http://psd.tutsplus.com/tutorials/text-effects-tutorials/cr&#101;ate-destructive-black-and-white-lettering-with-a-dramatic-splash-effect/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/n2009112021197.jpg" border="0" alt=""/></a></div><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-cr&#101;ate-stunning-and-bold-3d-text/" rel="external">创建生动的3D文字</a></span><br/><br/><br/><div align="center"><a target="_blank" href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-cr&#101;ate-stunning-and-bold-3d-text/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/72009112021226.jpg" border="0" alt=""/></a></div><br/><br/><br/><span style="font-family:黑体"><span style="color:Teal"><span style="font-size:16pt;line-height:100%;"><strong>网页设计</strong></span></span></span><br/><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-cr&#101;ate-a-clean-web-20-style-web-design-in-photoshop/" rel="external">怎样用photoshop设计一个清新的web 2.0风格的网页</a></span><br/><br/><br/><div align="center"><a target="_blank" href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-cr&#101;ate-a-clean-web-20-style-web-design-in-photoshop/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/720091120212720.jpg" border="0" alt=""/></a></div><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://net.tutsplus.com/tutorials/html-css-techniques/design-a-beautiful-website-from-scratch/" rel="external">从头设计一个漂亮的网页</a></span><br/><br/><div align="center"><a target="_blank" href="http://net.tutsplus.com/tutorials/html-css-techniques/design-a-beautiful-website-from-scratch/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/w2009112021348.jpg" border="0" alt=""/></a></div><br/><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-cr&#101;ate-a-unique-colorful-site-layout/" rel="external">如何创建一个七彩网页布局</a></span><br/><br/><br/><div align="center"><a target="_blank" href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-cr&#101;ate-a-unique-colorful-site-layout/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/620091120213650.jpg" border="0" alt=""/></a></div><br/><br/><br/><span style="font-size:14pt;line-height:100%;"><a target="_blank" href="http://psd.tutsplus.com/tutorials/interface-tutorials/cr&#101;ate-a-magic-night-themed-web-design-from-scratch-in-photoshop/" rel="external">从头制作一个魔法之夜网页</a></span><br/><br/><div align="center"><a target="_blank" href="http://psd.tutsplus.com/tutorials/interface-tutorials/cr&#101;ate-a-magic-night-themed-web-design-from-scratch-in-photoshop/" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/y2009112021405.jpg" border="0" alt=""/></a></div><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/css48.htm</link>
			<title><![CDATA[12个精美的CSS网页模板下载]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Fri,06 Nov 2009 16:28:01 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=134</guid>
		<description><![CDATA[&nbsp;&nbsp; 几个很华丽的<a target="_blank" href="http://www.woaicss.com/" rel="external">css</a>网页模板，没有复杂的css技术，部分网页用到了jQuery。主要看设计的很漂亮，贴出来大家一起学习。<br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/13/3/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/52009116163457.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/13/3/index.html" rel="external">Deom</a><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/r2009116162743.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/2/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/42009116163729.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/2/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/52009116163943.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/1/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/6200911616415.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/1/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/q2009116164221.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/3/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/m2009116164347.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/3/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/22009116164455.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.comworks/css_Templates/5/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/b2009116164638.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/5/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/j2009116164759.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/6/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/l2009116164835.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/6/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/j200911616507.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/7/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/p2009116165047.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/7/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/y2009116165349.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/11/1/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/y2009116165550.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/11/1/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/t2009116165724.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/12/2/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/3200911616596.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/12/2/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/u200911617027.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/15/5/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/p200911617157.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/15/5/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/w200911617245.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/122/2/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/120091161741.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/122/2/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/v200911617454.zip" target="_blank">点击下载此文件</a><br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/css_Templates/134/1/index.html" rel="external"><img src="http://www.woaicss.com/attachments/month_0911/c200911617552.jpg" border="0" alt=""/></a></div><br/><br/><a target="_blank" href="http://www.woaicss.com/works/css_Templates/134/1/index.html" rel="external">Demo</a><br/><br/><img src="http://www.woaicss.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.woaicss.com/attachments/month_0911/r20091161779.zip" target="_blank">点击下载此文件</a><br/><br/>源文：<a href="http://chocotemplates.com/" target="_blank" rel="external">http://chocotemplates.com/</a>]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/ps188.htm</link>
			<title><![CDATA[ps制作Windows 7风格导航]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Mon,02 Nov 2009 22:18:52 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=131</guid>
		<description><![CDATA[&nbsp;&nbsp; 做了一个Windows 7风格的导航菜单。下面是简单的制作步骤。<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/c2009112232245.jpg" border="0" alt=""/></div><br/><br/><strong><span style="font-size:14pt;line-height:100%;">制作背景</span></strong><br/>（1）新建一文件，大小自定，这里是600*400为例。设置前景色：＃1592d7，背景颜色：＃136da2，<br/>选择径向渐变工具。从中间拖动得到下面效果：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/52009112222725.gif" border="0" alt=""/></div><br/><br/>（2）添加散射光条文。新建一层，左边工具栏选择-圆角矩形按钮-自定义形状按钮。找到下面这个形状，如果没有可以点击右边的小箭头，追加形状。<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/92009112223126.jpg" border="0" alt=""/></div><br/><br/>选中并在图层上拖动得到如下效果：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/02009112223546.gif" border="0" alt=""/></div><br/><br/>前景色设为白色（#ffffff），选择钢笔工具，右击路径--填充路径。得到下图：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/22009112224311.gif" border="0" alt=""/></div><br/><br/>右击路径--删除路径。选择“滤镜”-模糊-高斯模糊-5个像素。单击确定。图层混合模式改为“柔光”。不透明度为30%。<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/n2009112224641.gif" border="0" alt=""/></div><br/><br/>添加Windows 7字样及logo。<br/><br/><strong><span style="font-size:14pt;line-height:100%;">制作导航背景</span></strong><br/><br/>（1）新建一图层命名为“nav”。拖出一个黑色矩形框。高度根据自己需要。<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/p2009112225048.gif" border="0" alt=""/></div><br/><br/><br/>填充改为：10%。新建一图层，制作边线。画两根1px线，上边一根黑色，透明度50%，下面一根白色。<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/s200911222554.gif" border="0" alt=""/></div><br/><br/><br/>复制顶线，移动至底部：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/u2009112225621.jpg" border="0" alt=""/></div><br/><br/><strong><span style="font-size:14pt;line-height:100%;">制作导航按钮</span></strong><br/><br/>（1）新建图层，做出如下选区，注意上下边缘：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/l2009112225954.jpg" border="0" alt=""/></div><br/><br/>填充黑色，不透明设为“0”，描边：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/5200911223243.jpg" border="0" alt=""/></div><br/><br/>（2）复制上面的图层，清除图层样式，添加如下样式：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/y200911223624.gif" border="0" alt=""/></div><br/><br/>渐变叠加，颜色由白色 到透明。描边：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/t200911223833.gif" border="0" alt=""/></div><br/><br/>得到如下：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/z2009112231145.jpg" border="0" alt=""/></div><br/><br/>制作右下角高光边框：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/i200911223134.jpg" border="0" alt=""/></div><br/><br/>添加图层蒙版，前景黑色背景白色。拖动得到如下效果：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/6200911223161.jpg" border="0" alt=""/></div><br/><br/>最终：<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0911/a2009112231642.jpg" border="0" alt=""/></div><br/><br/><span style="color:Red">版权所有，转载注明出处!<br/></span><br/><br/>（需要源文件的留下邮箱）]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/ps7.htm</link>
			<title><![CDATA[photoshop制作草丛文字壁纸]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Wed,16 Sep 2009 15:19:11 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=107</guid>
		<description><![CDATA[&nbsp;&nbsp;给自己的小黑做张壁纸，要源文件的留言。（点击看大图）<br/><br/><div align="center"><a target="_blank" href="http://www.woaicss.com/works/ps壁纸/woniu.jpg" rel="external"><img src="http://www.woaicss.com/attachments/month_0909/w2009916151510.jpg" border="0" alt=""/></a></div>]]></description>
		</item>
		
			<item>
			<link>http://www.woaicss.com/article/photoshop/ps6.htm</link>
			<title><![CDATA[photoshop制作内嵌效果文字]]></title>
			<author>wo-ai-niqq@163.com(woniu)</author>
			<category><![CDATA[Ps/Web设计]]></category>
			<pubDate>Mon,14 Sep 2009 17:03:19 +0800</pubDate>
			<guid>http://www.woaicss.com/default.asp?id=106</guid>
		<description><![CDATA[&nbsp;&nbsp;前面写过<span style="color:red"><a target="_blank" href="http://www.woaicss.com/article/photoshop/photoshop1.htm" rel="external">《photoshop几种字体效果的制作》</a></span>，今天补充一个文字效果：内嵌文字效果。很简单。关键步骤只有一两步。先看下最终效果：<br/><br/> <div align="center"> <img src="http://www.woaicss.com/attachments/month_0909/g200991415591.jpg" border="0" alt=""/></div><br/><span style="color:Red"><strong>第一步</strong></span>：新建文件，大小随自己喜好。我这里是550*250。<br/><span style="color:Red"><strong>第二步</strong></span>：制作背景。复制背景图层，并添加渐变叠加，颜色：暗蓝（＃003471）<br/>在底部。淡蓝色的顶部（＃448CCB）。<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/1200991416433.jpg" border="0" alt=""/></div><br/><strong><span style="color:Red">第三步</span></strong>：制作高光区。新建一图层，并选择画笔工具，前景色为白色（#ffffff），模式为喷枪。参数如下：<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/f2009914164640.jpg" border="0" alt=""/></div><br/><br/>在图层的左上角单击：<br/><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/o2009914164836.png" border="0" alt=""/></div><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/j2009914164849.png" border="0" alt=""/></div><br/><br/><strong><span style="color:Red">第四步</span></strong>：输入黑色文字，字体这里用的是：<strong>Rockwell</strong>，大小合适即可。<br/>调整字体使其居中。<br/><strong><span style="color:Red">第五步</span></strong>：也是最关键的一步，添加文字样式。渐变叠加，颜色由（＃022854）到（＃0F498C），中点左移至30%：<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/s2009914165539.jpg" border="0" alt=""/></div><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/h2009914165238.jpg" border="0" alt=""/></div><br/>效果如下：<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/o200991416575.jpg" border="0" alt=""/></div><br/>添加内阴影效果（参数根据效果调节）：<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/b200991416589.jpg" border="0" alt=""/></div><br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/12009914165950.jpg" border="0" alt=""/></div><br/>最后添加投影效果：<br/>要注意的是，投影要和高光光源方向一致。模式改为正常，颜色改为明亮的蓝色：＃A8C9E6。<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/2200991417221.jpg" border="0" alt=""/></div><br/>最终完成：<br/><div align="center"><img src="http://www.woaicss.com/attachments/month_0909/a20099141735.jpg" border="0" alt=""/></div>]]></description>
		</item>
		
</channel>
</rss>
