<?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>Yottaworks™ Studio &#187; Design</title>
	<atom:link href="http://yottaworks.net/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://yottaworks.net</link>
	<description>Ideas, illustrations, tutorials and footprints of Kael</description>
	<lastBuildDate>Sat, 20 Feb 2010 09:58:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Smart TextArea: scrollHeight in IE, Firefox, Opera and Safari</title>
		<link>http://yottaworks.net/smart-textarea-scrollheight-ie-firefox-opera-safari/</link>
		<comments>http://yottaworks.net/smart-textarea-scrollheight-ie-firefox-opera-safari/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 13:05:03 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://yottaworks.net/?p=1031</guid>
		<description><![CDATA[When we post comments on others' blogs or somewhere, there're often too many lines so that we should drag the scrollbar up and down to check our input, making it much inconvenient for us. 

So I wanna make a flexible textarea which can automatically adjust its own height with the content people input in, instead of showing a mechanical scrollbar. ]]></description>
			<content:encoded><![CDATA[<p>The scrollHeight is the distance between the top and bottom edges of the object&#8217;s content. But the height differs in various browsers.</p>
<p>For MSIE, the scrollHeight of a textarea is the real height of the content that you input just now including the paddings, while scrollHeight in Opera excludes the paddings.<br />
<img src="/wp-content/uploads/2009/07/scrollheight-ie-opera-tutorial.png" alt="" /></p>
<p>But in Firefox and especially in Safari, the scrollHeight turns out a bit weirdly. The scrollHeight of a textarea in firefox will be larger than or equal to the css height of the textarea, even if you have little input.<br />
<img src="/wp-content/uploads/2009/07/scrollheight-ff-safari-tutorial.png" alt="" /></p>
<h2 class="aboutTitle">Smart TextArea</h2>
<p>When we post comments on others&#8217; blogs or somewhere, there&#8217;re often too many lines so that we should drag the scrollbar up and down to check our input, making it much inconvenient for us.</p>
<p>So I wanna make a flexible textarea which can automatically adjust its own height with the content people input in, instead of showing a mechanical scrollbar.</p>
<p><strong>Concepts:</strong><br />
Set the height of the textarea equal to the scrollHeight.<br />
As the matter of Firefox and Safari, it doesn&#8217;t work when we want to reduce the height, so let&#8217;s have our idea fixed.</p>
<p>HTML:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1031code1'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p10311"><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code" id="p1031code1"><pre class="html" style="font-family:monospace;">&lt;form&gt;
	&lt;div&gt;
		&lt;textarea name=&quot;comment&quot; id=&quot;comment&quot; rows=&quot;6&quot; tabindex=&quot;4&quot; cols=&quot;7&quot;&gt;
		&lt;/textarea&gt;
	&lt;/div&gt;
&lt;/form&gt;</pre></td></tr></table></div>

<p>We put a div out of the textarea, why?</p>
<p>To get the real height of the content, we have to set the textarea with no-height, so that we can get the desired value of scrollHeight.</p>
<p><strong>jQuery way:</strong></p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left2">Download <a href="http://yottaworks.net/wp-content/plugins/wp-codebox/wp-codebox.php?p=1031&amp;download=flexible-textarea.js">flexible-textarea.js</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p10312"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
</pre></td><td class="code" id="p1031code2"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">keyup</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> setTextareaHeight<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">function</span> setTextareaHeight<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #000066; font-weight: bold;">this</span>._browser <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #006600; font-style: italic;">//get browser info.</span>
		<span style="color: #006600; font-style: italic;">//decide whether padding should be taken into account</span>
		<span style="color: #000066; font-weight: bold;">this</span>._browser <span style="color: #339933;">=</span> $.<span style="color: #660066;">browser</span>.<span style="color: #660066;">msie</span> <span style="color: #339933;">||</span> $.<span style="color: #660066;">browser</span>.<span style="color: #660066;">safari</span><span style="color: #339933;">;</span>
		<span style="color: #000066; font-weight: bold;">this</span>._padding <span style="color: #339933;">=</span> setPreview._browser <span style="color: #339933;">?</span>
			<span style="color: #009900;">&#40;</span> parseInt<span style="color: #009900;">&#40;</span> $<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'padding-top'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span>
			parseInt<span style="color: #009900;">&#40;</span> $<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'padding-bottom'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #003366; font-weight: bold;">var</span> comHeight <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #006600; font-style: italic;">//100 is the minimun height we want.</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span> comHeight <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">100</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #006600; font-style: italic;">//This is important!</span>
		<span style="color: #006600; font-style: italic;">//We fixed the height of the div,</span>
		<span style="color: #006600; font-style: italic;">//so that the page will not be twinkling</span>
		$<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'height'</span><span style="color: #339933;">,</span> $<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'px'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #006600; font-style: italic;">//set the height to zero to get the real content height</span>
		$<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #003366; font-weight: bold;">var</span> comScrollHeight <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">get</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollHeight</span> <span style="color: #339933;">-</span> <span style="color: #000066; font-weight: bold;">this</span>._padding<span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> comScrollHeight <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">100</span> <span style="color: #009900;">&#41;</span>
		$<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span>comScrollHeight<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066; font-weight: bold;">else</span> <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span> comHeight <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">100</span> <span style="color: #009900;">&#41;</span>
		$<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">100</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	$<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">'#comment'</span> <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'height'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'auto'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Just try to type in my textarea below. </p>
<p>If you have a better solution, <strong>you might as well share with us</strong>, which will be awfully appreciated!</p>
<ul>Tested with:
<li>Internet Explorer 6.0 &#8211; 8.0</li>
<li>Firefox 3.0 &#8211; 3.5</li>
<li>Safari 4.0</li>
<li>Opera 9.64</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/smart-textarea-scrollheight-ie-firefox-opera-safari/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Some Drawings About ʍɟbʞɔnɟ</title>
		<link>http://yottaworks.net/some-pictures-about-damngfw/</link>
		<comments>http://yottaworks.net/some-pictures-about-damngfw/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 01:02:59 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://yottaworks.net/?p=1018</guid>
		<description><![CDATA[<img class="alignleft" src="/wp-content/uploads/2009/06/fuckgfw-gmail-ver-thumbnail.png" alt=""/><br/>Some pictures about ʍɟbʞɔnɟ.

Click the title to get in, quietly...]]></description>
			<content:encoded><![CDATA[<p>Be calm, keep in low key. </p>
<p>Here‘s some drawings about ʍɟbʞɔnɟ. Made for fun, no offence. Take it easy.</p>
<p>ʍɟbʞɔnɟ (FoUoCoK GoFoW) &#8211; Twitter version:<br />
<img src="/wp-content/uploads/2009/06/fuckgfw-twitter-ver-500x.png" alt=""/></p>
<p>ʍɟbʞɔnɟ &#8211; Gmail version:<br />
<img src="/wp-content/uploads/2009/06/fuckgfw-gmail-ver-500x.png" alt=""/></p>
<p>So, you can take them away, for free.<br />
Thanks for <a href="http://www.awflasher.com/blog/archives/1778">Aw&#8217;s anti-heX tools</a>!</p>
<p>Nothing else…… (100000000000 words omitted)</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/some-pictures-about-damngfw/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Welcome to the Coral Sea!</title>
		<link>http://yottaworks.net/welcome-to-the-coral-sea/</link>
		<comments>http://yottaworks.net/welcome-to-the-coral-sea/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 14:40:30 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://yottaworks.cn/?p=693</guid>
		<description><![CDATA[<img src="/wp-content/uploads/2008/08/coralsea-blogheader.jpg" alt=""/>
Welcome to the Coral Sea!

Coralsea is My <strong>NEW WORK</strong> that I am recently working on, and also the name for my first brand-new wordpress theme I made for this summer or even loooonger. 

The heat of summer makes the most attractive and refreshing water of all four seasons of year, so I tried to work out this feeling on my web.]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2008/08/coralsea-blogheader.jpg" alt="" /><br />
Welcome to the Coral Sea!</p>
<p>Coralsea is My <strong>NEW WORK</strong> that I am recently working on, and also the name for my first brand-new wordpress theme I made for this summer or even loooonger. Summer is my favorite time of year as it always impresses us with bright colors, cool water, making it the most passionate season for me.</p>
<p>The heat of summer makes the most attractive and refreshing water of all four seasons of year, so I tried to work out this feeling on my web.</p>
<ul><strong>Features of Coralsea</strong></p>
<li>2 columns of fixed width</li>
<li>widget-ready — the sidebar is supporting widget(uncomplished)</li>
<li>what&#8217;s coming — this theme is still <del datetime="2008-08-13T13:43:18+00:00">under construction&#8230;UNDONE!</del></li>
</ul>
<ul><strong>Creative Features</strong></p>
<li>Interesting Rss button — my <strong>PET</strong> feature of this new work</li>
<li>CSS text shadow of post title</li>
<li>all text links — even the category navigations are text links which are more friendly to search engines</li>
</ul>
<p>Over night and night, I was turning upside and down without sleep, leaving uncountable wild ideas stirring my brain. There were all sorts of web layout surging like the tide water. I just could not keep myself from thinking about that.</p>
<p>I was inspired by many things, cool water in this hot summer, rolling globs of water on lotus leaves in the West Lake of Hangzhou, and diffusing paint, etc. I was also shocked by others&#8217; designs. And not for a few days of my travel, there were already several schemes for my new theme on the whole.</p>
<p>But when it comes to the details, it will be another thing. We often use references to work something out. Sometimes, the more we think about other people&#8217;s works, the bigger obstacles they are impressively in front of you.</p>
<p>&#8220;Open your heart and let it go.&#8221; Said Hayao Miyazaki before he started <em>Ponyo on the Cliff by the Sea</em> (崖の上のポニョ, Gake no Ue no Ponyo). </p>
<p>Actually, we need to do so. First, put off all the rules, so we can break the rules. </p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/welcome-to-the-coral-sea/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>#5 新作，尝试新的风格~ 嗯，很花！</title>
		<link>http://yottaworks.net/article-246/</link>
		<comments>http://yottaworks.net/article-246/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 22:54:20 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/wp-content/uploads/2007/12/1mega-kaelblog-vine-preview.jpg" alt="" />
抽空把这个完成了，纪念小站访问量超过100万的图。]]></description>
			<content:encoded><![CDATA[<p><a class="thickbox screenshot imageLink" href="http://farm4.static.flickr.com/3127/2743692597_0cb66bbfee_o.jpg" title="A Celebration for 1,000,000 Hits"><img src="/wp-content/uploads/2007/12/1mega-kaelblog-vine-preview.jpg" /></a><br />
<strong> 抽空</strong>把这个完成了，纪念小站访问量超过100万的图。实在手痒，没有<a href="/?p=244">等到放假以后再画</a>。<br />
从一开始就不容易，初次尝试3ds Max，建模实在可以说是大失败，过分地依赖了网络平滑，到最后仅仅添加了一个天光，CPU使用率100%的情况下都渲染了20分钟。结果光能传递，焦散等都没有使用。到最后虽然想到了好的建模方法，不过实在是懒得重新画了。</p>
<p>还是没有找到觉得满意的矢量素材，只好狠下心全部自己做，字母上的贴图花了不少时间。图中的蜂鸟参考了<a href="/?p=242">一个博客</a>的顶部图片，嘿嘿~</p>
<p>这张图，最后在Photoshop中几乎达到了笔记本硬件的极限，可怜的笔记本，内存占用量始终都保持在1.6G左右，使用滤镜或者保存的时候，CPU都是满负荷运转。</p>
<p>有意地尝试焦点的控制，让人的注意力集中在画面的中部。多少受到<a href="http://www.shinybinary.com" target="_blank">Nik Ainley</a>和<a href="http://www.ndesign-studio.com" target="_blank">Nick La</a>的影响。</p>
<p><img src="/wp-content/uploads/2007/12/1mega-progress-4step.jpg" border="0" alt="" /></p>
<p><a class="thickbox screenshot" href="http://farm4.static.flickr.com/3127/2743692597_0cb66bbfee_o.jpg" title="A Celebration for 1,000,000 Hits">点击这里查看大图，Click HERE to see the full version</a></p>
<p><strong>Software：</strong> 3ds Max 9，Illustrator CS3，Photoshop CS3</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
PS：就这样了，接下来可以安心复习备考鸟~</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/article-246/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>Smashing Magazine：15个精彩的博客设计</title>
		<link>http://yottaworks.net/article-242/</link>
		<comments>http://yottaworks.net/article-242/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 22:58:44 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/wp-content/uploads/2007/12/great-css-blog-banner.png" border="0" alt="" />
设计一个博客的界面并不是一件很难的事，不论你使用的是什么博客程序，也不需要很丰富的设计经验；但是，能够立即从视觉上吸引访客，独特的，具有平和的交互性的设计，却需要设计者拥有鲜活的思维，创造性的手法，以及对细节足够的关注。]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2007/12/great-css-blog-banner.png" border="0" alt="" /><br />
设计一个博客的界面并不是一件很难的事，不论你使用的是什么博客程序，也不需要很丰富的设计经验；但是，能够立即从视觉上吸引访客，独特的，具有平和的交互性的设计，却需要设计者拥有鲜活的思维，创造性的手法，以及对细节足够的关注。</p>
<p>这里，凯尔从<a href="http://www.smashingmagazine.com" target="_blank">Smashing Magazine</a>的推荐博客中挑选出了15个在配色，布局上都很优秀的例子，并加上了自己对它们的评价，供大家鉴赏。</p>
<p><strong><a href="http://www.adipintilie.eu/" target="_blank">Adrian Pintilie</a></strong> —— 色彩斑斓的顶部，却并不显得花哨<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/adipintilie.jpg" border="0" alt="" /></p>
<p><strong><a href="http://www.komodomedia.com" target="_blank">Komodo Media</a></strong> —— 来自美国Montana州的设计师的博客，透明的边缘，很出色的滑动门导航栏。他的博客上还有不少CSS以及JS方面的文章和教程。<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/komodomedia.jpg" border="0" alt="" /></p>
<p><strong><a href="http://www.binarymoon.co.uk" target="_blank">Ben Gillbanks</a></strong> —— 黄色与蓝色大胆的配比<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/binary.jpg" border="0" alt="" /></p>
<p><strong><a href="http://bubblessoc.net/" target="_blank">BublesSOC</a></strong> —— 如果说这个设计很女生，那Bubs的确把这个效果营造出来了，另外，她用CSS做出了不少活泼轻快的鼠标相应效果。<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/bubblessoc.jpg" border="0" alt="" /></p>
<p><strong><a href="http://www.cult-f.net/" target="_blank">Cult Foo</a></strong> —— 一看到这个博客，就想到<a href="http://73dpi.net" target="_blank">73dpi</a>上一个俄罗斯的购物网站的设计。很漂亮的顶部，另外值得学习的是它主体的配色。<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/cultfoo.jpg" border="0" alt="" /></p>
<p><strong><a href="http://wp-themes.designdisease.com" target="_blank">Design Disease</a></strong> —— 柔和与动感的对比，形成一定的视觉冲击力。<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/designdisease.jpg" border="0" alt="" /></p>
<p><strong><a href="http://freelanceswitch.com" target="_blank">Freelance Switch</a></strong>（Wordpress）—— 不错的配色，值得一提的是，平整的页面上立起的Subscribe按钮给人一种强烈的点击欲望。<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/freelanceswitch.jpg" border="0" alt="" /></p>
<p><strong><a href="http://www.pedrolamin.com.br" target="_blank">Pedro Lamin</a></strong>（Wordpress）—— 干净明亮的设计，甚至干净得快要什么都没有了，看来这是纯表现流的 -。-<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/lamin.jpg" border="0" alt="" /></p>
<p><strong><a href="http://www.larissameek.com" target="_blank">Larissa Meek</a></strong>（Wordpress）—— 不错的黑色风格<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/larissameek.jpg" border="0" alt="" /></p>
<p><a href="http://www.mein.meerblickzimmer.de/" target="_blank">Markus Zeeh</a>（Wordpress）—— 有趣的花色背景，栏目间的阴影形成很棒的层次感。你要说，背景的图案抢走了主题的热点了吧，也许这是设计师想要达到的效果吧。<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/meerblickzimmer.jpg" border="0" alt="" /></p>
<p><strong><a href="http://www.moddular.org/log/" target="_blank">Moddular</a></strong>（Wordpress）—— 大胆的配色，很强的视觉冲击力。感觉有些喧闹，但个性十足。<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/moddular.jpg" border="0" alt="" /></p>
<p><strong><a href="http://splitdadiz.com" target="_blank">Split da diz</a></strong> —— 有趣的设计，个性的栏目结构<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/splitdadiz.jpg" border="0" alt="" /></p>
<p><strong><a href="http://www.sr28.com" target="_blank">Simon Reynolds</a></strong>（Wordpress）—— 动感……超……人 -。-|||<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/sr28.jpg" border="0" alt="" /></p>
<p><strong><a href="http://vikiworks.com" target="_blank">Vikiworks</a></strong>（Wordpress）—— 大家很熟悉的来自北京的设计师，不多说了——刚才还在想要不要写上来的。<br />
<img src="/wp-content/uploads/2007/12/great-css-blog/vikiworks.jpg" border="0" alt="" /></p>
<p><strong><a href="http://webrevolutionary.com" target="_blank">Web Revolutionary</a></strong><br />
<img src="/wp-content/uploads/2007/12/great-css-blog/webrevo.jpg" border="0" alt="" /></p>
<p>由于小站的负载问题，这里也仅仅列出了１５个非黑白的，博客类的设计。什么，不够？可以去<a href="http://www.smashingmagazine.com" target="_blank">Smashing Magazine</a>上欣赏更多的内容，不过这个网站很慢的说。另外个人推荐<a href="http://www.73dpi.net" target="_blank">73dpi</a>，大家可以在这里找到不少灵感。</p>
<p>最后，其实在中国，在自己的小博客圈子里都有很多不错的设计，如杂志类的，<a href="http://dogorgod.com" target="_blank">Dogorgod</a>和<a href="http://www.niuhuifei.com" target="_blank">Niuhuifei</a>，还有个人门户类的<a href="http://parandroid.com" target="_blank">老帕</a>。<br />
个人认为中文网页相比英文网页来说，设计难度更大，因为中文字体对大小的限制比较大；能够在网页上具有良好表现力，并且广泛普及的字体也寥寥无几。</p>
<p>PS：刚给RSS按钮戴上了个圣诞帽子~</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/article-242/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>给小站画了个RSS订阅的图标</title>
		<link>http://yottaworks.net/article-228/</link>
		<comments>http://yottaworks.net/article-228/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 15:33:21 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Icon]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img class="alignleft" src="/wp-content/uploads/2007/10/rss-sign-sample-small.png" alt="" /><span style="color: red;">Update</span> 2007-12-07：推出圣诞版本，加上了一个可爱的圣诞毛绒帽~~
今天中午的刚做好的按钮，那是牺牲午休时间画好的啊~[困倦]

一直都觉得WP侧边栏上那个大大的RSS订阅图标很有趣，所以也自己画了一个~]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="/wp-content/uploads/2007/10/rss-sign-sample-small.png" alt="" /><span style="color: red;">Update</span> 2007-12-07：推出圣诞版本，加上了一个可爱的圣诞毛绒帽~~<br />
今天中午的刚做好的按钮，那是牺牲午休时间画好的啊~[困倦]</p>
<p>话说几个朋友都舍弃<a href="http://www.pjhome.net" target="_blank">PJBlog</a>投靠<a href="http://www.wordpress.org.cn/" target="_blank">WordPress</a>了，而今天认识的<a href="http://www.happinesz.cn/" target="_blank">sofish</a>和<a href="http://www.happyguo.cn" target="_blank">果子</a>两位博友，也是用WP的。</p>
<p>一直都觉得WP侧边栏上那个大大的RSS订阅图标很有趣。</p>
<p>既然要给侧边栏安置一个RSS订阅的图片，当然还是要和<a href="/?p=220" target="_blank">小站现在的风格</a>保持一致，所以只能自己画了。</p>
<p>其实要画也不难，用圆角矩形画好轮廓的路径，用剪贴蒙板加上阴影和高亮，注意边缘的细节；使用天蓝和亮绿为主的颜色，加上背景的阴影，最后旋转一下——不一会就大功告成了。[拉风]<br />
<img src="/wp-content/uploads/2007/10/rss-sign-sample-large.jpg" border="0" alt="" /><br />
不过有个问题让人很郁闷，现在我用的防盗链似乎太生猛了，让<a href="http://www.feedsky.com" target="_blank">Feedsky</a>也没有办法显示本站的图片。小站会尽快修改的。</p>
<p>本站曾经（第三版）其他RSS订阅系列按钮：<br />
圣诞版：<br />
<img class="alignnone" src="/wp-content/uploads/2007/10/rss-sign-Xmas-small.png" alt="" width="176" height="134" /></p>
<p>2008年汶川大地震祈福版：<br />
<img class="alignnone" src="/wp-content/uploads/2007/10/rss-sign-greenribbon.png" alt="" width="176" height="127" /></p>
<p>欢迎大家订阅哦~~[羞赧]</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/article-228/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Refresher，本站全新改版，全新主题皮肤上线！！</title>
		<link>http://yottaworks.net/article-220/</link>
		<comments>http://yottaworks.net/article-220/#comments</comments>
		<pubDate>Sun, 14 Oct 2007 15:48:52 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/wp-content/uploads/2007/10/refresher-article-banner.png" alt="Refresher™ - Kael style!" />

Refresher，正如它所表达的意思，希望能让这个新的皮肤给自己的生活带来新的色彩。

换一个主题，换一种心情。魔兽世界的年代早已过去，一切已经不再停留在过去令人不堪回首的几年。人必须放下过去，停止对现实的逃避，走进鲜活的人生中来，着手自己的学习、生活和事业。]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2007/10/refresher-article-banner.png" alt="Refresher™ - Kael style!" /></p>
<p>Refresher，正如它所表达的意思，希望能让这个新的皮肤给自己的生活带来新的色彩。</p>
<p>换一个主题，换一种心情。魔兽世界的年代早已过去，一切已经不再停留在过去令人不堪回首的几年。人必须放下过去，停止对现实的逃避，走进鲜活的人生中来，着手自己的学习、生活和事业。</p>
<p>好久之前就这样构想着，不停地在脑海中想象着这样明亮的感觉。其实在画<a href="/?p=219" target="_blank">第二张反叛的鲁路修壁纸</a>之前，所有的构思都已经完成——而画这张壁纸的目的，也就是为了如今大家看到的博客顶部的图片。</p>
<p>蓝天，白云，45° 地抬起头，呆呆地看个没完——那是我最喜欢做的事情之一。而如今的天空，万里无云的时候，也总是好像铺上了一层灰色的蒙板，给人些许的压抑——也许是城市污染的原因吧——大多时候，客观的原因更加的具有说服力。</p>
<p>但是，蓝天纯净清澈的印象仍然在脑海中不会散去，因此，它出现在我的壁纸中，出现在小博的顶端。相信这种清澈，这种明亮，会一直指引着自己，保持积极的心态和愉快的心情，去完成每一篇日志，去迈开奋斗的每一步。</p>
<p>同时，也希望给每一个到这里的朋友一个好的心情，希望大家能够喜欢！</p>
<p>趁着周末，花了一天加一下午，终于把这套新皮做好了，这又是用小岳同志的电脑当的服务器，谁让我电脑上的破Windows Home死也装不上IIS呢。</p>
<p>这次，更加注意了皮肤细节方面的处理，并且完美支持<strong>IE6、IE7、Firefox、Opera、Safari</strong>，并且又得到了不少CSS使用上的心得。<br />
选择了自己最喜欢的颜色，天蓝，亮绿（CC女王头发的颜色）……</p>
<p>在文件大小上，也只有130kb，只有原来那套<a href="/?p=118">魔兽世界主题皮肤</a>文件大小的一半不到~~</p>
<p>做了不少皮，但这张是迄今最满意的一张皮了，嘿嘿~~ 但是我更喜欢下一张~~ ：p</p>
<p>就这样啦，接下来——是休息时间~~~</p>
<p>PS：<a href="/?p=230">同时推出校内版本</a>。</p>
<p>PS2：皮肤详细情况：</p>
<p><strong>主题名称</strong>：Refresher</p>
<p><strong>兼容的浏览器</strong>：IE6，IE7，Firefox，Opera，Safari（其他浏览器未测试）</p>
<p><strong>分辨率</strong>：固定比例，要求最小分辨率1024&#215;768，兼容更大的分辨率</p>
<p><strong>皮肤大小</strong>：170KB，包括图标，CSS文档及顶部图片</p>
<p><strong><span style="color: #ff0000;">说明：</span></strong><br />
目前该皮肤仅作为私用，不放出下载。<br />
如果您使用本站皮肤素材，一般来说，本站不反对，但需在底部注明本站链接，谢谢合作。</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/article-220/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Logo设计，帮同学做的，第一次用Illustrator[未采用]</title>
		<link>http://yottaworks.net/article-223/</link>
		<comments>http://yottaworks.net/article-223/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 23:07:14 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Logo]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/wp-content/uploads/2007/09/07923-logo-zju-info-banner.png" border="0" alt="" />
给哥们做的logo设计，构思了一两天，然后第一次用Illustrator CS3做的矢量图。只是这个设计，受到出题的限制比较大，这里也不多描述了。]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2007/09/07923-logo-zju-info-banner.png" border="0" alt="" /><br />
给哥们做的logo设计，构思了一两天，然后第一次用Illustrator CS3做的矢量图。只是这个设计，受到出题的限制比较大，这里也不多描述了。</p>
<p>造型很简单，自己喜欢这样简单的感觉，另外个人也觉得简单的构图可以适合更多方面的应用。</p>
<p>另外附上这个Logo的一个典型应用，名片：<br />
<img src="/wp-content/uploads/2007/09/07923-logo-zju-information.png" border="0" alt="" /><br />
话说自己还比较喜欢这个名片的设计——当初灵感忽现，2，3分钟画好的。</p>
<p>就这样了，不知道能不能被使用。</p>
<p>PS：最后还是没有被采用，我还得继续修炼啊……[很受伤]</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/article-223/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>给JAY做的Logo和产品发布样式</title>
		<link>http://yottaworks.net/article-158/</link>
		<comments>http://yottaworks.net/article-158/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 22:59:05 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/wp-content/uploads/2007/03/jspace-product-sample.png" border="0" alt="" />
帮<a href="http://blog.gekimoe.cn" target="_blank">JAY</a>做的图，上面的是缩小的样图。原图较大，包括20-40个图层。]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2007/03/jspace-product-sample.png" border="0" alt="" /><br />
帮<a href="http://blog.gekimoe.cn" target="_blank">JAY</a>做的图，上面的是缩小的样图。原图较大，包括20-40个图层。</p>
<p>包括JSPace的Logo还有产品发布页面的宣传图样。顺便宣传下，如上面所说，JSPace是基于JSP和Ajax的论坛系统。JAY这家伙，从开始说要动手做，到论坛形成个雏形，就用了几天的时间——不愧于Coding JAY的名号啊~~[偷笑]</p>
<p>我还是第一次这样大量的使用矢量做图，算作一种尝试。其实现在有意练习钢笔工具，是想哪天画几幅动漫玩玩，用路径更好的表现飘逸的发丝，嘿嘿。</p>
<p>就这样了，不说了，JAY快点上线收图~~~[拉风]</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/article-158/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
