<?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>o仔札记 -- W3C标准下的页面构建&#124;重构</title>
	<atom:link href="http://imouou.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://imouou.com/blog</link>
	<description>我与梦想曾经擦肩而过，现在只剩下不断的追求…</description>
	<lastBuildDate>Fri, 03 Sep 2010 09:59:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>让wordpress显示首页index.html</title>
		<link>http://imouou.com/blog/modify-wordpress-index-php-to-index-html/</link>
		<comments>http://imouou.com/blog/modify-wordpress-index-php-to-index-html/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 09:46:08 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[应用体验]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=416</guid>
		<description><![CDATA[假设我有一个网站放在跟wordpress同个目录，需要第一个是显示 index.html 而不是 index.php 这个时候，下面的方法就派得上用场了。如果你的wordpress不介意在二级目录就没这样的烦恼了。
原因：wordpress的index.php 会一直循环调用，如果更改了.htaccess 文件为 index.html 那么日志就会循环调用不出来。
修改首页为.html 需要注意：
1.在wordpress 后台修改永久链接(Permalink Settings)， 把default 改为 下面哪个都行，根据自己需要（有部分风格会用博客的根目录，这样首页更改了，日志链接就点击不进去了，所以需要修改永久链接）。

会在根目录生成一个.htaccess 文件

2.修改.htaccess 文件，

# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress

上面的代码会根据自己所选生成，在 # END WordPress 上面增加下面代码


   DirectoryIndex index.html index.php


2.修改rewrite.php文件 把index.php 改为你现在的blog 首页，把index.php要复制多一个改名为home.php
wp-includes/rewrite.php 
在 515 line.

var $index = 'home.php';

如果更换风格，首页不是.html 那这个要更改回 index.php
3.搜索action的路径需要修改 searchform.php ，因为默认的wordpress 还是以根目录为搜索，所以需要更改为现在的首页。
wp-content\themes\PetakSawah\searchform.php
现在是改到

action="/home.php"

就这样，你的另外的网站首页就可以跟wordpress兼容了。。
相关阅读为什么wordpress很慢,我帮你解决 (2)说说pjblog与wordpress之间 (1)]]></description>
			<content:encoded><![CDATA[<p>假设我有一个网站放在跟wordpress同个目录，需要第一个是显示 index.html 而不是 index.php 这个时候，下面的方法就派得上用场了。如果你的wordpress不介意在二级目录就没这样的烦恼了。</p>
<p>原因：wordpress的index.php 会一直循环调用，如果更改了.htaccess 文件为 index.html 那么日志就会循环调用不出来。</p>
<p>修改首页为.html 需要注意：</p>
<p>1.在wordpress 后台修改永久链接(Permalink Settings)， 把default 改为 下面哪个都行，根据自己需要（有部分风格会用博客的根目录，这样首页更改了，日志链接就点击不进去了，所以需要修改永久链接）。<br />
<a href="http://imouou.com/blog/wp-content/uploads/2010/09/permalink_1.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/09/permalink_1.jpg" alt="" title="permalink_1" width="177" height="233" class="alignnone size-full wp-image-415" /></a><br />
会在根目录生成一个.htaccess 文件</p>
<p><span id="more-416"></span><br />
2.修改.htaccess 文件，<br />
<code><br />
# BEGIN WordPress<br />
<IfModule mod_rewrite.c><br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
</IfModule></p>
<p># END WordPress<br />
</code><br />
上面的代码会根据自己所选生成，在 # END WordPress 上面增加下面代码</p>
<p><code><br />
<IfModule dir_module><br />
   DirectoryIndex index.html index.php<br />
</IfModule><br />
</code></p>
<p>2.修改rewrite.php文件 把index.php 改为你现在的blog 首页，把index.php要复制多一个改名为home.php</p>
<p>wp-includes/rewrite.php </p>
<p>在 515 line.<br />
<code><br />
var $index = 'home.php';<br />
</code><br />
如果更换风格，首页不是.html 那这个要更改回 index.php</p>
<p>3.搜索action的路径需要修改 searchform.php ，因为默认的wordpress 还是以根目录为搜索，所以需要更改为现在的首页。</p>
<p>wp-content\themes\PetakSawah\searchform.php</p>
<p>现在是改到<br />
<code><br />
action="<?php bloginfo('home'); ?>/home.php"<br />
</code></p>
<p>就这样，你的另外的网站首页就可以跟wordpress兼容了。。</p>
<h4  class="related_post_title">相关阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/jiejue-wordpress-henman/" title="为什么wordpress很慢,我帮你解决">为什么wordpress很慢,我帮你解决</a> (2)</li><li><a href="http://imouou.com/blog/shuoshuo-pjblog-wordpress-zhijian/" title="说说pjblog与wordpress之间">说说pjblog与wordpress之间</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/modify-wordpress-index-php-to-index-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>让页面绝对水平垂直居中&#8211;jquery例子</title>
		<link>http://imouou.com/blog/page-align-center-vertical-align-middle-jquery-example/</link>
		<comments>http://imouou.com/blog/page-align-center-vertical-align-middle-jquery-example/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 03:08:43 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[垂直居中]]></category>
		<category><![CDATA[水平居中]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=411</guid>
		<description><![CDATA[
例子的大概的示意图，以例子为准，截得不够绝对居中。
也许你也会用到的一个例子,让页面垂直居中。。如果你的分辨率够高的话，你就会发现很多页面如果不够长，就会全在上面那么一点，下面留了很多空白。。这时候就需要用到垂直居中了。原理很简单，里面都有注释了，就不废话了。。需要就拿去用。。还可以继续扩展下去。。
兼容 firefox ie6以上 chrome opera


&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; xml:lang=&#34;en&#34;&#62;
&#60;head&#62;
	&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html;charset=UTF-8&#34; /&#62;
	&#60;title&#62;绝对垂直居中的例子--http://imouou.com/blog/&#60;/title&#62;
	&#60;script type=&#34;text/javascript&#34; src=&#34;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&#34;&#62;&#60;/script&#62;
	&#60;style type=&#34;text/css&#34;&#62;
		#wrap {height:200px;width:200px;background:#cccccc;position:absolute;}
	&#60;/style&#62;
	&#60;script type=&#34;text/javascript&#34;&#62;
		$(function(){
			function windowalign(){
				var bodyheight = $(document).height(),  //整个网页的宽度 如果这里是window ie6and ie7 得到的是负数
					bodywidth = $(window).width(),  //整个网页的高度 如果这里是document ie7不会水平居中
					wrapwidth = $(&#34;#wrap&#34;).width(),  //要垂直居中的内容的宽度
					wrapheight = $(&#34;#wrap&#34;).height();  //要垂直居中的内容的高度度
					postop = (bodyheight-wrapheight)/2;  // 获取顶部的position
					posleft = (bodywidth-wrapwidth)/2;  // [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://imouou.com/blog/wp-content/uploads/2010/08/absolutecenter.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/08/absolutecenter.jpg" alt="" title="absolutecenter" width="500" height="400" class="alignnone size-full wp-image-420" /></a><br />
例子的大概的示意图，以例子为准，截得不够绝对居中。</p>
<p>也许你也会用到的一个例子,让页面垂直居中。。如果你的分辨率够高的话，你就会发现很多页面如果不够长，就会全在上面那么一点，下面留了很多空白。。这时候就需要用到垂直居中了。原理很简单，里面都有注释了，就不废话了。。需要就拿去用。。还可以继续扩展下去。。<br />
兼容 firefox ie6以上 chrome opera<br />
<span id="more-411"></span></p>
<pre class="brush: plain;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot;&gt;
&lt;head&gt;
	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=UTF-8&quot; /&gt;
	&lt;title&gt;绝对垂直居中的例子--http://imouou.com/blog/&lt;/title&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;&gt;&lt;/script&gt;
	&lt;style type=&quot;text/css&quot;&gt;
		#wrap {height:200px;width:200px;background:#cccccc;position:absolute;}
	&lt;/style&gt;
	&lt;script type=&quot;text/javascript&quot;&gt;
		$(function(){
			function windowalign(){
				var bodyheight = $(document).height(),  //整个网页的宽度 如果这里是window ie6and ie7 得到的是负数
					bodywidth = $(window).width(),  //整个网页的高度 如果这里是document ie7不会水平居中
					wrapwidth = $(&quot;#wrap&quot;).width(),  //要垂直居中的内容的宽度
					wrapheight = $(&quot;#wrap&quot;).height();  //要垂直居中的内容的高度度
					postop = (bodyheight-wrapheight)/2;  // 获取顶部的position
					posleft = (bodywidth-wrapwidth)/2;  // 获取左边部的position
					$(&quot;#wrap&quot;).css({&quot;left&quot;:posleft+&quot;px&quot;,&quot;top&quot;:postop+&quot;px&quot;});  // 设置position
			}
			windowalign();
			$(window).resize(function(){  // 当调整窗口的时候动态修正位置
				windowalign();
			});
		})
	&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;div id=&quot;wrap&quot;&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<h4  class="related_post_title">随机阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/google-analytic-for-flash-tech/" title="谷歌flash跟踪统计Google Analytics Tracking for Adobe Flash">谷歌flash跟踪统计Google Analytics Tracking for Adobe Flash</a> (0)</li><li><a href="http://imouou.com/blog/jiejue-pjblog-buneng-denglu/" title="解决pjblog不能登陆的问题">解决pjblog不能登陆的问题</a> (1)</li><li><a href="http://imouou.com/blog/beijing-tupian-shixian-wenzi-xianshi-yincang/" title="用背景图片轻松实现文字显示隐藏">用背景图片轻松实现文字显示隐藏</a> (2)</li><li><a href="http://imouou.com/blog/8zhong-buju-gaishan-sheji/" title="8种布局方案改善你的设计">8种布局方案改善你的设计</a> (1)</li><li><a href="http://imouou.com/blog/white-space-3dayingyong/" title="white-space 的三大应用-宽度自适应">white-space 的三大应用-宽度自适应</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/page-align-center-vertical-align-middle-jquery-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>National Geographic Flash</title>
		<link>http://imouou.com/blog/national-geographic-flash/</link>
		<comments>http://imouou.com/blog/national-geographic-flash/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 01:22:45 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[关于设计]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[整站]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=407</guid>
		<description><![CDATA[
National Geographic &#8211; Ancient Treasure Ships
官方地址：http://ancienttreasureships.com/
这是前段时间跟3个同事一起完成的一个flash整站，整站都是用as2.0完成的。。现在链接的只是主文件，链接不了其它flash，想看完整版的可以打开官方观看。
Epic Voyage 是一个航海旅行的动画，重走当年海上丝绸之路。（丝绸之路是历史上横贯欧亚大陆的贸易交通线，促进了欧亚非各国和中国的友好往来。中国是丝绸的故乡，在经由这条路线进行的贸易中，中国输出的商品以丝绸最具代表性。）

每走到一个地方，都会有一个学习的弹窗，我用loadmovie来分割各种对话框，这样主文件就小很多，减少加载大小，但是糟糕的是，有的弹窗里面还要继续loadmovie，这样 load进来的movie 跟主场景的交互 就比较麻烦了……
这条丝绸之路 里面用的东西最多， 视频的运用，loadmovie的运用，问答题的小游戏，还有拼图的游戏……
Funfacts 里是一个相册类的，还好没有分页。。图片数据都是load外部图片，方便修改。
Exhibition Tour 是一个展馆的介绍，里面的小动画跟弹窗就还简单一些。。
它们之间点击后的转场让我也差点喷血，具体原因跟我里面的布局有关。。现在还有点瑕疵，不过总算通过了！算是我用flash的一个阶段总结吧。
相关阅读2006年做的片头flash (0)从O开始&#8211;flash (0)向左走向右走flash漫画版 (4)我的第一个flash故事&#8211;红头船 (0)]]></description>
			<content:encoded><![CDATA[<p><embed play="true" quality="high" width="520px" height="360px" src="http://ancienttreasureships.com/ats.swf" pluginspage="http://get.adobe.com/flashplayer/"></embed></p>
<p>National Geographic &#8211; Ancient Treasure Ships<br />
官方地址：http://ancienttreasureships.com/</p>
<p>这是前段时间跟3个同事一起完成的一个flash整站，整站都是用as2.0完成的。。现在链接的只是主文件，链接不了其它flash，想看完整版的可以打开官方观看。</p>
<p>Epic Voyage 是一个航海旅行的动画，重走当年海上丝绸之路。（丝绸之路是历史上横贯欧亚大陆的贸易交通线，促进了欧亚非各国和中国的友好往来。中国是丝绸的故乡，在经由这条路线进行的贸易中，中国输出的商品以丝绸最具代表性。）<br />
<span id="more-407"></span><br />
每走到一个地方，都会有一个学习的弹窗，我用loadmovie来分割各种对话框，这样主文件就小很多，减少加载大小，但是糟糕的是，有的弹窗里面还要继续loadmovie，这样 load进来的movie 跟主场景的交互 就比较麻烦了……</p>
<p>这条丝绸之路 里面用的东西最多， 视频的运用，loadmovie的运用，问答题的小游戏，还有拼图的游戏……</p>
<p>Funfacts 里是一个相册类的，还好没有分页。。图片数据都是load外部图片，方便修改。</p>
<p>Exhibition Tour 是一个展馆的介绍，里面的小动画跟弹窗就还简单一些。。</p>
<p>它们之间点击后的转场让我也差点喷血，具体原因跟我里面的布局有关。。现在还有点瑕疵，不过总算通过了！算是我用flash的一个阶段总结吧。</p>
<h4  class="related_post_title">相关阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/2006-piantou-flash/" title="2006年做的片头flash">2006年做的片头flash</a> (0)</li><li><a href="http://imouou.com/blog/congokaishi-flash/" title="从O开始&#8211;flash">从O开始&#8211;flash</a> (0)</li><li><a href="http://imouou.com/blog/xiangzuozou-xiangyouzou-flash-manhuaba/" title="向左走向右走flash漫画版">向左走向右走flash漫画版</a> (4)</li><li><a href="http://imouou.com/blog/diyige-flash-gushi-hongtouchuan/" title="我的第一个flash故事&#8211;红头船">我的第一个flash故事&#8211;红头船</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/national-geographic-flash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>谷歌flash跟踪统计Google Analytics Tracking for Adobe Flash</title>
		<link>http://imouou.com/blog/google-analytic-for-flash-tech/</link>
		<comments>http://imouou.com/blog/google-analytic-for-flash-tech/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 10:11:43 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[应用体验]]></category>
		<category><![CDATA[flash跟踪统计]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=399</guid>
		<description><![CDATA[刚刚开发完一个flash整站项目，客户要求要看到用户对flash操作的追踪统计~~囧 
http://code.google.com/intl/zh-CN/apis/analytics/docs/tracking/flashTrackingIntro.html
这是官方的使用文档。
我找不到例子，后来找到了教程，做了一个，没啥技术含量，应该会比看官方的省一些时间。目前flash的统计只支持as3，如果你是使用as2的话，就算了，放弃吧。
教程跟例子下载：
Google Analytics for flash教程
google 的跟踪统计 Flash应用例子
随机阅读细数工业和信息化部网站备案系统8种不人性化 (2)像蜗牛一样努力生活并幸福着 (6)white-space 的三大应用-宽度自适应 (0)用背景图片轻松实现文字显示隐藏 (2)华南植物园采花记 (0)]]></description>
			<content:encoded><![CDATA[<p>刚刚开发完一个flash整站项目，客户要求要看到用户对flash操作的追踪统计~~囧 </p>
<p>http://code.google.com/intl/zh-CN/apis/analytics/docs/tracking/flashTrackingIntro.html</p>
<p>这是官方的使用文档。</p>
<p>我找不到例子，后来找到了教程，做了一个，没啥技术含量，应该会比看官方的省一些时间。目前flash的统计只支持as3，如果你是使用as2的话，就算了，放弃吧。</p>
<p>教程跟例子下载：<br />
<a href='http://imouou.com/blog/wp-content/uploads/2010/07/Google-Analytics在Flash-cs3-tech.zip'>Google Analytics for flash教程</a><br />
<a href='http://imouou.com/blog/wp-content/uploads/2010/07/Flashtongji_Sample.zip'>google 的跟踪统计 Flash应用例子</a></p>
<h4  class="related_post_title">随机阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/xuexi-jquery-biji-1/" title="学习jquery笔记(1)">学习jquery笔记(1)</a> (2)</li><li><a href="http://imouou.com/blog/page-align-center-vertical-align-middle-jquery-example/" title="让页面绝对水平垂直居中&#8211;jquery例子">让页面绝对水平垂直居中&#8211;jquery例子</a> (0)</li><li><a href="http://imouou.com/blog/gundongtiao-tiyan/" title="滚动条的体验，左边还是右边好？">滚动条的体验，左边还是右边好？</a> (1)</li><li><a href="http://imouou.com/blog/select-shanglakuang-meihua/" title="你想过select上拉框跟美化吗">你想过select上拉框跟美化吗</a> (3)</li><li><a href="http://imouou.com/blog/browser-sandbox-jiaocheng/" title="比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程">比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程</a> (18)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/google-analytic-for-flash-tech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>学习jquery笔记(1)</title>
		<link>http://imouou.com/blog/xuexi-jquery-biji-1/</link>
		<comments>http://imouou.com/blog/xuexi-jquery-biji-1/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 10:45:07 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery笔记]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=397</guid>
		<description><![CDATA[最近忙着学习这学习那，很少更新文章了。。在制作的过程中还是遇到了不少以前没遇到过的新鲜的东西。。所以会尝试着把它慢慢整理出来。
下面是我在做jquery 遇到的一些怪异现象。。
jquery学习笔记
1. slideDown(),slideUP(),不支持 tr 的显示隐藏
2.eq() 获取某一个块 很重要
3.index() 获取当前第几个 返回一个数字
4.fadeOut(),fadeIn(), 淡入淡出，中间参数是 数字
5.delay() 延迟 中间是数字
6.removeClass(&#8220;&#8221;),addClass(&#8220;&#8221;) 添加删除 样式
7.return function() 返回一个函数
8. animate() 可以模仿已有任何一种动画，相当强大
9.font-weight:bold;会导致 fadeIn() 出现 文本 细体到粗体的变化。只在ie下面有。
随机阅读2006年做的片头flash (0)让页面绝对水平垂直居中&#8211;jquery例子 (0)loading条实现空间占用百分比的CSS (2)解决pjblog首页评论链接问题 (2)比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程 (18)]]></description>
			<content:encoded><![CDATA[<p>最近忙着学习这学习那，很少更新文章了。。在制作的过程中还是遇到了不少以前没遇到过的新鲜的东西。。所以会尝试着把它慢慢整理出来。</p>
<p>下面是我在做jquery 遇到的一些怪异现象。。</p>
<p>jquery学习笔记</p>
<p>1. slideDown(),slideUP(),不支持 tr 的显示隐藏<br />
2.eq() 获取某一个块 很重要<br />
3.index() 获取当前第几个 返回一个数字<br />
4.fadeOut(),fadeIn(), 淡入淡出，中间参数是 数字<br />
5.delay() 延迟 中间是数字<br />
6.removeClass(&#8220;&#8221;),addClass(&#8220;&#8221;) 添加删除 样式<br />
7.return function() 返回一个函数<br />
8. animate() 可以模仿已有任何一种动画，相当强大<br />
9.font-weight:bold;会导致 fadeIn() 出现 文本 细体到粗体的变化。只在ie下面有。</p>
<h4  class="related_post_title">随机阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/on-my-way-diyipian/" title="On My Way 第一篇">On My Way 第一篇</a> (0)</li><li><a href="http://imouou.com/blog/rushou-ixus95is-shipai/" title="入手IXUS95试拍记">入手IXUS95试拍记</a> (0)</li><li><a href="http://imouou.com/blog/langzixin/" title="浪子心">浪子心</a> (0)</li><li><a href="http://imouou.com/blog/jinian-zuihou-yige-guanggunjie/" title="纪念最后一个光棍节">纪念最后一个光棍节</a> (0)</li><li><a href="http://imouou.com/blog/ie6-ie7-background-suoxie-huiyouwenti/" title="ie6 ie7的background缩写也会出现问题">ie6 ie7的background缩写也会出现问题</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/xuexi-jquery-biji-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>li 不设高度可能导致ie6 ie7 新问题bug</title>
		<link>http://imouou.com/blog/li-gaodu-daozhi-xinwenti/</link>
		<comments>http://imouou.com/blog/li-gaodu-daozhi-xinwenti/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 12:24:16 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[li高度问题]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=391</guid>
		<description><![CDATA[
ie6 ie7 效果图 错误

firefox ie8效果图 正确
如上面的图一样，对比一下你会发现右边标题的地方 往下移了 10个像素左右，但是我并没有设置它的margin-top啊，这10个像素左右的位移从哪里来的？ 我发现只要是块元素才会这样，如果是a标签，或者内联元素，就不会了。那我把h3直接改成 inline 元素，应该就可以了啊，但还是没有解决这个问题。。。。h3自带的边距已经清零了。。最后，竟然是因为

没有给 li 设置高度~~ ，不知道算不算 ie6的一个新bug。。ie7也是同样的效果。。以后切记高度莫忘加啊。。不然出现什么怪异现象只会浪费时间。。还是看代码吧。。

&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62;
&#60;head&#62;
&#60;title&#62; li没设高度导致h3块元素上面10px左右的边距 o仔札记 http://imouou.com/blog/&#60;/title&#62;
&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62;
&#60;meta name=&#34;generator&#34; content=&#34;editplus&#34; /&#62;
&#60;meta name=&#34;author&#34; content=&#34;&#34; /&#62;
&#60;meta name=&#34;keywords&#34; content=&#34;&#34; /&#62;
&#60;meta name=&#34;description&#34; content=&#34;&#34; /&#62;
&#60;style&#62;
body,ul,li,h3,p {margin:0;padding:0;font-size:12px;}
.movie_list {height:auto !important;min-height:100px;padding-top:10px;}
.movie_list li {margin:3px 8px;}
.movie_info h3 {width:400px;height:30px;line-height:25px;overflow:hidden;margin:0;padding:0;}
.movie_list li a img{float:left;width:120px;height:146px;padding:2px;border:1px solid #ccc;margin-right:10px;}
.movie_info [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://imouou.com/blog/wp-content/uploads/2010/04/ligaoduwenti.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/ligaoduwenti.jpg" alt="li没设高度导致的问题" title="li没设高度导致的问题" width="353" height="167" class="alignnone size-full wp-image-389" /></a><br />
ie6 ie7 效果图 错误<br />
<a href="http://imouou.com/blog/wp-content/uploads/2010/04/ligaoduwenti2.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/ligaoduwenti2.jpg" alt="li没设高度导致的问题" title="li没设高度导致的问题" width="353" height="167" class="alignnone size-full wp-image-389" /></a><br />
firefox ie8效果图 正确</p>
<p>如上面的图一样，对比一下你会发现右边标题的地方 往下移了 10个像素左右，但是我并没有设置它的margin-top啊，这10个像素左右的位移从哪里来的？ 我发现只要是块元素才会这样，如果是a标签，或者内联元素，就不会了。那我把h3直接改成 inline 元素，应该就可以了啊，但还是没有解决这个问题。。。。h3自带的边距已经清零了。。最后，竟然是因为</p>
<p><span id="more-391"></span></p>
<p>没有给 li 设置高度~~ ，不知道算不算 ie6的一个新bug。。ie7也是同样的效果。。以后切记高度莫忘加啊。。不然出现什么怪异现象只会浪费时间。。还是看代码吧。。</p>
<pre class="brush: plain;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;title&gt; li没设高度导致h3块元素上面10px左右的边距 o仔札记 http://imouou.com/blog/&lt;/title&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;meta name=&quot;generator&quot; content=&quot;editplus&quot; /&gt;
&lt;meta name=&quot;author&quot; content=&quot;&quot; /&gt;
&lt;meta name=&quot;keywords&quot; content=&quot;&quot; /&gt;
&lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
&lt;style&gt;
body,ul,li,h3,p {margin:0;padding:0;font-size:12px;}
.movie_list {height:auto !important;min-height:100px;padding-top:10px;}
.movie_list li {margin:3px 8px;}
.movie_info h3 {width:400px;height:30px;line-height:25px;overflow:hidden;margin:0;padding:0;}
.movie_list li a img{float:left;width:120px;height:146px;padding:2px;border:1px solid #ccc;margin-right:10px;}
.movie_info {color:#666699}
.movie_info strong {color:#666666;font-weight:normal;}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;div class=&quot;movie_list&quot;&gt;
	&lt;ul&gt;
		&lt;li&gt;
			&lt;a href=&quot;#&quot; &gt;&lt;img src=&quot;#&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;
			&lt;div class=&quot;movie_info&quot;&gt;
			&lt;h3&gt;&lt;a href=&quot;&quot; title=&quot;&quot;&gt;这个标题在ie6 ie7下会有上面的边距&lt;/a&gt;&lt;/h3&gt;
			&lt;p&gt;&lt;strong&gt;影片主演：&lt;/strong&gt;&lt;/p&gt;
			&lt;p&gt;&lt;strong&gt;影片类型：&lt;/strong&gt;&lt;/p&gt;
			&lt;p&gt;&lt;strong&gt;发行地区：&lt;/strong&gt;&lt;/p&gt;
			&lt;p&gt;&lt;strong&gt;发行时间：&lt;/strong&gt;&lt;/p&gt;
			&lt;p&gt;&lt;strong&gt;影片备注：&lt;/strong&gt;&lt;/p&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>mark 说不会出现这样的情况，难道是我浏览器的问题？</p>
<p>再贴一个简单的例子 ,li不设定高度，旁边只要是块元素，像里面的h3就会往下移~~（bs：代码写得比较懒）</p>
<pre class="brush: plain;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;title&gt; new document &lt;/title&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;meta name=&quot;generator&quot; content=&quot;editplus&quot; /&gt;
&lt;meta name=&quot;author&quot; content=&quot;&quot; /&gt;
&lt;meta name=&quot;keywords&quot; content=&quot;&quot; /&gt;
&lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
&lt;link href=&quot;#&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
&lt;style&gt;
	body,ul,li,h3 {margin:0;padding:0;}
	a img{width:120px;height:140px;float:left;}
	div {width:200px;border:1px solid #ccc;}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;ul&gt;
&lt;li&gt;
	&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;#&quot;/&gt;&lt;/a&gt;
	&lt;div&gt;
		&lt;h3&gt;标题&lt;/h3&gt;
	&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong>原来真不是li的问题，是因为 div .movie_info 没有跟着往左 float 导致的。。当然设置 li高度也可以解决这个问题。而且这个高度是加比较好，如果你要设li的下边框，没有高度是不行的~~</strong> </p>
<h4  class="related_post_title">相关阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/ie6-ie7-background-suoxie-huiyouwenti/" title="ie6 ie7的background缩写也会出现问题">ie6 ie7的background缩写也会出现问题</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/li-gaodu-daozhi-xinwenti/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>loading条实现空间占用百分比的CSS</title>
		<link>http://imouou.com/blog/kongjian-zhanyong-baifenbi-loading-bar-star/</link>
		<comments>http://imouou.com/blog/kongjian-zhanyong-baifenbi-loading-bar-star/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 02:21:20 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[loading进度条]]></category>
		<category><![CDATA[占用百分比]]></category>
		<category><![CDATA[星级]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=380</guid>
		<description><![CDATA[
loading空间占用百分比 CSS制作，这个有人也会用于页面加载时候使用。

比较常用于推荐，等级，满意度调查之类的


&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62;
&#60;head&#62;
&#60;title&#62; o仔札记--http://imouou.com/blog/&#60;/title&#62;
&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62;
&#60;meta name=&#34;generator&#34; content=&#34;editplus&#34; /&#62;
&#60;style&#62;
	.bar {padding:2px;width:100px;height:8px;border:1px solid #cccccc;}
	.loading {background:#999999;height:8px;width:30%}
&#60;/style&#62;
&#60;/head&#62;

&#60;body&#62;
	&#60;!--进度条空间占用百分比--&#62;
	&#60;div class=&#34;bar&#34;&#62;
		&#60;div class=&#34;loading&#34;&#62;&#60;/div&#62;
	&#60;/div&#62;
&#60;/body&#62;
&#60;/html&#62;

loading 百分百条的实现：我们只要获得目前下载的页面大小，除以页面的文件大小，乘以100就可以得到页面的loading进度了，一般页面都是比较小，所以用到也比较少，常用于flash的加载，网页上面的应用，更多的是占用百分比，像QQ的相册空间，给你16Ｍ大小，你目前的用了多少，那只要得到这个比例，控制好 loading的 width 等于百分几，就可以轻松实现了。
上面是一种方法，还有一种比较蠢的方式，就是把百分比切成10块，然后每一个css就控制它百分之10，如果精确到百分之1，那就有得切了，呵呵，所以这种方法一般用来 做等级，推荐度~~

&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62;
&#60;head&#62;
&#60;title&#62; o仔札记--http://imouou.com/blog/&#60;/title&#62;
&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62;
&#60;meta name=&#34;generator&#34; content=&#34;editplus&#34; /&#62;
&#60;style&#62;
	#star {background:url(images/star.jpg) no-repeat;height:16px;width:70px;}
	.star1 {background:url(images/star.jpg) 0 -18px no-repeat;height:16px;width:70px;}
	.star2 {background:url(images/star.jpg) 0 -34px no-repeat;height:16px;width:70px;}
	.star3 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://imouou.com/blog/wp-content/uploads/2010/04/loading.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/loading.jpg" alt="loading空间占用百分比" title="loading空间占用百分比" width="157" height="54" class="alignnone size-full wp-image-381" /></a></p>
<p>loading空间占用百分比 CSS制作，这个有人也会用于页面加载时候使用。</p>
<p><a href="http://imouou.com/blog/wp-content/uploads/2010/04/star.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/star.jpg" alt="推荐星级百分比" title="推荐星级百分比" width="132" height="43" class="alignnone size-full wp-image-382" /></a><br />
比较常用于推荐，等级，满意度调查之类的<br />
<span id="more-380"></span></p>
<pre class="brush: plain;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;title&gt; o仔札记--http://imouou.com/blog/&lt;/title&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;meta name=&quot;generator&quot; content=&quot;editplus&quot; /&gt;
&lt;style&gt;
	.bar {padding:2px;width:100px;height:8px;border:1px solid #cccccc;}
	.loading {background:#999999;height:8px;width:30%}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
	&lt;!--进度条空间占用百分比--&gt;
	&lt;div class=&quot;bar&quot;&gt;
		&lt;div class=&quot;loading&quot;&gt;&lt;/div&gt;
	&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>loading 百分百条的实现：我们只要获得目前下载的页面大小，除以页面的文件大小，乘以100就可以得到页面的loading进度了，一般页面都是比较小，所以用到也比较少，常用于flash的加载，网页上面的应用，更多的是占用百分比，像QQ的相册空间，给你16Ｍ大小，你目前的用了多少，那只要得到这个比例，控制好 loading的 width 等于百分几，就可以轻松实现了。</p>
<p>上面是一种方法，还有一种比较蠢的方式，就是把百分比切成10块，然后每一个css就控制它百分之10，如果精确到百分之1，那就有得切了，呵呵，所以这种方法一般用来 做等级，推荐度~~</p>
<pre class="brush: plain;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;title&gt; o仔札记--http://imouou.com/blog/&lt;/title&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;meta name=&quot;generator&quot; content=&quot;editplus&quot; /&gt;
&lt;style&gt;
	#star {background:url(images/star.jpg) no-repeat;height:16px;width:70px;}
	.star1 {background:url(images/star.jpg) 0 -18px no-repeat;height:16px;width:70px;}
	.star2 {background:url(images/star.jpg) 0 -34px no-repeat;height:16px;width:70px;}
	.star3 {background:url(images/star.jpg) 0 -52px no-repeat;height:16px;width:70px;}
	.star4 {background:url(images/star.jpg) 0 -70px no-repeat;height:16px;width:70px;}
	.star5 {background:url(images/star.jpg) 0 -85px no-repeat;height:16px;width:70px;}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
	&lt;!--五角星等级--&gt;
	&lt;div id=&quot;star&quot; class=&quot;star2&quot;&gt;
	&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>看代码，我们只需要控制 id star 的class样式，star + i  就好了。或者你还有更好的方法~~</p>
<p> 本文用到的例子下载  点击这里 <a href='http://imouou.com/blog/wp-content/uploads/2010/04/loadingstar.zip'>空间占用百分比，星级例子</a></p>
<h4  class="related_post_title">随机阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/mozilla-firefox36-tiyan/" title="好快的火狐狸firefox 3.6 简单体验">好快的火狐狸firefox 3.6 简单体验</a> (0)</li><li><a href="http://imouou.com/blog/404cuowu-yemian-tiyan/" title="404错误页面体验">404错误页面体验</a> (2)</li><li><a href="http://imouou.com/blog/diyige-flash-gushi-hongtouchuan/" title="我的第一个flash故事&#8211;红头船">我的第一个flash故事&#8211;红头船</a> (0)</li><li><a href="http://imouou.com/blog/beian-xitong-8zhong-burenxinghua/" title="细数工业和信息化部网站备案系统8种不人性化">细数工业和信息化部网站备案系统8种不人性化</a> (2)</li><li><a href="http://imouou.com/blog/browser-sandbox-jiaocheng/" title="比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程">比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程</a> (18)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/kongjian-zhanyong-baifenbi-loading-bar-star/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>滚动条的体验，左边还是右边好？</title>
		<link>http://imouou.com/blog/gundongtiao-tiyan/</link>
		<comments>http://imouou.com/blog/gundongtiao-tiyan/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 12:18:13 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[应用体验]]></category>
		<category><![CDATA[体验]]></category>
		<category><![CDATA[左边滚动条]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=375</guid>
		<description><![CDATA[
平常我们习惯了滚动条在右边，如果把滚动条突然放在左边，相信用户一定不会习惯的。。但是假如你的导航菜单是在左边，你的内容又很长需要滚动，那这个时候左边的滚动条就可以派上用场了。用户只需要移动很小的距离就可以拉动滚动条。
假如你的分辨率是1366*768，菜单在左栏，宽度200px，那么如果你鼠标移到滚动条位置拖动就得移动 1166个像素，而在左边的话，你只需要移动200个像素不到。。我们很多内容都在中间，也就是200px后，那鼠标经常活动的位置也是这么一小块地方，你说是从左边近还是右边近呢？

也许你会说，我不用拖动滚动条的，我用鼠标中间的滚轮滚动就可以实现了，干嘛要去拉呢？是的，对于用鼠标的用户来讲，其实并没有多大必要，但对于笔记本用户，他没有用鼠标呢？他需要在中间的鼠标移动区域划好几下。。特别是在现在宽屏比较普遍的时候，更是需要我们多去注意一下用户的体验。。屏幕越大，被我们忽略的东西就会越多，相信这个小小的改变会对让你的用户对你的网站更有依赖性的。
怎么让滚动条在左边？其实很简单，只需要一个属性就够了。。

&#60;html dir=&#34;rtl&#34;&#62;

把下面的例子复制看看

&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; dir=&#34;rtl&#34;&#62;
 &#60;head&#62;
  &#60;title&#62; 滚动条的体验，左边还是右边？ &#60;/title&#62;
  &#60;meta name=&#34;generator&#34; content=&#34;editplus&#34; /&#62;
  &#60;meta name=&#34;author&#34; content=&#34;o仔札记 imouou.com&#34; /&#62;
 &#60;/head&#62;

 &#60;body&#62;
&#60;h1&#62;看下你的滚动条是不是在左边了？&#60;/h1&#62;
  &#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;&#60;br/&#62;
 &#60;/body&#62;
&#60;/html&#62;

相关阅读比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程 (18)win7 VS 叉P（XP）时尚与怀旧 (0)好快的火狐狸firefox 3.6 简单体验 (0)你捡到便宜了吗？ (1)404错误页面体验 (2)]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/gundongtiao.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/gundongtiao.jpg" alt="找礼物上口袋收藏网95is.com" title="滚动条在左边的情况" width="500" height="215" class="alignnone size-full wp-image-374" /></a></p>
<p>平常我们习惯了滚动条在右边，如果把滚动条突然放在左边，相信用户一定不会习惯的。。但是假如你的导航菜单是在左边，你的内容又很长需要滚动，那这个时候左边的滚动条就可以派上用场了。用户只需要移动很小的距离就可以拉动滚动条。</p>
<p>假如你的分辨率是1366*768，菜单在左栏，宽度200px，那么如果你鼠标移到滚动条位置拖动就得移动 1166个像素，而在左边的话，你只需要移动200个像素不到。。我们很多内容都在中间，也就是200px后，那鼠标经常活动的位置也是这么一小块地方，你说是从左边近还是右边近呢？</p>
<p><span id="more-375"></span></p>
<p>也许你会说，我不用拖动滚动条的，我用鼠标中间的滚轮滚动就可以实现了，干嘛要去拉呢？是的，对于用鼠标的用户来讲，其实并没有多大必要，但对于笔记本用户，他没有用鼠标呢？他需要在中间的鼠标移动区域划好几下。。特别是在现在宽屏比较普遍的时候，更是需要我们多去注意一下用户的体验。。屏幕越大，被我们忽略的东西就会越多，相信这个小小的改变会对让你的用户对你的网站更有依赖性的。</p>
<p>怎么让滚动条在左边？其实很简单，只需要一个属性就够了。。</p>
<pre class="brush: plain;">
&lt;html dir=&quot;rtl&quot;&gt;
</pre>
<p>把下面的例子复制看看</p>
<pre class="brush: plain;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; dir=&quot;rtl&quot;&gt;
 &lt;head&gt;
  &lt;title&gt; 滚动条的体验，左边还是右边？ &lt;/title&gt;
  &lt;meta name=&quot;generator&quot; content=&quot;editplus&quot; /&gt;
  &lt;meta name=&quot;author&quot; content=&quot;o仔札记 imouou.com&quot; /&gt;
 &lt;/head&gt;

 &lt;body&gt;
&lt;h1&gt;看下你的滚动条是不是在左边了？&lt;/h1&gt;
  &lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;
 &lt;/body&gt;
&lt;/html&gt;
</pre>
<h4  class="related_post_title">相关阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/browser-sandbox-jiaocheng/" title="比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程">比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程</a> (18)</li><li><a href="http://imouou.com/blog/win7-vs-xp/" title="win7 VS 叉P（XP）时尚与怀旧">win7 VS 叉P（XP）时尚与怀旧</a> (0)</li><li><a href="http://imouou.com/blog/mozilla-firefox36-tiyan/" title="好快的火狐狸firefox 3.6 简单体验">好快的火狐狸firefox 3.6 简单体验</a> (0)</li><li><a href="http://imouou.com/blog/ni-jiandao-pianyi-le-ma/" title="你捡到便宜了吗？">你捡到便宜了吗？</a> (1)</li><li><a href="http://imouou.com/blog/404cuowu-yemian-tiyan/" title="404错误页面体验">404错误页面体验</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/gundongtiao-tiyan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程</title>
		<link>http://imouou.com/blog/browser-sandbox-jiaocheng/</link>
		<comments>http://imouou.com/blog/browser-sandbox-jiaocheng/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 16:47:06 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[应用体验]]></category>
		<category><![CDATA[Sandbox]]></category>
		<category><![CDATA[体验]]></category>
		<category><![CDATA[兼容]]></category>
		<category><![CDATA[教程]]></category>
		<category><![CDATA[测试]]></category>
		<category><![CDATA[浏览器共存]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=354</guid>
		<description><![CDATA[
还没写过这么长的标题，browser sandbox全名叫Xenocode Browser Sandbox，看到这个标题有点兴奋，当我今天在搜手机模拟器测试的时候，无意中发现了这么一个东西，当你搜索 Xenocode Browser Sandbox 的时候，你就会发现有很多关于这个软件的介绍，但总感觉只是写手 用来宣传的广告语，不知道是不是真的有用，是不是他们有钱收的。。不过可以肯定的是，我写这篇文章我是没钱收。哈哈 ，好了，废话不多说了，进入正题吧。
以前我会想，如果一个系统可以同时装ie6, ie7, ie8，firefox2, firefox3, firefox3.5, safari3, safari4, chrome , opera10, opera9,那就好了，虽然现在也有很多方法来解决浏览器的兼容性测试，但是就我目前的了解情况，这样得装好多个虚拟机来测试，这样是一点都不方便，像ie6 ie7 ie8 虽然有 ietest 还有其它工具来帮助测试，可是偶尔还有些差异，明明ietest没有问题，在别人的ie6 或者ie8下，却出现错乱，当然这个不能全怨浏览器，自己本身的代码写法可能也有问题，写得好的xhtml是很少出现兼容问题的，因为他们了解浏览器的各个bug，ie三个解决了，firefox呢？firefox几个版本怎么共存？用绿化版的？ok，opera呢？safari呢？chrome呢？从官方下载的chrome目前采用自动更新的，应该就是防止出现多版本共存的情况的。我以前试过最多装的测试浏览器有7个，真的已经挺多了，没想到还可以装得更多，现在这种想法终于不是空想了，是的，真的可以，上面提到的浏览器通通可以兼容，通通可以在一个系统打开而不影响目前的系统环境。
东西真的是个好东西，对于我们在web前端做页面构建重构这一块工作的人来说，但是你会发现打开官网，就只有几个浏览器在那里，也没有教你怎么做，啥文档也没有，我看了大半天，好不容易把安装程序弄下来，差点没搞懂怎么用，所以才想写篇文章写给跟我一样迷茫的页面构建者，希望能有点帮助。欢迎拍砖反馈使用效果。

打开官方地址：http://spoon.net/browsers/  
我发现官方 含谷歌广告打开缓慢，因为以后可能每天都得连线打开这个地址，打开缓慢会很不爽，但我们也要体谅一下人家好不容易整的一个赚钱方式，不用你捐助还想咋样啊 ？ 
如果不爽上面的带广告的页面，也可以使用我下面的在线地址，没广告的在线使用地址：http://imouou.com/allbrowser/ ( 除了去除广告还删除了很多不必用的代码，加快了打开速度 )
你也可以下载本地版的 http://imouou.com/allbrowser/allbrowser.zip 
这些打开页面都是需要连接到官方取数据的，所以如果你不能上网的话，你还是别整了，我也想搞个离线版的，这样我就不怕网络打不开的时候不能用了。搞了半天，没能搞定。。如果有哪个高手搞成了离线版，记得分享一下啊。。
具体使用步骤：
   1. 打开在线的使用地址：http://imouou.com/allbrowser/ ( 去除广告快速版，没安装插件前暂时点链接浏览器是没有反应的 )
   2. 点击下载安装spoon-plugin插件（需要重启所有在用的浏览器）
   3. 然后再打开http://imouou.com/allbrowser/  点击上面的浏览器就可以在线安装各种浏览器，会有进度条提示你下载结束，然后就啥都没有了，也没有告诉你接下来要怎么去做。。后来才知道要用第4步
   [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/BrowserSandboxPage.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/BrowserSandboxPage.jpg" alt="浏览器多版本共存测试工具Xenocode Browser Sandbox"  title="浏览器多版本共存测试工具Xenocode Browser Sandbox--点击看大图" width="500" height="537" class="alignnone size-full wp-image-358" /></a></p>
<p>还没写过这么长的标题，browser sandbox全名叫Xenocode Browser Sandbox，看到这个标题有点兴奋，当我今天在搜手机模拟器测试的时候，无意中发现了这么一个东西，当你搜索 Xenocode Browser Sandbox 的时候，你就会发现有很多关于这个软件的介绍，但总感觉只是写手 用来宣传的广告语，不知道是不是真的有用，是不是他们有钱收的。。不过可以肯定的是，我写这篇文章我是没钱收。哈哈 ，好了，废话不多说了，进入正题吧。</p>
<p>以前我会想，如果一个系统可以同时装ie6, ie7, ie8，firefox2, firefox3, firefox3.5, safari3, safari4, chrome , opera10, opera9,那就好了，虽然现在也有很多方法来解决浏览器的兼容性测试，但是就我目前的了解情况，这样得装好多个虚拟机来测试，这样是一点都不方便，像ie6 ie7 ie8 虽然有 ietest 还有其它工具来帮助测试，可是偶尔还有些差异，明明ietest没有问题，在别人的ie6 或者ie8下，却出现错乱，当然这个不能全怨浏览器，自己本身的代码写法可能也有问题，写得好的xhtml是很少出现兼容问题的，因为他们了解浏览器的各个bug，ie三个解决了，firefox呢？firefox几个版本怎么共存？用绿化版的？ok，opera呢？safari呢？chrome呢？从官方下载的chrome目前采用自动更新的，应该就是防止出现多版本共存的情况的。我以前试过最多装的测试浏览器有7个，真的已经挺多了，没想到还可以装得更多，现在这种想法终于不是空想了，是的，真的可以，上面提到的浏览器通通可以兼容，通通可以在一个系统打开而不影响目前的系统环境。</p>
<p>东西真的是个好东西，对于我们在web前端做页面构建重构这一块工作的人来说，但是你会发现打开官网，就只有几个浏览器在那里，也没有教你怎么做，啥文档也没有，我看了大半天，好不容易把安装程序弄下来，差点没搞懂怎么用，所以才想写篇文章写给跟我一样迷茫的页面构建者，希望能有点帮助。欢迎拍砖反馈使用效果。</p>
<p><span id="more-354"></span></p>
<p>打开官方地址：http://spoon.net/browsers/  </p>
<p>我发现官方 含谷歌广告打开缓慢，因为以后可能每天都得连线打开这个地址，打开缓慢会很不爽，但我们也要体谅一下人家好不容易整的一个赚钱方式，不用你捐助还想咋样啊 ？ </p>
<p>如果不爽上面的带广告的页面，也可以使用我下面的在线地址，没广告的在线使用地址：<a href="http://imouou.com/allbrowser/" title="">http://imouou.com/allbrowser/</a> ( 除了去除广告还删除了很多不必用的代码，加快了打开速度 )</p>
<p>你也可以下载本地版的 <a href="http://imouou.com/allbrowser/allbrowser.zip">http://imouou.com/allbrowser/allbrowser.zip</a> </p>
<p>这些打开页面都是需要连接到官方取数据的，所以如果你不能上网的话，你还是别整了，我也想搞个离线版的，这样我就不怕网络打不开的时候不能用了。搞了半天，没能搞定。。如果有哪个高手搞成了离线版，记得分享一下啊。。</p>
<p><strong>具体使用步骤：</strong></p>
<p>   1. 打开在线的使用地址：<a href="http://imouou.com/allbrowser/" title="去除广告快速版">http://imouou.com/allbrowser/</a> ( 去除广告快速版，没安装插件前暂时点链接浏览器是没有反应的 )<br />
   2. 点击下载安装<a href="http://start-o.spoon.net/layers/setup/3.19.0.5/spoon-plugin-dotnet.exe" title="点击安装插件，需要重新启动浏览器">spoon-plugin插件</a>（需要重启所有在用的浏览器）<br />
   3. 然后再打开<a href="http://imouou.com/allbrowser/" title="去除广告快速版">http://imouou.com/allbrowser/</a>  点击上面的浏览器就可以在线安装各种浏览器，会有进度条提示你下载结束，然后就啥都没有了，也没有告诉你接下来要怎么去做。。后来才知道要用第4步<br />
   4. 安装好以后，就可以通过上面的使用地址<a href="http://imouou.com/allbrowser/" title="去除广告快速版">http://imouou.com/allbrowser/</a> 来启动浏览器了。你也可以下载本地版的 <a href="http://imouou.com/allbrowser/allbrowser.zip">http://imouou.com/allbrowser/allbrowser.zip</a> 来启动浏览器</p>
<p>这个插件据说是利用了虚拟机的方式，达到浏览器多版本共存，确实很新颖，也很吸引我，在适用过程中，发现单个浏览器的启动速度有点慢，可能由于在线获取的关系吧，如果想同时打开所有的浏览器，很慢，要先关掉一些才行。。反正对我来说非常好用，我只需要测试好几个主要的浏览器没有问题，然后再一个一个打开测试最终效果，有问题的单独解决。。哈哈，它最大的优点是跟浏览器的效果一样，不是模仿出来的效果，目前还没有发现不同的地方。。欢迎拍砖啊。。</p>
<p>详细使用教程：<a href="http://imouou.com/blog/browser-sandbox-jiaocheng/" title="页面构建多个浏览器多版本共存适用教程">http://imouou.com/blog/browser-sandbox-jiaocheng/</a></p>
<p>下面我用我写的一个代码作品，来测试各个浏览器的兼容性，原先已经在ie6绿色版，ie7，ie8，ietest，firefox3.6，safari4，opera10，chrome等浏览器测过，可以宽度自适应兼容，以下是在Browser Sandbox激活的浏览器测试的截图，看图吧，点击图片可以看大图。</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_ie8.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_ie8.jpg" alt="该作品在ie8浏览器测试效果图--点击看大图 " title="该作品在ie8浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在ie8浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_ie7.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_ie7.jpg" alt="该作品在ie7浏览器测试效果图--点击看大图 " title="该作品在ie7浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在ie7浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_ie6.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_ie6.jpg" alt="该作品在ie6浏览器测试效果图--点击看大图 " title="该作品在ie6浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在ie6浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_firefox35.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_firefox35.jpg" alt="该作品在firefox35浏览器测试效果图--点击看大图 " title="该作品在firefox3.5浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在firefox3.5浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_firefox3.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_firefox3.jpg" alt="该作品在firefox3浏览器测试效果图--点击看大图 " title="该作品在firefox3浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在firefox3浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_firefox2.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_firefox2.jpg" alt="该作品在firefox2浏览器测试效果图--点击看大图 " title="该作品在firefox2浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在firefox2浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_safari4.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_safari4.jpg" alt="该作品在safari4浏览器测试效果图--点击看大图 " title="该作品在safari4浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在safari4浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_safari3.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_safari3.jpg" alt="该作品在safari3浏览器测试效果图--点击看大图 " title="该作品在safari3浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在safari3浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_chrome.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_chrome.jpg" alt="该作品在chrome浏览器测试效果图--点击看大图 " title="该作品在chrome浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在chrome浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_opera10.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_opera10.jpg" alt="该作品在opera10浏览器测试效果图--点击看大图 " title="该作品在opera10浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在opera10浏览器测试效果图</p>
<p><a target="_blank" href="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_opera9.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/qgroup_opera9.jpg" alt="该作品在opera9浏览器测试效果图--点击看大图 " title="该作品在opera9浏览器测试效果图--点击看大图 " width="500" height="270" class="alignnone size-full wp-image-358" /></a><br />
在opera9浏览器测试效果图</p>
<h4  class="related_post_title">相关阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/gundongtiao-tiyan/" title="滚动条的体验，左边还是右边好？">滚动条的体验，左边还是右边好？</a> (1)</li><li><a href="http://imouou.com/blog/win7-vs-xp/" title="win7 VS 叉P（XP）时尚与怀旧">win7 VS 叉P（XP）时尚与怀旧</a> (0)</li><li><a href="http://imouou.com/blog/mozilla-firefox36-tiyan/" title="好快的火狐狸firefox 3.6 简单体验">好快的火狐狸firefox 3.6 简单体验</a> (0)</li><li><a href="http://imouou.com/blog/ni-jiandao-pianyi-le-ma/" title="你捡到便宜了吗？">你捡到便宜了吗？</a> (1)</li><li><a href="http://imouou.com/blog/404cuowu-yemian-tiyan/" title="404错误页面体验">404错误页面体验</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/browser-sandbox-jiaocheng/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>win7 VS 叉P（XP）时尚与怀旧</title>
		<link>http://imouou.com/blog/win7-vs-xp/</link>
		<comments>http://imouou.com/blog/win7-vs-xp/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 05:31:12 +0000</pubDate>
		<dc:creator>o仔</dc:creator>
				<category><![CDATA[应用体验]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[体验]]></category>

		<guid isPermaLink="false">http://imouou.com/blog/?p=352</guid>
		<description><![CDATA[
前阵子公司配了个笔记本，感动啊，咱也算有本一族了。。哈哈，现在的笔记本都装上了win7.。win7刚出来那段时间可谓是家喻户晓（不得不佩服微软的炒作能力）踩着vista的肩膀往上走，周围几乎做it的朋友都在谈论着win7，个个都想装一个试试。。朋友对它的评价都不错，我的好奇心也很强，现在终于有机会试试这个新系统了。

首先是启动速度，winxp也好，win2000也罢，启动速度都超慢，有点怀念win98了。。win7的启动速度属于中等水平吧，比xp快，但也比98慢。。
第二个接触到的自然是界面了，这个在win7的启动中就给你很多超炫的想象，进入桌面

界面明显比xp酷炫得多了。。地下的工具栏还是一样的布局，不过有进行了一个分类。。像左边的IE，你打开多个窗口，都只显示一个，然后是窗口，同样多个窗口也只有一个显示，移上去会显示多个缩略图，节省了窗口栏的资源，也增加了美观跟体验度。右栏时间那一块，除了显示几个固定的，缩略的小图标也都隐藏显示。。这样别人就不知道你工作时间在聊Q了，哈哈，同样对于你自己的重要信息可能也就会错过了。。有利必有弊嘛。。
其它的体验如果自己喜欢的就去装一个吧，xp模拟win7只能模拟那个形似，还不是非常似。还是说说我自己用了之后的一个体验吧。
我本身是一个web设计兼前端开发这一块的工作者。对于我的工作来说，装一个开发环境是必须的，在装的过程中，我发现win7的兼容性并不是真的很好，在xp下很多绿化后能运行的软件，在win7是打不开的，搜狗输入法最新版的也不能装，QQ2010的最新版也不能用……装成正式版才行。这个兼容性能不知道是不是对于vista来比较的。。当然对于主流的很多东西，win7还是可以兼容得到的，但是可能需要你更新你的程序。我安装的是一个win7家庭版的，好像也不能对它要求太高了。。对于开发来说，还是不太适合。
顺便说一下我的联想笔记本sl410K。。这一台用了半个月后，出现没有声音的现象，另外还会出现屏幕没法调亮，重装声卡，显卡都不能解决。。后来重装win7才可以。。不知道是win7不兼容还是怎样。后来还是把正版的win7，整成免激活的xp了，哈哈
总之一句话，不适合我。。用了半个月后，还是重新装成了熟悉的xp，像认识好多年的朋友一样，她知道我要做些什么，我也知道她不能做什么，这么多年的默契不是那么容易就可以丢掉的。。
相关阅读滚动条的体验，左边还是右边好？ (1)比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程 (18)好快的火狐狸firefox 3.6 简单体验 (0)你捡到便宜了吗？ (1)404错误页面体验 (2)]]></description>
			<content:encoded><![CDATA[<p><a href="http://imouou.com/blog/wp-content/uploads/2010/04/win7vsxp.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/win7vsxp.jpg" alt="" title="win7xp体验" width="500" height="200" class="alignnone size-full wp-image-350" /></a></p>
<p>前阵子公司配了个笔记本，感动啊，咱也算有本一族了。。哈哈，现在的笔记本都装上了win7.。win7刚出来那段时间可谓是家喻户晓（不得不佩服微软的炒作能力）踩着vista的肩膀往上走，周围几乎做it的朋友都在谈论着win7，个个都想装一个试试。。朋友对它的评价都不错，我的好奇心也很强，现在终于有机会试试这个新系统了。</p>
<p><span id="more-352"></span></p>
<p>首先是启动速度，winxp也好，win2000也罢，启动速度都超慢，有点怀念win98了。。win7的启动速度属于中等水平吧，比xp快，但也比98慢。。<br />
第二个接触到的自然是界面了，这个在win7的启动中就给你很多超炫的想象，进入桌面</p>
<p><a href="http://imouou.com/blog/wp-content/uploads/2010/04/win7.jpg"><img src="http://imouou.com/blog/wp-content/uploads/2010/04/win7.jpg" alt="" title="win7 默认桌面" width="500" height="300" class="alignnone size-full wp-image-351" /></a></p>
<p>界面明显比xp酷炫得多了。。地下的工具栏还是一样的布局，不过有进行了一个分类。。像左边的IE，你打开多个窗口，都只显示一个，然后是窗口，同样多个窗口也只有一个显示，移上去会显示多个缩略图，节省了窗口栏的资源，也增加了美观跟体验度。右栏时间那一块，除了显示几个固定的，缩略的小图标也都隐藏显示。。这样别人就不知道你工作时间在聊Q了，哈哈，同样对于你自己的重要信息可能也就会错过了。。有利必有弊嘛。。</p>
<p>其它的体验如果自己喜欢的就去装一个吧，xp模拟win7只能模拟那个形似，还不是非常似。还是说说我自己用了之后的一个体验吧。</p>
<p>我本身是一个web设计兼前端开发这一块的工作者。对于我的工作来说，装一个开发环境是必须的，在装的过程中，我发现win7的兼容性并不是真的很好，在xp下很多绿化后能运行的软件，在win7是打不开的，搜狗输入法最新版的也不能装，QQ2010的最新版也不能用……装成正式版才行。这个兼容性能不知道是不是对于vista来比较的。。当然对于主流的很多东西，win7还是可以兼容得到的，但是可能需要你更新你的程序。我安装的是一个win7家庭版的，好像也不能对它要求太高了。。对于开发来说，还是不太适合。</p>
<p>顺便说一下我的联想笔记本sl410K。。这一台用了半个月后，出现没有声音的现象，另外还会出现屏幕没法调亮，重装声卡，显卡都不能解决。。后来重装win7才可以。。不知道是win7不兼容还是怎样。后来还是把正版的win7，整成免激活的xp了，哈哈</p>
<p>总之一句话，不适合我。。用了半个月后，还是重新装成了熟悉的xp，像认识好多年的朋友一样，她知道我要做些什么，我也知道她不能做什么，这么多年的默契不是那么容易就可以丢掉的。。</p>
<h4  class="related_post_title">相关阅读</h4><ul class="related_post"><li><a href="http://imouou.com/blog/gundongtiao-tiyan/" title="滚动条的体验，左边还是右边好？">滚动条的体验，左边还是右边好？</a> (1)</li><li><a href="http://imouou.com/blog/browser-sandbox-jiaocheng/" title="比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程">比ietest 更好的浏览器调试工具 Browser Sandbox 使用教程</a> (18)</li><li><a href="http://imouou.com/blog/mozilla-firefox36-tiyan/" title="好快的火狐狸firefox 3.6 简单体验">好快的火狐狸firefox 3.6 简单体验</a> (0)</li><li><a href="http://imouou.com/blog/ni-jiandao-pianyi-le-ma/" title="你捡到便宜了吗？">你捡到便宜了吗？</a> (1)</li><li><a href="http://imouou.com/blog/404cuowu-yemian-tiyan/" title="404错误页面体验">404错误页面体验</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://imouou.com/blog/win7-vs-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
