<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feed.qilei.org/styles/feedsky7.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feed.qilei.org" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feed.feedsky.com/qilei" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 05 Mar 2010 17:49:44 GMT</lastBuildDate><title>浆抱罗斯&amp;飞鱼’s blog</title><description>生活就像吃一盘螺丝, 你得努力吸才能品尝到^_^ -飞鱼-一个非专业前端设计师的窝。</description><image><url>http://www.feedsky.com/feed/qilei/sc/gif</url><title>浆抱罗斯&amp;飞鱼’s blog</title><link>http://www.qilei.org</link></image><link>http://www.qilei.org</link><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><language>en</language><pubDate>Fri, 05 Mar 2010 17:51:04 GMT</pubDate><item><title>隔山打牛 – jQuery中 trigger() &amp; bind() 使用心得 (二)</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339124332/5068053/1/item.html</link><content:encoded>&lt;p&gt;上一篇说的trigger()触发事件的解释，因为写着写着 发现有点长，所以就拆成2篇，多牛逼~~~ 咩哈哈·~~&lt;br /&gt;
这篇我介绍一下 trigger() &amp;#038; bind() 配合使用 的 &lt;strong&gt;隔山打牛&lt;/strong&gt;招式，&lt;em&gt;真的是隔山打牛，不是观音坐莲，表想歪。=，=&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;bind() 绑定事件 &lt;/h3&gt;
&lt;p&gt;if 你看过jquery里bind 绑定事件的解释，那基本不用看这篇文章了。 return false&lt;br /&gt;
else go on&lt;/p&gt;
&lt;p&gt;称为绑定事件，字面意思应该是 绑定在其他事件上的事件。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(function() {
	var div = $(&quot;#mybutton&quot;); //你的按钮。
	div.click(function(e,text) {
		var text = text || '你是猪啊，~让你点，你就点？';
		alert(text);
	});

        div.bind('click', function() {
            alert(&quot;兄弟，没事不要乱点; &quot;);
        });
});
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;上面的代码就是给div的click事件绑定了一个事件。&lt;em&gt;猜猜看哪个先执行？&lt;/em&gt;&lt;br /&gt;
当按钮被点击的时候，先执行完click事件后，再执行绑定的事件。&lt;/p&gt;
&lt;h3&gt;bind() 绑定 自定义事件 &lt;/h3&gt;
&lt;p&gt;说绑定自定义事件的时候先说一下 &lt;em&gt;什么是自定义事件？&lt;/em&gt;&lt;br /&gt;
trigger()方法是用来触发一些事件型方法，如：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;div.trigger('click', [text]);&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;上面的click 是不是一定要规定的 click，focus等事件型方法嘞？答案是可以触发任何事件。如：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;div.trigger('my_action', [text]);&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;你可以尝试一下，发现firebug 没有报错，说明没有问题，只是这个my_action 事件什么都没做而已。&lt;em&gt;为什么不报错，这个我还在研究，谁知道的告诉我 -，-&lt;/em&gt;&lt;br /&gt;
从这一点看trigger 方法一定是在找 my_action 事件。突然有个idea，既然bind 是绑定事件，既然 my_action 事件什么事情都没做，那我就给它bind 绑定个事件上去不就可以了。于是乎····竟然可以~~&lt;br /&gt;
&lt;span id=&quot;more-764&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(function() {
	var div = $(&quot;#mybutton&quot;); //你的按钮。
	div.bind('my_action', function(e, text) {
            var text = text || ' oh yah, 观 音 坐 莲';
            alert(text);
        });
	div.trigger('my_action');
}); &lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;隔山打牛 &lt;/h3&gt;
&lt;p&gt;那么何为隔山打牛呢？&lt;br /&gt;
听我慢慢银荡过来~~~&lt;br /&gt;
比如我们有两个盒子，希望点击按钮让  第二个盒子显示第一个盒子里的内容。&lt;br /&gt;
平常我们会这样写：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(function() {
	var div = $(&quot;#mybutton&quot;); //你的按钮。
	var box1= $(&quot;#mybox1&quot;);
	var box2= $(&quot;#mybox2&quot;);
	div.click(function() {
             var text = box2.val();
             box1.val(text);
        });
}); &lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;利用bind 和 trigger 我们可以这样写。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(function() {
	var div = $(&quot;#mybutton&quot;); //你的按钮。
	var box1= $(&quot;#mybox1&quot;);
	var box2= $(&quot;#mybox2&quot;);

	div.bind('my_action', function(e, text) {
             var text = box1.val();
             box2.val(text);
        });

	div.click(function() {
	    $(this).trigger('my_action');
        });

}); &lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;这样写的好处，在以后会慢慢体现，比如你想双击的时候也想 有这样的动作的时候 ：只需要在后面加：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;	div.dblclick(function() {
	    $(this).trigger('my_action');
        });&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;甚至你想在点击后想把第一个盒子消失，只需要在后面再加上&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;	div.bind('my_action', function(e, text) {
             box1.hide();
        });&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;这样的好处是，当click事件要处理的事情变多的时候，能将处理的事情进行分类，让代码更加有层次。而不是臃肿的click function。&lt;br /&gt;
更神奇的是这样写 bind 事件甚至可以分开存在不同的js 文件 在需要的时候调用，让它变成一个组件形式。&lt;br /&gt;
是不是有一种隔山打牛的感觉？&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/201003/using-trigger-bind-function-in-jquery/&quot; title=&quot;老汉推车 &amp;#8211; jQuery中 trigger() &amp;#038; bind() 使用心得 (一)&quot;&gt;老汉推车 &amp;#8211; jQuery中 trigger() &amp;#038; bind() 使用心得 (一)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200909/jquery-fade-picture/&quot; title=&quot;乱翻乱教 &amp;#8211; jQuery图片轮播插件 &amp;#8211; 菜鸟版&quot;&gt;乱翻乱教 &amp;#8211; jQuery图片轮播插件 &amp;#8211; 菜鸟版&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200907/jquery-menu-plugin/&quot; title=&quot;乱翻乱教- jQuery 制作N级导航菜单 &amp;#8211; 插件版&quot;&gt;乱翻乱教- jQuery 制作N级导航菜单 &amp;#8211; 插件版&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200907/jquery-navbar/&quot; title=&quot;乱翻乱教- jQuery 制作N级导航菜单&quot;&gt;乱翻乱教- jQuery 制作N级导航菜单&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200904/discuz-jquery-impact-question/&quot; title=&quot;[转]Discuz和jQuery冲突的解决方法&quot;&gt;[转]Discuz和jQuery冲突的解决方法&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339124332/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339124332/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339124332/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339124332/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201003/using-trigger-bind-function-in-jquery-2/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>上一篇说的trigger()触发事件的解释，因为写着写着 发现有点长，所以就拆成2篇，多牛逼~~~ 咩哈哈·~~
这篇我介绍一下 trigger() &amp;#038; bind() 配合使用 的 隔山打牛招式，真的是隔山打牛，不是观音坐莲，表想歪。=，=
bind() 绑定事件 
if 你看过jquery里bind 绑定事件的解释，那基本不用看这篇文章了。 return false
else go on
称为绑定事件，字面意思应该是 绑定在其他事件上的事件。
$(function() {
	var div = $(&quot;#mybutton&quot;); //你的按钮。
	div.click(function(e,text) {
		var text = text &amp;#124;&amp;#124; '你是猪啊，~让你点，你就点？';
		alert(text);
	});

        div.bind('click', function() {
            alert(&quot;兄弟，没事不要乱点; &quot;);
    [...]&lt;img src=&quot;http://www1.feedsky.com/t1/339124332/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339124332/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339124332/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339124332/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>bind</category><category>jquery</category><category>代码浅谈</category><pubDate>Sat, 06 Mar 2010 01:49:44 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201003/using-trigger-bind-function-in-jquery-2/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=764</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201003/using-trigger-bind-function-in-jquery-2/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339124332/5068053</fs:itemid></item><item><title>老汉推车 – jQuery中 trigger() &amp; bind() 使用心得 (一)</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066725/5068053/1/item.html</link><content:encoded>&lt;p&gt;     年前一个项目做下来，全程js 交互写了我半辈子的js代码，重构了N便~~ 不过做项目这东西很锻炼人，强迫你去接触一些没有接触过的东西，收获还是蛮大的。其中收获最大的还是对jQuery 的全新认识了，之前接触jquery一直都是表现类的，如show，hide，hover，等方法，这次项目，接触了许多事件类代码。&lt;/p&gt;
&lt;h3&gt;trigger() 触发事件 &lt;/h3&gt;
&lt;p&gt;    这个方法是jQuery 1.3中新增的一个引起触发事件的函数。具体解释可以去&lt;a target=&quot;_blank&quot; href=&quot;http://code.google.com/p/jquery-api-zh-cn/downloads/list&quot;&gt;这里下载&lt;/a&gt; 最新的jquery 手册查一下，里面解释的很清楚，就是字有点多。&lt;br /&gt;
    &lt;em&gt;如果你比较懒那么我稍微解释一下这个东东。我也是挂羊头卖狗肉 =，=&lt;/em&gt;&lt;br /&gt;
触发事件就是 类似于点击click, mouseover, keydown 等有动作的js事件，简单的说就是一个动作，可能有人会问，那show, hide 是不是? 不是，show 这 效果，&lt;em&gt;手册里刚打开的速查页面里的事件类目就是上面所说的触发事件&lt;/em&gt;&lt;br /&gt;
    说了这么多，还没切到主题，=，=我就这样 ，容易跑题，大伙看习惯了就好。&lt;/p&gt;
&lt;h3&gt;为什么要用 trigger() ？&lt;/h3&gt;
&lt;p&gt;    比如：你给一个按钮添加了一个click点击事件，弹出提示框，代码如下。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;var div = $(&quot;#mybutton&quot;); //你的按钮。
div.click(function() {
    alert('你是猪啊，~让你点，你就点？');
});
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;上面的代码就是一个按钮的click事件。这个时候你有个非分的要求，就是希望页面刷新的时候就点一下这个按钮。如果不用trigger()你可以在后面这样写：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;div.click();&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;如果用trigger()，你就要写成这样：效果跟上面这句是一样，就是稍微长点。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;div.trigger(&quot;click&quot;);&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后有人说：你是猪啊·~~ 上面这个短一点，你还教我用下面这个 =，=&lt;br /&gt;
表急着揍我么~· 继续往下看。&lt;br /&gt;
&lt;span id=&quot;more-760&quot;&gt;&lt;/span&gt;&lt;br /&gt;
你用手册 里的索引搜一下click 可以看到 两条 结果 &lt;strong&gt;click()&lt;/strong&gt; 和，&lt;strong&gt;click(fn)&lt;/strong&gt;，然后 搜一下trigger 发现只有一个 trigger(type, [data]) 。&lt;br /&gt;
然后你知道我的意思了吧。&amp;#8212; trigger 可以传参数进去。&lt;br /&gt;
我们看看 手册里的trigger 例子：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(&quot;p&quot;).click( function (event, a, b) {
  // 一个普通的点击事件时，a和b是undefined类型
  // 如果用下面的语句触发，那么a指向&quot;foo&quot;,而b指向&quot;bar&quot;
} ).trigger(&quot;click&quot;, [&quot;foo&quot;, &quot;bar&quot;]);&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;了解了吧？如果用click 的话，它不吃参数，用trigger的话，就能吃了。&lt;br /&gt;
练习一下吧：黏贴到你的页面上试试看，记得把jquery载进来。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(function() {
	var div = $(&quot;#mybutton&quot;); //你的按钮。
	div.click(function(e,text) {
		var text = text || '你是猪啊，~让你点，你就点？';
		alert(text);
	});
	div.trigger(&quot;click&quot;,&quot;您好，请点击按钮&quot;);
});
&lt;/code&gt;&lt;/pre&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/201003/using-trigger-bind-function-in-jquery-2/&quot; title=&quot;隔山打牛 &amp;#8211; jQuery中 trigger() &amp;#038; bind() 使用心得 (二)&quot;&gt;隔山打牛 &amp;#8211; jQuery中 trigger() &amp;#038; bind() 使用心得 (二)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200909/jquery-fade-picture/&quot; title=&quot;乱翻乱教 &amp;#8211; jQuery图片轮播插件 &amp;#8211; 菜鸟版&quot;&gt;乱翻乱教 &amp;#8211; jQuery图片轮播插件 &amp;#8211; 菜鸟版&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200907/jquery-menu-plugin/&quot; title=&quot;乱翻乱教- jQuery 制作N级导航菜单 &amp;#8211; 插件版&quot;&gt;乱翻乱教- jQuery 制作N级导航菜单 &amp;#8211; 插件版&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200907/jquery-navbar/&quot; title=&quot;乱翻乱教- jQuery 制作N级导航菜单&quot;&gt;乱翻乱教- jQuery 制作N级导航菜单&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200904/discuz-jquery-impact-question/&quot; title=&quot;[转]Discuz和jQuery冲突的解决方法&quot;&gt;[转]Discuz和jQuery冲突的解决方法&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066725/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066725/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066725/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066725/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201003/using-trigger-bind-function-in-jquery/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>年前一个项目做下来，全程js 交互写了我半辈子的js代码，重构了N便~~ 不过做项目这东西很锻炼人，强迫你去接触一些没有接触过的东西，收获还是蛮大的。其中收获最大的还是对jQuery 的全新认识了，之前接触jquery一直都是表现类的，如show，hide，hover，等方法，这次项目，接触了许多事件类代码。
trigger() 触发事件 
    这个方法是jQuery 1.3中新增的一个引起触发事件的函数。具体解释可以去这里下载 最新的jquery 手册查一下，里面解释的很清楚，就是字有点多。
    如果你比较懒那么我稍微解释一下这个东东。我也是挂羊头卖狗肉 =，=
触发事件就是 类似于点击click, mouseover, keydown 等有动作的js事件，简单的说就是一个动作，可能有人会问，那show, hide 是不是? 不是，show 这 效果，手册里刚打开的速查页面里的事件类目就是上面所说的触发事件
    说了这么多，还没切到主题，=，=我就这样 ，容易跑题，大伙看习惯了就好。
为什么要用 trigger() ？
    比如：你给一个按钮添加了一个click点击事件，弹出提示框，代码如下。
var div = $(&quot;#mybutton&quot;); //你的按钮。
div.click(function() {
    alert('你是猪啊，~让你点，你就点？');
});

上面的代码就是一个按钮的click事件。这个时候你有个非分的要求，就是希望页面刷新的时候就点一下这个按钮。如果不用trigger()你可以在后面这样写：
div.click();
如果用trigger()，你就要写成这样：效果跟上面这句是一样，就是稍微长点。
div.trigger(&quot;click&quot;);
然后有人说：你是猪啊·~~ 上面这个短一点，你还教我用下面这个 =，=
表急着揍我么~· 继续往下看。

你用手册 [...]&lt;img src=&quot;http://www1.feedsky.com/t1/339066725/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066725/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066725/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066725/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>trigger</category><category>jquery</category><category>代码浅谈</category><pubDate>Sat, 06 Mar 2010 00:03:07 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201003/using-trigger-bind-function-in-jquery/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=760</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201003/using-trigger-bind-function-in-jquery/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066725/5068053</fs:itemid></item><item><title>乱翻乱教 – 小鸡快跑 –  Photoshop 超级可爱小鸡</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066726/5068053/1/item.html</link><content:encoded>&lt;p&gt;&lt;img class=&quot;janblus-preview&quot; title=&quot;chick-sml&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/03/chick-sml.png&quot; alt=&quot;&quot; width=&quot;100&quot; height=&quot;100&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Photoshop 超级可爱小鸡&lt;/h2&gt;
&lt;p&gt;作者：&lt;a title=&quot;check to see Vaclav’s site&quot; rel=&quot;no-follow&quot; href=&quot;http://www.upir.org/&quot; target=&quot;_blank&quot;&gt;Vaclav &lt;/a&gt; &lt;em&gt;此人的blog 很帅气··· 膜拜ing&lt;/em&gt;&lt;br /&gt;
制作工具：Adobe Photoshop cs3&lt;br /&gt;
原文地址：&lt;a title=&quot;Super Cute Easter Wallpaper Illustration Tutorial&quot; href=&quot;http://psd.tutsplus.com/tutorials/drawing/super-cute-easter-wallpaper-illustration-tutorial/&quot; target=&quot;_blank&quot;&gt;猛击此链接&lt;/a&gt; (英文强悍的可以参考原文)&lt;br /&gt;
发现工作后就没有好好的干过自己爱干的事情(&lt;em&gt;不想说做爱做的事&lt;/em&gt;)，reader上的tutorial 堆积如山，不过有人说的好，时间挤挤还是有的。&lt;br /&gt;
想到不知不觉订阅快200了，还是多写写吧，就当自己前进的动力，最近还是有挺多东西要写的，听飞鱼娓娓道来 ^___^&lt;/p&gt;
&lt;p&gt;今天更新的东西是tutorial 上一个小鸡的制作，总体比较简单，有点小技巧，简单不简单。相信对初学者会有很大的帮助，像我这样的菜鸟也就做做小教程吧，谁让我爱分享，咩哈哈哈·~&lt;/p&gt;
&lt;h3&gt;最终效果&lt;/h3&gt;
&lt;p&gt;&lt;img class=&quot;alignnone size-full wp-image-737&quot; title=&quot;chick-preview&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/03/chick-preview.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;350&quot; /&gt;&lt;br /&gt;
&lt;span id=&quot;more-729&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;步骤1&lt;/h3&gt;
&lt;p&gt;新建一个文档，多大无所谓，够大就行，我用的是500×400，用形状工具画两个圈(按住shift 可以在同一个图层画两个圆)。用钢笔工具按住ctrl点击下图中的节点适当修一下形状。&lt;em&gt;这个应该很简单吧，不用我教，什么？ 钢笔怎么修不会？ =，= 往下看&lt;/em&gt;&lt;br /&gt;
效果如下：&lt;br /&gt;
&lt;img class=&quot;alignnone size-full wp-image-734&quot; title=&quot;chick-001&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/03/chick-001.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;350&quot; /&gt;&lt;br /&gt;
钢笔工具(P) 在使用的时候 可以配合ctrl，shift，alt  可以完成很多好玩的东东，你可以自己试试看，自己总结。 &lt;img title=&quot;chick-002&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/03/chick-002.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;350&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;步骤2&lt;/h3&gt;
&lt;p&gt;接下来用选择工具(A)选中头部的圈，按住shift 选中另外一个圈，(或者直接在界面拖动选中两个也可以)，点击上面 “组合” 就可以把两个圈圈合并，&lt;em&gt;当然是不能分开的，所以要细心&lt;/em&gt; 接下来要使用钢笔工具将接口部分变得平滑。&lt;br /&gt;
如下图，钢笔工具在线上的3钟状态如下图中右侧的样子， 分别是添加节点，删除节点，和重置平滑 (&lt;em&gt;重置平滑，是按住alt在线上出现的，单击就是不平滑(角)，可以拖动重新拉平滑度，这个东西在调整曲线的时候非常有用。&lt;/em&gt;)&lt;br /&gt;
&lt;img class=&quot;alignnone size-full wp-image-736&quot; title=&quot;chick-003&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/03/chick-003.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;350&quot; /&gt;&lt;br /&gt;
调整后的效果如下：&lt;br /&gt;
&lt;img class=&quot;alignnone size-full wp-image-739&quot; title=&quot;chick-004&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/03/chick-004.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;350&quot; /&gt;&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200906/making-a-planet-by-photoshop/&quot; title=&quot;乱翻乱教-编号004-用photoshop制作绚丽的星球&quot;&gt;乱翻乱教-编号004-用photoshop制作绚丽的星球&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200903/web-design-training-class-two/&quot; title=&quot;设计部培训第二课&quot;&gt;设计部培训第二课&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200902/photoshop-clip-mask-tip/&quot; title=&quot;乱翻乱教-Photoshop-剪贴蒙版妙用&quot;&gt;乱翻乱教-Photoshop-剪贴蒙版妙用&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200901/smoke-type-photoshop-10-steps/&quot; title=&quot;乱翻乱教-编号003-Photoshop 制作 字体冒烟效果&quot;&gt;乱翻乱教-编号003-Photoshop 制作 字体冒烟效果&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200812/design-of-club-redhome/&quot; title=&quot;出水芙蓉的绿色 oh~ 美女?&quot;&gt;出水芙蓉的绿色 oh~ 美女?&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066726/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066726/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066726/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066726/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201003/photoshop-made-an-cute-chick/feed/</wfw:commentRss><slash:comments>2</slash:comments><description>Photoshop 超级可爱小鸡
作者：Vaclav  此人的blog 很帅气··· 膜拜ing
制作工具：Adobe Photoshop cs3
原文地址：猛击此链接 (英文强悍的可以参考原文)
发现工作后就没有好好的干过自己爱干的事情(不想说做爱做的事)，reader上的tutorial 堆积如山，不过有人说的好，时间挤挤还是有的。
想到不知不觉订阅快200了，还是多写写吧，就当自己前进的动力，最近还是有挺多东西要写的，听飞鱼娓娓道来 ^___^
今天更新的东西是tutorial 上一个小鸡的制作，总体比较简单，有点小技巧，简单不简单。相信对初学者会有很大的帮助，像我这样的菜鸟也就做做小教程吧，谁让我爱分享，咩哈哈哈·~
最终效果


步骤1
新建一个文档，多大无所谓，够大就行，我用的是500×400，用形状工具画两个圈(按住shift 可以在同一个图层画两个圆)。用钢笔工具按住ctrl点击下图中的节点适当修一下形状。这个应该很简单吧，不用我教，什么？ 钢笔怎么修不会？ =，= 往下看
效果如下：

钢笔工具(P) 在使用的时候 可以配合ctrl，shift，alt  可以完成很多好玩的东东，你可以自己试试看，自己总结。 
步骤2
接下来用选择工具(A)选中头部的圈，按住shift 选中另外一个圈，(或者直接在界面拖动选中两个也可以)，点击上面 “组合” 就可以把两个圈圈合并，当然是不能分开的，所以要细心 接下来要使用钢笔工具将接口部分变得平滑。
如下图，钢笔工具在线上的3钟状态如下图中右侧的样子， 分别是添加节点，删除节点，和重置平滑 (重置平滑，是按住alt在线上出现的，单击就是不平滑(角)，可以拖动重新拉平滑度，这个东西在调整曲线的时候非常有用。)

调整后的效果如下：

您可能还对这些日志感兴趣乱翻乱教-编号004-用photoshop制作绚丽的星球设计部培训第二课乱翻乱教-Photoshop-剪贴蒙版妙用乱翻乱教-编号003-Photoshop 制作 字体冒烟效果出水芙蓉的绿色 oh~ 美女?&lt;img src=&quot;http://www1.feedsky.com/t1/339066726/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066726/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066726/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066726/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>photoshop</category><category>乱翻乱教</category><pubDate>Wed, 03 Mar 2010 23:15:38 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201003/photoshop-made-an-cute-chick/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=729</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201003/photoshop-made-an-cute-chick/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066726/5068053</fs:itemid></item><item><title>整得连妈都不认识了 – M8 新固件9.6.X 试用体验</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066727/5068053/1/item.html</link><content:encoded>&lt;p&gt;&lt;img class=&quot;alignnone size-full wp-image-726&quot; title=&quot;20100211&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/02/20100211.jpg&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;300&quot; /&gt;&lt;/p&gt;
&lt;p&gt;前几天 看扒饭网 上更新了新的官方固件9.6.9 ，好奇之，就下了刷之，结果让人吐血。&lt;br /&gt;
感觉新的UI固件变化有点大，短时间内适应不了。&lt;/p&gt;
&lt;p&gt;说说是官方固件，试用了1日，结果如下：&lt;span id=&quot;more-725&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;喷之：&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;新UI质感太强烈，不精致&lt;/strong&gt;，个人设计修养问题吧，觉得M8 什么东西都感觉大大的，我喜欢精致点的东西，那种让你觉得“麻雀虽小，五脏俱全”的联想。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;拖动解锁没有了&lt;/strong&gt;，这个让我很崩溃，其实 我还是很喜欢原先那种解锁方式，有一种M8独有的用户体验，新的解锁方式，难免有些被其他系统(android)影响。这个让人很郁闷，久久不能平静，少了份乐趣。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;感觉卡了许多&lt;/strong&gt;，似乎是为了让过渡效果做得更华丽，做了模糊效果(类似M8官方QQ的打开效果)，但是，有的时候，cpu 满的时候这个过程让人很蛋疼，还有平滑桌面的时候有的时候会很神奇的卡得让你蛋非常疼(&lt;em&gt;像是黑客帝国里的慢镜头=，=&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;电话本功能很脑残&lt;/strong&gt;，这么一改电话本分组木有了=。= ， 大不了重新整理一下，还可以发现许久没有联系的MM，但是发现木有批量改分组的功能，当时就雷在那里了，(&lt;em&gt;也许我没找到&lt;/em&gt;) ，手机的4大功能，电话，短信，上网，电话本，是我评判一个手机好坏的关键，尤其是电话本功能，当你有个几百个朋友的电话本的时候，你就会很需要一个好的电话本功能的手机了。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;短信界面仿IP &lt;/strong&gt;?  新的短信功能有点山寨，有点仿iphone，且不说 仿，丫，有点失去了M8 UI固件的设计风格，感觉很突兀。蛋很疼 =。=&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;拍照功能阉割&lt;/strong&gt; ，只剩个自动对焦，一开始以为会加个类似数字变焦的功能呢，结果啥也木有 0-0 ，杯具了··· ，而且有的时候还出现拍照失败，就是 &lt;em&gt;拍出来是 乱码 &amp;#8211; - ，百思不得其解&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;那条缝(修改桌面)&lt;/strong&gt;，有些人说 挺好的，感觉很酷~~· ，我觉得很脑残，花那么大心思在修改桌面图标上了，(&lt;em&gt;按住底栏的那条缝，弹开后，就可以修改桌面图标&lt;/em&gt;) 用句俗画是，谁没事了整天在调整桌面图标 0 0 ，监听这个功能一定很耗资源，还是喜欢，原先的按住图标几秒，进入修改模式，或者改成按桌面2秒 弹出个菜单也好的，何必整得那么花哨 =。=  不实用，(&lt;em&gt;犯职业病了=，=&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;划出来的任务管理器&lt;/strong&gt;，改进过的任务管理器，总的来说 还是不错的，不过有点不太舒服的是，因为我经常是单手(大拇指)玩的，从上面划出任务管理器这个功能对我来说，有点画蛇添足，因为大拇指够不到 =，= ，杯具了。 双击任务M键可以弹出任务管理器，但不知道M键能捏几次，捏爆了就挂了 &amp;#8211; - ，电话都接不了。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;天气只支持cmnet&lt;/strong&gt; ，还以为有个天气插件了呢，结果是cmnet才能用，我是cmwap无限 ，一阵冷风吹过。=，=&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;总的来说，改进是蛮多的，但是觉得，没有自己想象的那么好，于是乎，第二天又刷回9.3.X 了。&lt;/p&gt;
&lt;p&gt;做为魅油的一份子，当然是支持 小M越来越强大了，偶尔喷喷，希望它能变得越来越好。&lt;/p&gt;
&lt;p&gt;PS： 最近在猛啃 SDK，但愿自己也整个hello world 出来。哈。··&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/201001/become-a-m8-owner/&quot; title=&quot;M8 到手 内牛满面 &quot;&gt;M8 到手 内牛满面 &lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066727/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066727/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066727/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066727/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201002/tryout-m8-system-969/feed/</wfw:commentRss><slash:comments>22</slash:comments><description>前几天 看扒饭网 上更新了新的官方固件9.6.9 ，好奇之，就下了刷之，结果让人吐血。
感觉新的UI固件变化有点大，短时间内适应不了。
说说是官方固件，试用了1日，结果如下：
喷之：

新UI质感太强烈，不精致，个人设计修养问题吧，觉得M8 什么东西都感觉大大的，我喜欢精致点的东西，那种让你觉得“麻雀虽小，五脏俱全”的联想。
拖动解锁没有了，这个让我很崩溃，其实 我还是很喜欢原先那种解锁方式，有一种M8独有的用户体验，新的解锁方式，难免有些被其他系统(android)影响。这个让人很郁闷，久久不能平静，少了份乐趣。
感觉卡了许多，似乎是为了让过渡效果做得更华丽，做了模糊效果(类似M8官方QQ的打开效果)，但是，有的时候，cpu 满的时候这个过程让人很蛋疼，还有平滑桌面的时候有的时候会很神奇的卡得让你蛋非常疼(像是黑客帝国里的慢镜头=，=)
电话本功能很脑残，这么一改电话本分组木有了=。= ， 大不了重新整理一下，还可以发现许久没有联系的MM，但是发现木有批量改分组的功能，当时就雷在那里了，(也许我没找到) ，手机的4大功能，电话，短信，上网，电话本，是我评判一个手机好坏的关键，尤其是电话本功能，当你有个几百个朋友的电话本的时候，你就会很需要一个好的电话本功能的手机了。
短信界面仿IP ?  新的短信功能有点山寨，有点仿iphone，且不说 仿，丫，有点失去了M8 UI固件的设计风格，感觉很突兀。蛋很疼 =。=
拍照功能阉割 ，只剩个自动对焦，一开始以为会加个类似数字变焦的功能呢，结果啥也木有 0-0 ，杯具了··· ，而且有的时候还出现拍照失败，就是 拍出来是 乱码 &amp;#8211; - ，百思不得其解
那条缝(修改桌面)，有些人说 挺好的，感觉很酷~~· ，我觉得很脑残，花那么大心思在修改桌面图标上了，(按住底栏的那条缝，弹开后，就可以修改桌面图标) 用句俗画是，谁没事了整天在调整桌面图标 0 0 ，监听这个功能一定很耗资源，还是喜欢，原先的按住图标几秒，进入修改模式，或者改成按桌面2秒 弹出个菜单也好的，何必整得那么花哨 =。=  不实用，(犯职业病了=，=)
划出来的任务管理器，改进过的任务管理器，总的来说 还是不错的，不过有点不太舒服的是，因为我经常是单手(大拇指)玩的，从上面划出任务管理器这个功能对我来说，有点画蛇添足，因为大拇指够不到 =，= ，杯具了。 双击任务M键可以弹出任务管理器，但不知道M键能捏几次，捏爆了就挂了 &amp;#8211; - ，电话都接不了。
天气只支持cmnet ，还以为有个天气插件了呢，结果是cmnet才能用，我是cmwap无限 ，一阵冷风吹过。=，=

总的来说，改进是蛮多的，但是觉得，没有自己想象的那么好，于是乎，第二天又刷回9.3.X 了。
做为魅油的一份子，当然是支持 小M越来越强大了，偶尔喷喷，希望它能变得越来越好。
PS： 最近在猛啃 SDK，但愿自己也整个hello world 出来。哈。··
您可能还对这些日志感兴趣M8 到手 内牛满面&lt;img src=&quot;http://www1.feedsky.com/t1/339066727/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066727/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066727/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066727/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>M8</category><category>用户体验</category><category>生活琐碎</category><pubDate>Thu, 11 Feb 2010 13:56:54 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201002/tryout-m8-system-969/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=725</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201002/tryout-m8-system-969/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066727/5068053</fs:itemid></item><item><title>丫 越来越年轻 – 阿里巴巴2010新版首页</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066728/5068053/1/item.html</link><content:encoded>&lt;p&gt;&lt;img class=&quot;alignnone size-full wp-image-714&quot; title=&quot;100131&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/100131.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;250&quot; /&gt;&lt;br /&gt;
最近阿里系的网站纷纷 改版，先是 神奇的看到国际站的&lt;a href=&quot;http://www.qilei.org/200911/wide-width-web-design/&quot;&gt;新版&lt;/a&gt;，然后是 淘宝的新版，今天 又发现 中文站也不甘示弱 紧急挂上了&lt;a href=&quot;http://page.china.alibaba.com/index2010.html&quot; target=&quot;_blank&quot;&gt;新版的皮&lt;/a&gt;(&lt;em&gt;貌似26号就上来了&lt;/em&gt;)。不禁蠢蠢欲动，真想把日本站也&lt;a href=&quot;http://www.qilei.org/200911/the-day-after-tomorrow/&quot;&gt;重新设计&lt;/a&gt;一遍啊~，&lt;em&gt;8过这东西貌似很难实现，努力让自己的影响力在日本站更大点吧 = =&lt;/em&gt;。&lt;/p&gt;
&lt;p&gt;就像标题说的，中文站这次改版 越来越年轻化了，也可以说是被淘宝同化了。呆呆的看了5分钟写下些体会，如下：&lt;span id=&quot;more-711&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;简洁了很多&lt;/strong&gt;， 咋一看以为是淘宝，因为色彩用的是淘宝的那种很活泼的橙色，用色很简洁，导航用像素渐变取代了 原先的平滑渐变，去掉了很多 复杂的东西，页面看上去 像个脱胎换骨的 全新网站，没有原先的那般浓厚繁杂，不知道是不是寓意着新公司新形象。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;更年轻化了&lt;/strong&gt;，不知道是不是因为淘宝改版的影响，新版中增加了很多标签式的浏览，个人觉得这样的浏览方式更加省空间，并且很时尚，也将页面从原来的平面型 转化成 跟 富有层次的 多平面型，这样的效果，最早是从yahoo新版开始的(&lt;em&gt;我比较后知后觉，一向很崇拜yahoo而已，嘎嘎&lt;/em&gt;~) 。好处是很多，但是不知道是适不适合 刚接触网络的那些 &lt;em&gt;土老板&lt;/em&gt; 当时在国际站的时候是怎么称咱们的中文站用户的。这样的设计可以告诉我一个很大的信息可能是：中文站的 用户群也越来越年轻化了。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;像淘宝&lt;/strong&gt;，第二次乍一看看是觉得好像淘宝，一直以来中文站的视觉冲击带给我的是：繁华，热闹，商务气息，但新版似乎摒弃了这3个元素，简洁的界面让它看起来很冷静，活泼的淘宝一样的视觉冲击更像是一个B2C的网站，商务气息不是那么浓厚，看来淘宝 太深入人心了，给设计师也带来不少的困惑。&lt;em&gt;当然我只是个非专业滴&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;补充&lt;/em&gt;&lt;strong&gt;用色亮了好多&lt;/strong&gt;，发现除了 导航用色比较鲜亮外，其他的如边框的颜色用的灰阶都很淡，怀疑可能在某些早起的液晶屏上看不到那边框，&lt;a href=&quot;http://www.qilei.org/200902/gray-view-in-different-computer-lcd/&quot;&gt;小灰狼都被扼杀了&lt;/a&gt;，觉得这个问题需要重视，不然页面看起来会很囧rz&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;其实这仨改版都有一个共同的特点就是都向简洁靠拢，能不渐变就不渐变，能方的就不用圆角的理念。&lt;/p&gt;
&lt;p&gt;让我想起 设计的3句真言：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;看山是山，看水是水。&lt;/li&gt;
&lt;li&gt;看山不是山，看水不是水。&lt;/li&gt;
&lt;li&gt;看山还是山，看水还是水。&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;从简单到复杂，然后又回归简单，但其实不简单。&lt;/p&gt;
&lt;p&gt;= 。=得扯远了。&lt;/p&gt;
&lt;p&gt;拍个照留念~ &lt;em&gt;点击可查看大图&lt;img title=&quot;More...&quot; src=&quot;http://www.qilei.org/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif&quot; alt=&quot;&quot; /&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.qilei.org/wp-content/uploads/2010/01/alibaba2009.png&quot;&gt;&lt;img class=&quot;alignnone size-medium wp-image-716&quot; title=&quot;alibaba2009&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/alibaba2009-500x377.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;377&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;改版后~&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.qilei.org/wp-content/uploads/2010/01/alibaba2010.png&quot;&gt;&lt;img class=&quot;alignnone size-medium wp-image-717&quot; title=&quot;alibaba2010&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/alibaba2010-500x536.png&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;536&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200811/beautiful-white-in-iriver-com/&quot; title=&quot;有一种美叫洁白&amp;#8211; iriver改版好久&quot;&gt;有一种美叫洁白&amp;#8211; iriver改版好久&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200810/new-index-about-yoho/&quot; title=&quot;大步向前走-YOHO改版&quot;&gt;大步向前走-YOHO改版&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066728/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066728/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066728/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066728/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201001/new-design-about-alibaba-home-page-2010/feed/</wfw:commentRss><slash:comments>4</slash:comments><description>最近阿里系的网站纷纷 改版，先是 神奇的看到国际站的新版，然后是 淘宝的新版，今天 又发现 中文站也不甘示弱 紧急挂上了新版的皮(貌似26号就上来了)。不禁蠢蠢欲动，真想把日本站也重新设计一遍啊~，8过这东西貌似很难实现，努力让自己的影响力在日本站更大点吧 = =。
就像标题说的，中文站这次改版 越来越年轻化了，也可以说是被淘宝同化了。呆呆的看了5分钟写下些体会，如下：

简洁了很多， 咋一看以为是淘宝，因为色彩用的是淘宝的那种很活泼的橙色，用色很简洁，导航用像素渐变取代了 原先的平滑渐变，去掉了很多 复杂的东西，页面看上去 像个脱胎换骨的 全新网站，没有原先的那般浓厚繁杂，不知道是不是寓意着新公司新形象。
更年轻化了，不知道是不是因为淘宝改版的影响，新版中增加了很多标签式的浏览，个人觉得这样的浏览方式更加省空间，并且很时尚，也将页面从原来的平面型 转化成 跟 富有层次的 多平面型，这样的效果，最早是从yahoo新版开始的(我比较后知后觉，一向很崇拜yahoo而已，嘎嘎~) 。好处是很多，但是不知道是适不适合 刚接触网络的那些 土老板 当时在国际站的时候是怎么称咱们的中文站用户的。这样的设计可以告诉我一个很大的信息可能是：中文站的 用户群也越来越年轻化了。
像淘宝，第二次乍一看看是觉得好像淘宝，一直以来中文站的视觉冲击带给我的是：繁华，热闹，商务气息，但新版似乎摒弃了这3个元素，简洁的界面让它看起来很冷静，活泼的淘宝一样的视觉冲击更像是一个B2C的网站，商务气息不是那么浓厚，看来淘宝 太深入人心了，给设计师也带来不少的困惑。当然我只是个非专业滴
补充用色亮了好多，发现除了 导航用色比较鲜亮外，其他的如边框的颜色用的灰阶都很淡，怀疑可能在某些早起的液晶屏上看不到那边框，小灰狼都被扼杀了，觉得这个问题需要重视，不然页面看起来会很囧rz

其实这仨改版都有一个共同的特点就是都向简洁靠拢，能不渐变就不渐变，能方的就不用圆角的理念。
让我想起 设计的3句真言：

看山是山，看水是水。
看山不是山，看水不是水。
看山还是山，看水还是水。

从简单到复杂，然后又回归简单，但其实不简单。
= 。=得扯远了。
拍个照留念~ 点击可查看大图

改版后~

您可能还对这些日志感兴趣有一种美叫洁白&amp;#8211; iriver改版好久大步向前走-YOHO改版&lt;img src=&quot;http://www1.feedsky.com/t1/339066728/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066728/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066728/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066728/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>又设又计</category><category>改版</category><pubDate>Sun, 31 Jan 2010 22:04:18 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201001/new-design-about-alibaba-home-page-2010/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=711</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201001/new-design-about-alibaba-home-page-2010/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066728/5068053</fs:itemid></item><item><title>杯具时常有 – 巴士特别多 – 丫破相了</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066729/5068053/1/item.html</link><content:encoded>&lt;p&gt;&lt;img src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/tgbus_code.png&quot; alt=&quot;&quot; title=&quot;tgbus_code&quot; width=&quot;500&quot; height=&quot;213&quot; class=&quot;alignnone size-full wp-image-707&quot; /&gt;&lt;br /&gt;
看图不说话，偶然间发现的，对于ie这个 容错率那么高的浏览器来说，不影响，因为看不到 嘎嘎。&lt;br /&gt;
可惜webkit 发现了，都不知道说浏览器不好呢，还是那小程序员不好。毕竟咱是有空就上来喵的，用搜狗浏览器的webkit核看到破相了。发出来晒晒，也算是职业病哈。希望那个前端 早早发现 hoho~~~~&lt;/p&gt;
&lt;p&gt;写毕睡觉 &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://psp.tgbus.com/&quot;&gt;贴个地址&lt;/a&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/tgbus_shoot.png&quot; alt=&quot;&quot; title=&quot;tgbus_shoot&quot; width=&quot;500&quot; height=&quot;213&quot; class=&quot;alignnone size-full wp-image-706&quot; /&gt;&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200812/lazy-design-lazy-style/&quot; title=&quot;懒出风格，懒出境界 &amp;#8211; 飞鱼很懒&quot;&gt;懒出风格，懒出境界 &amp;#8211; 飞鱼很懒&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200808/need-for-speed-12/&quot; title=&quot;期待玩不了的游戏-极品飞车12&quot;&gt;期待玩不了的游戏-极品飞车12&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200907/repair-my-broken-computer/&quot; title=&quot;老婆生病了 &amp;#8211; 又神奇的好了&quot;&gt;老婆生病了 &amp;#8211; 又神奇的好了&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/201001/youdao-reader-usage-time/&quot; title=&quot;有道阅读 试用手札&quot;&gt;有道阅读 试用手札&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200901/qeephp-come-out/&quot; title=&quot;09年第一弹 QeePHP 发布&quot;&gt;09年第一弹 QeePHP 发布&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066729/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066729/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066729/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066729/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201001/a-code-bug-of-tgbus/feed/</wfw:commentRss><slash:comments>2</slash:comments><description>看图不说话，偶然间发现的，对于ie这个 容错率那么高的浏览器来说，不影响，因为看不到 嘎嘎。
可惜webkit 发现了，都不知道说浏览器不好呢，还是那小程序员不好。毕竟咱是有空就上来喵的，用搜狗浏览器的webkit核看到破相了。发出来晒晒，也算是职业病哈。希望那个前端 早早发现 hoho~~~~
写毕睡觉 贴个地址

您可能还对这些日志感兴趣Dreamweaver 代码配色方案 DIY原来中国动画行业都是这样被扼杀掉的yupoo 一知半解琪琪杂货铺马扁子&lt;img src=&quot;http://www1.feedsky.com/t1/339066729/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066729/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066729/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066729/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>生活琐碎</category><pubDate>Sun, 24 Jan 2010 23:57:07 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201001/a-code-bug-of-tgbus/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=705</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201001/a-code-bug-of-tgbus/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066729/5068053</fs:itemid></item><item><title>从昨天开始，喜新厌旧  – 搜狗浏览器</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066730/5068053/1/item.html</link><content:encoded>&lt;p&gt;&lt;img src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/sougouView.png&quot; alt=&quot;&quot; title=&quot;sougouView&quot; width=&quot;500&quot; height=&quot;283&quot; class=&quot;alignnone size-full wp-image-703&quot; /&gt;&lt;br /&gt;
周末抽空试用了下 新的搜狗浏览器2.0，然后就萌发了这样的冲动。&lt;br /&gt;
原先一直都是&lt;em&gt;世窗控&lt;/em&gt;(世界之窗)，从搜狗浏览器1.0版出来的时候就有这样的感觉，这东西速度真是很快，快赶上chrome了，由于用个的是IE的核心，速度再快也快不到哪里去，于是呼，2.0版打算抛弃IE核改用chrome一样的webkit核。&lt;br /&gt;
这下我可以名正言顺的抛弃的世窗了，=.= 我真是个喜新厌旧的家伙。&lt;br /&gt;
当初喜欢世界之窗(TW)的原因是它的超级拖拽和手势，然后有人会说马桶(TM傲游)不是也有的么，傲游当时 死机死得厉害，所以就一直用TW了。差不多3年了，世界之窗走得很辛苦，没有强大的资金砸下去，所以走得灰常慢。&lt;br /&gt;
也不知道咋的，搜狗浏览器一出来都很大手笔，浏览器是Rokey的团队 eico设计的，&lt;em&gt;我是Rokey控&lt;/em&gt;然后我就喜欢上了，当时以为这东西是TW的商业版呢，后来才发现不太一样。&lt;br /&gt;
好了现在2.0出来了，有chrome一样的速度，TW的手势，还有超级拖拽，UI又是我的size，能不喜欢么。&lt;/p&gt;
&lt;p&gt;还有就是打开速度，也是为什么我一直都不想用Firefox 来上网的原因了。&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200902/safari-4-come-out/&quot; title=&quot;safari 4 试用笔记&quot;&gt;safari 4 试用笔记&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200806/interview-for-9sky/&quot; title=&quot;被强奸了一番&quot;&gt;被强奸了一番&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200811/say-sorry-to-bigwww-cn/&quot; title=&quot;都是相貌惹得祸&quot;&gt;都是相貌惹得祸&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200812/think-of-the-next-d2/&quot; title=&quot;明年更坚挺 &amp;#8211; D2 要来杭州&quot;&gt;明年更坚挺 &amp;#8211; D2 要来杭州&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200806/life-in-9sky/&quot; title=&quot;在九天的日子&quot;&gt;在九天的日子&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066730/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066730/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066730/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066730/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201001/start-to-use-sogou-browser/feed/</wfw:commentRss><slash:comments>12</slash:comments><description>周末抽空试用了下 新的搜狗浏览器2.0，然后就萌发了这样的冲动。
原先一直都是世窗控(世界之窗)，从搜狗浏览器1.0版出来的时候就有这样的感觉，这东西速度真是很快，快赶上chrome了，由于用个的是IE的核心，速度再快也快不到哪里去，于是呼，2.0版打算抛弃IE核改用chrome一样的webkit核。
这下我可以名正言顺的抛弃的世窗了，=.= 我真是个喜新厌旧的家伙。
当初喜欢世界之窗(TW)的原因是它的超级拖拽和手势，然后有人会说马桶(TM傲游)不是也有的么，傲游当时 死机死得厉害，所以就一直用TW了。差不多3年了，世界之窗走得很辛苦，没有强大的资金砸下去，所以走得灰常慢。
也不知道咋的，搜狗浏览器一出来都很大手笔，浏览器是Rokey的团队 eico设计的，我是Rokey控然后我就喜欢上了，当时以为这东西是TW的商业版呢，后来才发现不太一样。
好了现在2.0出来了，有chrome一样的速度，TW的手势，还有超级拖拽，UI又是我的size，能不喜欢么。
还有就是打开速度，也是为什么我一直都不想用Firefox 来上网的原因了。
您可能还对这些日志感兴趣杯具时常有 &amp;#8211; 巴士特别多 &amp;#8211; 丫破相了狩猎钞票滚滚向东Widget 又爱又恨乱翻乱教-使用JS输出HTML串最快的方法&lt;img src=&quot;http://www1.feedsky.com/t1/339066730/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066730/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066730/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066730/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>又设又计</category><category>生活琐碎</category><category>浏览器</category><category>世界之窗</category><pubDate>Sun, 24 Jan 2010 23:45:42 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201001/start-to-use-sogou-browser/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=702</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201001/start-to-use-sogou-browser/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066730/5068053</fs:itemid></item><item><title>有道阅读 试用手札</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066731/5068053/1/item.html</link><content:encoded>&lt;p&gt;&lt;img src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/youdao.png&quot; alt=&quot;&quot; title=&quot;youdao&quot; width=&quot;577&quot; height=&quot;251&quot; class=&quot;alignnone size-full wp-image-693&quot; /&gt;&lt;br /&gt;
在公司里上班，最大的精神餐莫过于google reader了，50%的空闲时间都是花在这上面的。无奈，咱们伟大的妈，因为大姨妈的迟迟不来，缕缕关闭了那门。于是乎，发现了&lt;a target=&quot;_blank&quot; href=&quot;http://reader.youdao.com/&quot;&gt;有道reader&lt;/a&gt;，上网搜了下，似乎对这个感兴趣的不多，&lt;a title=&quot;网易有道阅读器试用-月光博客&quot; rel=&quot;nofollow&quot; href=&quot;http://www.williamlong.info/archives/1167.html&quot; target=&quot;_blank&quot;&gt;月光哥哥&lt;/a&gt;写过一篇(&lt;em&gt;汗死我了，他一年前就玩过这东西了，我真够out的&lt;/em&gt;)&lt;br /&gt;
用了2天，发现很多 google reader的影子(咱不能说抄袭，毕竟也是个好产品，有它的独特之处)。&lt;br /&gt;
只能说需要改进的地方比较多吧，很多用户体验的东西都没做到位(&lt;em&gt;一开始找不到批量导入的入口&lt;/em&gt;)，然后是发现侧边栏点开了，再点不会收回，然后又发现 同时有 展开/折叠2个链接(&lt;em&gt;正常情况下应该只有一种情况&lt;/em&gt;)，&lt;br /&gt;
幸好发现有个反馈入口，一时兴起就写了个bug过去，想不到 半小时不到就有反馈，真实太令我震精啦····· 0 0.&lt;br /&gt;
于是对有道reader有了很大的兴趣，慢慢去适应它，不断的反馈 &amp;#8211; -，上瘾 了 嘎嘎。&lt;/p&gt;
&lt;p&gt;有图有真相，如果感兴趣 也帮忙一起整 嘎嘎···&lt;span id=&quot;more-686&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/555.png&quot; alt=&quot;&quot; title=&quot;555&quot; width=&quot;577&quot; height=&quot;251&quot; class=&quot;alignnone size-full wp-image-694&quot; /&gt;&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200809/google-chrome-so-powerful/&quot; title=&quot;Google Chrome浏览器 真邪恶&quot;&gt;Google Chrome浏览器 真邪恶&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066731/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066731/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066731/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066731/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201001/youdao-reader-usage-time/feed/</wfw:commentRss><slash:comments>8</slash:comments><description>在公司里上班，最大的精神餐莫过于google reader了，50%的空闲时间都是花在这上面的。无奈，咱们伟大的妈，因为大姨妈的迟迟不来，缕缕关闭了那门。于是乎，发现了有道reader，上网搜了下，似乎对这个感兴趣的不多，月光哥哥写过一篇(汗死我了，他一年前就玩过这东西了，我真够out的)
用了2天，发现很多 google reader的影子(咱不能说抄袭，毕竟也是个好产品，有它的独特之处)。
只能说需要改进的地方比较多吧，很多用户体验的东西都没做到位(一开始找不到批量导入的入口)，然后是发现侧边栏点开了，再点不会收回，然后又发现 同时有 展开/折叠2个链接(正常情况下应该只有一种情况)，
幸好发现有个反馈入口，一时兴起就写了个bug过去，想不到 半小时不到就有反馈，真实太令我震精啦····· 0 0.
于是对有道reader有了很大的兴趣，慢慢去适应它，不断的反馈 &amp;#8211; -，上瘾 了 嘎嘎。
有图有真相，如果感兴趣 也帮忙一起整 嘎嘎···

您可能还对这些日志感兴趣Google Chrome浏览器 真邪恶&lt;img src=&quot;http://www1.feedsky.com/t1/339066731/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066731/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066731/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066731/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>有道</category><category>又设又计</category><category>生活琐碎</category><category>google</category><pubDate>Mon, 04 Jan 2010 23:11:06 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201001/youdao-reader-usage-time/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=686</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201001/youdao-reader-usage-time/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066731/5068053</fs:itemid></item><item><title>M8 到手 内牛满面</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066732/5068053/1/item.html</link><content:encoded>&lt;p&gt;&lt;img src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/M8.jpg&quot; alt=&quot;&quot; title=&quot;M8&quot; width=&quot;500&quot; height=&quot;269&quot; class=&quot;alignnone size-full wp-image-687&quot; /&gt;&lt;br /&gt;
在这银弹的2010年的第一天，哦不是第二天，终于出手买M8了，虽然花花说等等，等M9，等android。8过我还是买了，就当是给自己10年的礼物好了，让自己有一个好的开始，嘎嘎。&lt;br /&gt;
废话就到此啦，说点使用感想吧。&lt;br /&gt;
说实话，优点很多，缺点更多，&lt;br /&gt;
首先是：买了半天我还不知道咋用， =。=  (想说我土就喷我吧。)&lt;br /&gt;
总算上手了，发现不会装软件 -，- &lt;span id=&quot;more-685&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;优点如下：&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;1. &lt;strong&gt;界面稀饭&lt;/strong&gt; &amp;#8211; 这个不用多说Rokey的风格&lt;/li&gt;
&lt;li&gt;2. &lt;strong&gt;屏幕很华丽&lt;/strong&gt; &amp;#8211; 看了一天的屏幕 睡前玩小p的时候发现都是一颗颗液晶粒&lt;/li&gt;
&lt;li&gt;3. &lt;strong&gt;速度还行&lt;/strong&gt; &amp;#8211; 至少没有发现什么不流畅的感觉。当然我还没装N多软件。&lt;/li&gt;
&lt;li&gt;4. &lt;strong&gt;音质&lt;/strong&gt; &amp;#8211; MEIZU 是吃这个起家的，应该是芯片用的好。&lt;/li&gt;
&lt;li&gt;5. &lt;strong&gt;gprs 链接 快&lt;/strong&gt; &amp;#8211; 感觉啊，可能之前一直用傻瓜机E1，所以感觉打开页面很快。&lt;/li&gt;
&lt;li&gt;6. &lt;strong&gt;字体&lt;/strong&gt; &amp;#8211; 这个字体很舒服，可能是分辨率高的原因吧，平滑做得很好，(不过发现有些wap网站固定字体大小了，有锯齿)&lt;/li&gt;
&lt;li&gt;7. &lt;strong&gt;关灯键&lt;/strong&gt; &amp;#8211; 我超级喜欢这个按钮，可以为你节省好多电，还有就是 打电话的时候脸碰到屏幕就关灯，也很人性化。&lt;em&gt;之前一直有这样的想法&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;缺点如下：&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;1. 这个是碰到的第一个问题，usb充电的时候，有些软件开不了。- &amp;#8211; 这个最怨念，不过觉得可以通过软件避免。&lt;/li&gt;
&lt;li&gt;2. &lt;strong&gt;拍照速度&lt;/strong&gt;，估计在拍静物上有优势，我拍了10张差不多，都晃了，防抖系统不够稳定，觉得可以用重力传感器来弥补。期待~&lt;/li&gt;
&lt;li&gt;3. &lt;strong&gt;电话本功能&lt;/strong&gt;， 现在我买手机最大的功能就是注重电话本了，觉得一些用户体验还不够。比如批量修改分组功能。&lt;/li&gt;
&lt;li&gt;4. &lt;strong&gt;滑动门&lt;/strong&gt; &amp;#8211; 这个是个很炫的功能 做到了 滑动，并且碰到尽头还能弹一下，当内容多的时候 ok，但是没有做好一些&lt;strong&gt;尽头处&lt;/strong&gt;的细节处理做得不够好，(&lt;em&gt;只有一个项目的时候还能滑动，真不应该&lt;/em&gt;)，还有就是滑动判定太灵敏，(这个有利有弊) 有的时候想打开一个东西，老是变成滑动 &amp;#8211; -&lt;/li&gt;
&lt;li&gt;5. &lt;strong&gt;任务管理器&lt;/strong&gt; &amp;#8211; 这个东西还是第二天才发现，按M键2次，&lt;em&gt;发出尖叫声= =&lt;/em&gt; ，当有2个以上软件的时候底部导航会显示， 不是说它不好，总觉得怪怪的 从设计上将似乎风格不太一样，反正很怪。&lt;/li&gt;
&lt;li&gt;6. &lt;strong&gt;裸体bug&lt;/strong&gt; &amp;#8211; 这个问题应该归结于软件开发者，程序员都这样，做出来的东西太可怕，把CE的默认界面显示出来，太丑陋，真不忍心 &amp;#8211; - &lt;/li&gt;
&lt;li&gt;7. &lt;strong&gt;万恶的震动&lt;/strong&gt; &amp;#8211; 竟然木有情景模式， 震动只有一种形式，9 9 ，好像有个软件有的，没试过 &amp;#8211; -&lt;/li&gt;
&lt;li&gt;8. &lt;strong&gt;软件体系&lt;/strong&gt; &amp;#8211; 处于成本的考虑吧，官方出的软件比较少，比如一些常用的功能，像我要求不高，可以上网，QQ，gsoft，map 就够了。&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;好了，就显摆那么多了，送张壁纸(480*720) &amp;#8211; - 有点糊，但是很喜欢，我还有张 &lt;em&gt;张柏芝&lt;/em&gt;的 很&lt;em&gt;哈皮&lt;/em&gt;的 我都不敢用 &amp;#8211; -&lt;br /&gt;
想要的留言我打包给你邮寄&lt;br /&gt;
&lt;img src=&quot;http://www.qilei.org/wp-content/uploads/2010/01/004.jpg&quot; alt=&quot;&quot; title=&quot;004&quot; width=&quot;240&quot; height=&quot;360&quot; class=&quot;alignnone size-full wp-image-688&quot; /&gt;&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/201002/tryout-m8-system-969/&quot; title=&quot;整得连妈都不认识了 &amp;#8211; M8 新固件9.6.X 试用体验&quot;&gt;整得连妈都不认识了 &amp;#8211; M8 新固件9.6.X 试用体验&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066732/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066732/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066732/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066732/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/201001/become-a-m8-owner/feed/</wfw:commentRss><slash:comments>28</slash:comments><description>在这银弹的2010年的第一天，哦不是第二天，终于出手买M8了，虽然花花说等等，等M9，等android。8过我还是买了，就当是给自己10年的礼物好了，让自己有一个好的开始，嘎嘎。
废话就到此啦，说点使用感想吧。
说实话，优点很多，缺点更多，
首先是：买了半天我还不知道咋用， =。=  (想说我土就喷我吧。)
总算上手了，发现不会装软件 -，- 
优点如下：

1. 界面稀饭 &amp;#8211; 这个不用多说Rokey的风格
2. 屏幕很华丽 &amp;#8211; 看了一天的屏幕 睡前玩小p的时候发现都是一颗颗液晶粒
3. 速度还行 &amp;#8211; 至少没有发现什么不流畅的感觉。当然我还没装N多软件。
4. 音质 &amp;#8211; MEIZU 是吃这个起家的，应该是芯片用的好。
5. gprs 链接 快 &amp;#8211; 感觉啊，可能之前一直用傻瓜机E1，所以感觉打开页面很快。
6. 字体 &amp;#8211; 这个字体很舒服，可能是分辨率高的原因吧，平滑做得很好，(不过发现有些wap网站固定字体大小了，有锯齿)
7. 关灯键 &amp;#8211; 我超级喜欢这个按钮，可以为你节省好多电，还有就是 打电话的时候脸碰到屏幕就关灯，也很人性化。之前一直有这样的想法


缺点如下：

1. 这个是碰到的第一个问题，usb充电的时候，有些软件开不了。- &amp;#8211; 这个最怨念，不过觉得可以通过软件避免。
2. 拍照速度，估计在拍静物上有优势，我拍了10张差不多，都晃了，防抖系统不够稳定，觉得可以用重力传感器来弥补。期待~
3. 电话本功能， 现在我买手机最大的功能就是注重电话本了，觉得一些用户体验还不够。比如批量修改分组功能。
4. 滑动门 &amp;#8211; 这个是个很炫的功能 做到了 滑动，并且碰到尽头还能弹一下，当内容多的时候 ok，但是没有做好一些尽头处的细节处理做得不够好，(只有一个项目的时候还能滑动，真不应该)，还有就是滑动判定太灵敏，(这个有利有弊) 有的时候想打开一个东西，老是变成滑动 &amp;#8211; -
5. 任务管理器 &amp;#8211; 这个东西还是第二天才发现，按M键2次，发出尖叫声= = ，当有2个以上软件的时候底部导航会显示， 不是说它不好，总觉得怪怪的 从设计上将似乎风格不太一样，反正很怪。
6. 裸体bug [...]&lt;img src=&quot;http://www1.feedsky.com/t1/339066732/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066732/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066732/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066732/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>M8</category><category>生活琐碎</category><pubDate>Mon, 04 Jan 2010 22:44:47 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/201001/become-a-m8-owner/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=685</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/201001/become-a-m8-owner/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066732/5068053</fs:itemid></item><item><title>世界之窗皮肤：Janblus【 beta 1.1版】</title><link>http://item.feedsky.com/~feedsky/qilei/~7330485/339066733/5068053/1/item.html</link><content:encoded>&lt;p&gt;&lt;img class=&quot;alignnone size-full wp-image-635&quot; title=&quot;tt&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2009/11/tt.gif&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;180&quot; /&gt;&lt;br /&gt;
&lt;em&gt;发这篇文章告诉大家，哥哥我还活着，飞鱼还木有熟。&lt;/em&gt;&lt;br /&gt;
这个皮肤很早前就做好了，放到官方&lt;a rel=&quot;nofollow&quot; href=&quot;http://bbs.ioage.com/cn/thread-124376-1-1.html&quot;&gt;论坛上面&lt;/a&gt;放了几天又彻下来了。&lt;br /&gt;
因为还算个半成品。&lt;/p&gt;
&lt;p&gt;年末了，公司忙 &amp;#8211; - ，都不知道在忙什么，只知道一直在接需求，一直开会，一直总结。&lt;br /&gt;
总之，换产品线之后，就木有停下来过。果然跟当初想象的一样。&lt;/p&gt;
&lt;p&gt;好了绘画少说。&lt;br /&gt;
喜欢这个皮  点这里下载。&lt;span id=&quot;more-672&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.qilei.org/wp-content/uploads/2009/12/Janblus.zip&quot; target=&quot;_blank&quot;&gt;Janblus&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;还有大图&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.qilei.org/wp-content/uploads/2009/12/091129.png&quot; target=&quot;_blank&quot;&gt;&lt;img class=&quot;alignnone size-medium wp-image-673&quot; title=&quot;091129&quot; src=&quot;http://www.qilei.org/wp-content/uploads/2009/12/091129-650x263.png&quot; alt=&quot;&quot; width=&quot;650&quot; height=&quot;263&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3  class=&quot;related_post_title&quot;&gt;您可能还对这些日志感兴趣&lt;/h3&gt;&lt;ul class=&quot;related_post&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200905/a-little-busy/&quot; title=&quot;仅仅是比较忙 &amp;#8211; 即将毕业ing&quot;&gt;仅仅是比较忙 &amp;#8211; 即将毕业ing&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.qilei.org/200811/js-for-skin-of-discuz/&quot; title=&quot;一张皮惹的血案，不是《画皮》&quot;&gt;一张皮惹的血案，不是《画皮》&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/339066733/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066733/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066733/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066733/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://www.qilei.org/200912/janblus-skin-for-theworld/feed/</wfw:commentRss><slash:comments>5</slash:comments><description>发这篇文章告诉大家，哥哥我还活着，飞鱼还木有熟。
这个皮肤很早前就做好了，放到官方论坛上面放了几天又彻下来了。
因为还算个半成品。
年末了，公司忙 &amp;#8211; - ，都不知道在忙什么，只知道一直在接需求，一直开会，一直总结。
总之，换产品线之后，就木有停下来过。果然跟当初想象的一样。
好了绘画少说。
喜欢这个皮  点这里下载。
Janblus
还有大图

您可能还对这些日志感兴趣仅仅是比较忙 &amp;#8211; 即将毕业ing一张皮惹的血案，不是《画皮》&lt;img src=&quot;http://www1.feedsky.com/t1/339066733/qilei/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/qilei/~7330485/339066733/5068053/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/qilei/339066733/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/qilei/339066733/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>skin</category><category>又设又计</category><category>theworld</category><pubDate>Tue, 22 Dec 2009 23:44:45 +0800</pubDate><author>飞鱼</author><comments>http://www.qilei.org/200912/janblus-skin-for-theworld/#comments</comments><guid isPermaLink="false">http://www.qilei.org/?p=672</guid><dc:creator>飞鱼</dc:creator><fs:srclink>http://www.qilei.org/200912/janblus-skin-for-theworld/</fs:srclink><fs:srcfeed>http://qilei.org/feed/</fs:srcfeed><fs:itemid>feedsky/qilei/~7330485/339066733/5068053</fs:itemid></item></channel></rss>