<?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; Designs</title>
	<atom:link href="http://yottaworks.net/category/designs/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>#6 NightFall: Kanzaki Kaori</title>
		<link>http://yottaworks.net/kanzaki-kaori-nightfall-doujin-wallpaper/</link>
		<comments>http://yottaworks.net/kanzaki-kaori-nightfall-doujin-wallpaper/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 17:19:34 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[CG]]></category>
		<category><![CDATA[Majutsu no Index]]></category>

		<guid isPermaLink="false">http://yottaworks.net/?p=888</guid>
		<description><![CDATA[<img src="/wp-content/uploads/2009/02/chaos-blog-output-500.jpg" alt=""/>
This above is a doujin wallpaper of Kanzaki Kaori, a role of the TV amine, <em>Toaru Majutsu no Index</em>, which I finished just now.]]></description>
			<content:encoded><![CDATA[<p><a href="http://farm4.static.flickr.com/3393/3271523790_4d1caab7a4_o.jpg" class="thickbox screenshot imageLink"><img src="/wp-content/uploads/2009/02/chaos-blog-output-500.jpg" alt=""/></a></p>
<p>It has been a whole year, right, since my last painting. This above is a doujin wallpaper of Kanzaki Kaori, a role of the TV amine, <em>Toaru Majutsu no Index</em>.<br />
Hope you like it!</p>
<p>Kanzaki is an exciting girl, with mahou(magic) name &#8220;Salvare000&#8243; which means give a hand to those who will not be rescued. </p>
<p>To see higher resolution(1280&#215;800) of the wallpaper, just click on the <a href="http://farm4.static.flickr.com/3393/3271523790_4d1caab7a4_o.jpg" class="thickbox screenshot">image above</a>. Or just open in new tab(window).</p>
<p>IF the image can&#8217;t show up, <a href="/wp-content/uploads/2009/02/NightFall[Yottaworks.net].rar">CLICK HERE TO DOWNLOAD</a> this wallpaper.<br />
如果无法显示大图，<a href="/wp-content/uploads/2009/02/NightFall[Yottaworks.net].rar">点击这里</a>本地下载本壁纸。</p>
<p><strong>Here&#8217;s the progress:</strong><br />
<img class="aligncenter" src="/wp-content/uploads/2009/02/kanzaki-progress-by-step.jpg" alt=""/></p>
<ul>Details:</p>
<li>Tools: Wacom Intuos3</li>
<li>Software: Photoshop CS3 mainly, and some water wave in Painter</li>
<li>Duration: 50+ hours</li>
<li>Original Size: 3360 x 2100</li>
</ul>
<p>Finally, the color shows in my Samsung SyncMaster 206BW is much different from that in my laptop, making it an awfull problem because I can&#8217;t take my Samsung moniter which has a better color accuracy back home. And the size of my laptop LCD is too small to notice the detail of wallpaper, which, in the meantime, more or less, made me tired from working with it for long hours a day. </p>
<p>An ACE moniter is really needed!   </p>
<p>Comments &#038; Critics are welcome~~</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/kanzaki-kaori-nightfall-doujin-wallpaper/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>A New Sliding Archive Page(Bug fixed)</title>
		<link>http://yottaworks.net/a-new-sliding-archive-page-fixed/</link>
		<comments>http://yottaworks.net/a-new-sliding-archive-page-fixed/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 05:20:56 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://yottaworks.cn/?p=812</guid>
		<description><![CDATA[<img src="/wp-content/uploads/2008/08/archive-blogheader.png" alt="" />
I was woking on <a href="/archive/">this archive page</a> from yesterday, but unfortunately a serious headache suddenly hit me. And after a whole night of recovery, I finished it just now.

There are million styles of achive pages, but I just want a simple and integrated one. To merge indexes in one page, monthly archives should be associated with posts someway. So, sliding effect comes to me immediately.]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2008/08/archive-blogheader.png" alt="" /><br />
I think I&#8217;m addicted to jQuery library as well as its powerful plugins.</p>
<p>I was woking on <a href="/archive/">this archive page</a> from yesterday, but unfortunately a serious headache suddenly hit me. And after a whole night of recovery, I finished it just now.</p>
<p>There are million styles of achive pages, but I just want a simple and integrated one. To merge indexes in one page, monthly archives should be associated with posts someway. So, sliding effect comes to me immediately.</p>
<p>After giving up several schemes, the page finally firmed up like <a href="/archive/">this</a>.</p>
<p>&#8220;There seems to be nothing but everything&#8221; , that is always what I am working for.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
update &#8211; 23 Aug, 2008 : Fixed a javascript bug for IE series. </p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/a-new-sliding-archive-page-fixed/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>A Light-weight jQuery Image Showcase by Yottaworks™ Studio (Beta)</title>
		<link>http://yottaworks.net/a-lightweight-ajax-image-showcase-by-yottaworks-studio/</link>
		<comments>http://yottaworks.net/a-lightweight-ajax-image-showcase-by-yottaworks-studio/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 13:19:36 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://yottaworks.cn/?p=741</guid>
		<description><![CDATA[jQuery is so charming and powerful that I thought I fell in love with her immediately when I got closed to.

I spent two days or more learning jQuery reference documents and programming this image showcase what you will see at the Header of Yottaworks Studio.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jquery.com"><strong>jQuery</strong></a> is so charming and powerful that I thought I fell in love with her immediately when I got closed to.</p>
<p>I spent two days or more learning jQuery reference documents and programming this image showcase what you will see at the Header of Yottaworks Studio.</p>
<p>I say it&#8217;s light-weighted, because it totally weighs even less than <strong><del datetime="2008-08-20T02:44:19+00:00">3 KB</del></strong>(Version2 up to 6KB) uncompressed and attributed, expect for jQuery package (30KB), nearly 100KB lighter than those to be worked with <a href="http://script.aculo.us/">Script.aculo.us</a> or <a href="http://www.missingmethod.com/projects/glider/">MissingMethod</a>, but already features <em>automatically changing images together with their attributes, and sliding navigator of thumbnail images with fade-in and fade-out effects</em>.</p>
<p>I will consider whether I should release it after enhancing some functions, if possible, if time allows.</p>
<ul>Featured:</p>
<li>Save infomations of images and their thumbnails, such as links and discriptions in XML file</li>
<li>Asynchronous image loader</li>
<li>Sliding thumbnail navigator</li>
</ul>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
<strong>Stare at here！</strong><br />
All images that you see above were illustrated during my spare time of these two years. If you feel interested in it, just click the large image to get into or download wallpapers. </p>
<p>It will take one or two days for me to complete <a href="/welcome-to-the-coral-sea/">my new theme</a> and paint something within the last time of summer vacation.</p>
<p>It seems to be a loooooge time since my last illustration.</p>
<p>Just leave a screenshot as a keepsake before going away:<br />
[Version 1.0]<br />
<img src="/wp-content/uploads/2008/08/ajax-imageshowcase-scrsht.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/a-lightweight-ajax-image-showcase-by-yottaworks-studio/feed/</wfw:commentRss>
		<slash:comments>22</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>将Illustrator的路径导入复制到Photoshop中的方法</title>
		<link>http://yottaworks.net/article-245/</link>
		<comments>http://yottaworks.net/article-245/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 13:51:52 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/wp-content/uploads/2007/12/Ai-path-2-ps-banner.jpg" border="0" alt="" />
开门见山，将Adobe Illustrator（AI）中的路径导入复制到Photoshop（PS）中的方法：
在Adobe Illustrator CS3的默认设置下，不能将路径复制到Photoshop中，因此我们需要修改首选项设置。]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://yottaworks.cn/wp-content/uploads/2007/12/Ai-path-2-ps-banner.jpg" alt="" /><br />
开门见山，将Adobe Illustrator（Ai）中的路径导入复制到Photoshop（PS）中的方法：</p>
<p>Adobe Illustrator作为最强大的矢量图像处理软件之一，它在路径制作方面的能力当然比以像素处理为主的Photoshop要高出很多，而我们也经常需要将Ai中的路径转移到PS中进行合成。<br />
但是，在Adobe Illustrator CS3的默认设置下，不能将路径复制到Photoshop中，因此我们需要修改首选项设置。</p>
<p><strong>1. </strong>打开Illustrator，进入菜单“编辑”- “首选项”- “文件处理与剪贴板”，在设置窗口中，AICB的选项下，勾选“保留路径”。如图：<br />
<img src="/wp-content/uploads/2007/12/ai-path-preference.png" alt="" /></p>
<p><img src="/wp-content/uploads/2007/12/ai-copy2-ps-option.png" alt="" align="right" /></p>
<p><strong>2.</strong> 完成上面的设置后，同时打开AI与PS，<br />
在Illustrator中选择路径，复制，<br />
到Photoshop中粘贴，就会出现如下的提示窗口。<br />
选择粘贴为“路径”，确定。<br />
这样，Ai中的路径就复制到PS中了。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
突然需要将Ai中的路径复制到PS中，发现在国内的网站中根本没有相关的内容，虽然百度知道上有人问这个问题，但是最佳答案还是那种不负责任的回答。<br />
还好，在国外的<a href="http://www.photoshopsupport.com/" target="_blank">PhotoshopSupport</a>上找到了需要的答案，就日志一篇，作为今天的份。</p>
<p>PS：如需转载，请标明本站链接。</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/article-245/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>快考试了，只得放下未完的工作</title>
		<link>http://yottaworks.net/article-244/</link>
		<comments>http://yottaworks.net/article-244/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 15:39:26 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Design Process]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/wp-content/uploads/2007/12/1mega-skyl-in-progress.jpg" border="0" alt="" />
折腾了很久的东东，本来这个是准备用来纪念小站访问量超过１００万的图，也顺便尝试一下新的风格。结果一直太忙，许多意想不到的事情打乱了计划，一直拖到现在，访问量也早已超过这个数字了，图也还只是个雏形。]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2007/12/1mega-skyl-in-progress.jpg" border="0" alt="" /><br />
折腾了很久的东东，本来这个是准备用来纪念小站访问量超过１００万的图，也顺便尝试一下新的风格。结果一直太忙，许多意想不到的事情打乱了计划，一直拖到现在，访问量也早已超过这个数字了，图也还只是个雏形。<br />
刚刚开始画这个的时候，便看到<a href="http://vikiworks.com/2007/11/11/try-something-new/" rel="nofollow">Yichi</a>发表了他的新图，惊奇的发现自己想要尝试的也是这种风格。我在下面留言说到“最近也一直准备尝试下这种风格，只是忙碌到昏厥”，结果真的没有一口气画完。</p>
<p>网上也有很多矢量花边素材的下载，但总是觉得做工精良的花边并不多，最后还不如自己拿钢笔画。光上面图中的贴图，就花掉了不少时间。</p>
<p>考试也越来越近了，这个也只能放下了，还是放假之后再完成吧。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
PS：不经意间，发现宿舍的棒棒军团就剩下自已一个光杆司令了，原来和自己一样宅的小岳同志也凭着令人惊叹的能力，以偶的两张电影票为契机，光荣地退出了死死团。<br />
现在宿舍的4个哥们，一个短信不断，一个早出晚归，一个对着屏幕傻笑，还有一个……</p>
<p>……</p>
<p>不过这样挺好，我也没有精力，没有时间忙活这些了，还有好多事情等着自己去做，那些必须完成的计划。</p>
]]></content:encoded>
			<wfw:commentRss>http://yottaworks.net/article-244/feed/</wfw:commentRss>
		<slash:comments>17</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>
	</channel>
</rss>
