<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[PuterJam's Blog]]></title>
<link>http://www.pjhome.net/</link>
<description><![CDATA[关注互联网~ 关注前端技术~]]></description>
<language>zh-cn</language>
<copyright><![CDATA[Copyright 2005 PBlog3 v2.8]]></copyright>
<webMaster><![CDATA[puterjam@gmail.com(puterjam)]]></webMaster>
<generator>PBlog2 v2.4</generator> 
<image>
	<title>PuterJam&#39;s Blog</title>
	<url>http://www.pjhome.net/images/logos.gif</url>
	<link>http://www.pjhome.net/</link>
	<description>PuterJam&#39;s Blog</description>
</image>

			<item>
			<link>http://www.pjhome.net/article/Javascript/firefox_overflow_bug.htm</link>
			<title><![CDATA[firefox 滚动残影的bug]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Javascript]]></category>
			<pubDate>Sat,04 Jul 2009 01:45:30 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=1004</guid>
		<description><![CDATA[<p>不知道大家有没有遇到过，当我们设置了一个固定的浮动层后。在firefox下滚动会出现一些残影的情况？ 总觉得页面的表现很不流畅。而且这个情况，只出现在 firefox for win的版本（mac版的firefox不会出现）</p>
<p>&nbsp;</p>
<p>先看一下下面的视频（由于截屏软件录不了这个效果，只好拿手机录了）。</p>
<p><embed height="400" width="480" align="middle" src="http://player.youku.com/player.php/sid/XMTAyOTM0NjI0/v.swf" quality="high" allowscriptaccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
<p>在视频里，我们很清楚得看到，白色的浮动层被快速的滚动切割成两半。</p>
<p>&nbsp;</p>
<p><strong>重现的代码片段：</strong></p>
<p><span style="color: rgb(153, 204, 0);">&lt;!--带 overflow-x:hidden 或则 overflow-y:hidden 的长条--&gt;</span><span style="color: rgb(153, 153, 153);"><br />
&nbsp;&nbsp;&nbsp; <span style="color: rgb(51, 102, 255);">&lt;div</span> style=&quot;width:300px;height:3000px;border:1px solid #333;background:#ccc url(http://www.iecool.cn/uppic/2007-3-27/206499575_2.jpg);<span style="color: rgb(255, 0, 0);"><strong>overflow-x:hidden</strong></span>&quot;<span style="color: rgb(51, 102, 255);">&gt;&lt;/div&gt;</span><br />
<br />
&nbsp;&nbsp;&nbsp; <span style="color: rgb(153, 204, 0);">&lt;!--带 button 的 position:fix Div--&gt;</span><br />
&nbsp;&nbsp;&nbsp; <span style="color: rgb(51, 102, 255);">&lt;div </span>style=&quot;<strong><span style="color: rgb(255, 0, 0);">position:fixed;</span></strong>width:200px;height:100px; left:200px;top:200px;border:1px solid #000;background:#fff;padding:6px&quot;<span style="color: rgb(51, 102, 255);">&gt;</span><br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(153, 204, 0);">&lt;!--一个 button--&gt;</span><br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(255, 0, 0);"><strong>&lt;button id=&quot;button1&quot;&gt;我是button&lt;/button&gt;</strong></span><br />
<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(153, 204, 0);">&lt;!--一些开关--&gt;</span><span style="color: rgb(51, 102, 255);">&lt;br/&gt;&lt;br/&gt;</span><br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(51, 102, 255);">&lt;a </span>href=&quot;#&quot; onclick=&quot;document.getElementById('button1').style.display = '';return false&quot;<span style="color: rgb(51, 102, 255);">&gt;</span>显示按钮<span style="color: rgb(51, 102, 255);">&lt;/a&gt;</span><br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(51, 102, 255);">&lt;a </span>href=&quot;#&quot; onclick=&quot;document.getElementById('button1').style.display = 'none';return false&quot;<span style="color: rgb(51, 102, 255);">&gt;</span>隐藏按钮</span><span style="color: rgb(51, 102, 255);">&lt;/a&gt;<br />
&lt;/div&gt;</span></p>
<p>&nbsp;</p>
<p>两个 div ，其中不浮动的div，只要设置了overflow-x 或 overflow-y 的hidden属性，然后另外一个div设置成浮动，并且其html带一个 button 标签。就会让firefox在渲染上出现问题了。</p>
<p>&nbsp;</p>
<p><a target="_blank" href="http://www.pjhome.net/web/firefox_bug_1.htm">看在线的演示</a>，请用firefox 3.0以上任何版本，快速滚动滚动条。</p>
<p>&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/Javascript/Google_Chrome_Debug.htm</link>
			<title><![CDATA[Google Chrome 支持脚本调试了]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Javascript]]></category>
			<pubDate>Sun,28 Jun 2009 01:40:18 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=1003</guid>
		<description><![CDATA[<p style="text-align: center;"><img alt="" src="http://www.pjhome.net/attachments/month_0906/20090628013518.jpg" /></p>
<p>Google Chrome 3.0.190.4 版本中，终于把webkit的脚本调试器移植到开发者版本了。</p>
<p>Dev channel: <a href="http://www.google.com/chrome/eula.html?extra=devchannel">http://www.google.com/chrome/eula.html?extra=devchannel</a></p>
<p><img alt="" src="http://www.pjhome.net/attachments/month_0906/20090628013736.jpg" /></p>
<p>不过很可惜的是，数据库的调试功能没有了。</p>
<p>&nbsp;</p>
<p>另外，目前调试器还不太稳定，经常出现crash的情况。特别是在做profiles性能测试的时候。</p>
<p><img alt="" src="http://www.pjhome.net/attachments/month_0906/20090628013932.jpg" /></p>
<p>当然了，如果调试过程中遇到什么问题和bug， chrome团队也很欢迎大家<a target="_blank" href="http://code.google.com/p/chromium/issues/list?q=area%3DDevTools">提出问题</a>。</p>
<p>&nbsp;</p>
<p>呵呵，这下IE8不能说只有自己<a href="http://www.pjhome.net/article/Javascript/1001.htm" target="_blank">自带调试器</a>了。</p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/Resource/50-fresh-useful-icon-sets.htm</link>
			<title><![CDATA[50套清新,实用的图标]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Resource]]></category>
			<pubDate>Sat,20 Jun 2009 22:23:37 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=1002</guid>
		<description><![CDATA[<p style="text-align: center;"><img src="http://www.pjhome.net/attachments/month_0906/20090620221935.png" alt="" /></p>
<p style="text-align: left;">怀疑自己真的有点图标控- -!&nbsp; 分享一批来自 <a href="http://www.smashingmagazine.com/" target="_blank">smashing magazine</a> 推荐的图标吧。</p>
<p style="text-align: left;">&nbsp;</p>
<p><strong>猛点击下面的链接: </strong><img src="http://www.pjhome.net/FCKeditor/editor/images/smiley/qq2007/89.gif" alt="" /></p>
<p><a href="http://www.smashingmagazine.com/2009/06/07/50-fresh-useful-icon-sets-for-your-next-design/" target="_blank"><span style="font-family: Corbel;">&gt;&gt;&gt; </span>50 Fresh Useful Icon Sets For Your Next Design <span style="font-family: Corbel;">&lt;&lt;&lt;</span></a></p>
<p>&nbsp;</p>
<p>部分图标截图:</p>
<p class="showcase"><a href="http://www.icojoy.com/articles/39/"><img src="http://www.pjhome.net/attachments/month_0906/20090621003526.jpg" alt="" /></a></p>
<p class="showcase">&nbsp;</p>
<p class="showcase"><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=586"><img src="http://www.pjhome.net/attachments/month_0906/20090621003605.jpg" alt="" /></a></p>
<p class="showcase">&nbsp;</p>
<p class="showcase"><a href="http://www.morcha.net/post/46.html"><img src="http://www.pjhome.net/attachments/month_0906/20090621003618.jpg" alt="" /></a></p>
<p class="showcase">&nbsp;</p>
<p class="showcase"><a href="http://theg-force.deviantart.com/art/Social-Icons-hand-drawned-109467069"><img src="http://www.pjhome.net/attachments/month_0906/20090621003646.gif" alt="" /></a></p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/Javascript/1001.htm</link>
			<title><![CDATA[看IE8是如何自我感觉良好的？]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Javascript]]></category>
			<pubDate>Fri,19 Jun 2009 14:16:59 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=1001</guid>
		<description><![CDATA[<p><img height="123" width="120" style="border: 0pt none ; float: right;" alt="200906191402.jpg" src="http://www.pjhome.net/attachments/month_0906/u2009619141543.jpg" />微软发布了ＩＥ８和其他浏览器的功能对比图。当然微软不敢放出性能对比的。</p>
<p>不过这个功能对比图也实在够ＹＹ的。</p>
<p><a target="_blank" href="http://www.microsoft.com/windows/internet-explorer/get-the-facts/browser-comparison.aspx">http://www.microsoft.com/windows/internet-explorer/get-the-facts/browser-comparison.aspx</a></p>
<p>我们简单来分析看看。</p>
<p><br />
<img height="65" width="199" alt="Windows Internet Explorer 8_ Get the facts.jpg" src="http://www.pjhome.net/attachments/month_0906/a2009619141132.jpg" /> 　</p>
<p>表格中只对比图上之对比了三种浏览器。。。safari去哪里了？Opera去哪里了？</p>
<p>我们再一条一条地分析。</p>
<p>&nbsp;</p>
<p>Security: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">Internet Explorer 8 takes the cake with better phishing and <a style="font-size: 12px; color: rgb(0, 90, 136); text-decoration: none;" onclick="javascript:globaltracking.onclicktrack('iegetthefacts_browsercomparisonbodycontent_malwareprotection');" target="_blank" href="http://nsslabs.com/anti-malware/browser-security">malware protection</a>, as well as protection from emerging threats.</span></p>
<p><span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti; line-height: normal;">安全性这个不否认，ＩＥ的确做得不错。</span></span></p>
<p>&nbsp;</p>
<p>Privacy: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">InPrivate Browsing and InPrivate Filtering help Internet Explorer 8 claim privacy victory.</span></p>
<p><span style="font-family: STHeiti,Arial,Verdana,Helvetica,sans-serif;">我记得最早有隐私模式的并不是ＩＥ把。safari和Ｃhrome很早就有该功能了。</span></p>
<p>&nbsp;</p>
<p>Ease of Use: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">Features like Accelerators, Web Slices and Visual Search Suggestions make Internet Explorer 8 easiest to use.</span></p>
<p><span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti; line-height: normal;">其实我觉得加速器挺烦的。用户体验因人而异</span></span></p>
<p>&nbsp;</p>
<p>Ｗeb Standards: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">It's a tie. Internet Explorer 8 passes more of the World Wide Web Consortium's CSS 2.1 test cases than any other browser, but Firefox 3 has more support for some evolving standards.</span></p>
<p><span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti; line-height: normal;">IE说他符合了web标准，其他浏览器笑了。不过ＩＥ８还是中肯得说，的确做了很多努力。</span></span></p>
<p><font face="STHeiti, Arial, Verdana, Helvetica, sans-serif"><br />
</font></p>
<p>Developer Tools: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">Of course Internet Explorer 8 wins this one. There's no need to install tools separately, and it offers better features like JavaScript profiling.</span></p>
<p><span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti; line-height: normal;">好意思说么？或许这是没把safari放进来的原因，如果把safari也对比以下，这条&ldquo;优势&rdquo;估计又没法写了。</span></span></p>
<p><font face="STHeiti, Arial, Verdana, Helvetica, sans-serif"><br />
</font></p>
<p>Reliability: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">Only Internet Explorer 8 has both tab isolation and crash recovery features; Firefox and Chrome have one or the other.</span></p>
<p><span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti; line-height: normal;">这个得益于多进程，但是多进程的浏览最早也是Chrome带来的先进理念。</span></span></p>
<p><font face="STHeiti, Arial, Verdana, Helvetica, sans-serif"><br />
</font></p>
<p>Customizability: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">Sure, Firefox may win in sheer number of add-ons, but many of the customizations you'd want to download for Firefox are already a part of Internet Explorer 8 &ndash; right out of the box.</span></p>
<p><span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti; line-height: normal;">又爱又恨的ActiveX，至今留在 navigator.plugins 为空白就是最好的不标准证明。（标准的控件安装后，是多浏览器共享的，记得我们的flash安装么？）</span></span></p>
<p><font face="STHeiti, Arial, Verdana, Helvetica, sans-serif"><br />
</font></p>
<p><font face="STHeiti, Arial, Verdana, Helvetica, sans-serif">Compatibility: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">Internet Explorer 8 is more compatible with more sites on the Internet than any other browser.</span></font></p>
<p><font face="'Segoe UI', Arial, Verdana, Helvetica, sans-serif" color="#4e4e4e"><span style="border-collapse: collapse; line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti; line-height: normal;">个人观点，这个其实挺贬义IE的。的确，IE8能够兼容最多的站点。那是因为ＩＥ埋下了不兼容的种子，只有自己兼容了。而且IE8把兼容和不兼容的站点都统统兼容了，也当之无愧得说more compatible with more sites...但是也暗示着IE坎坷的未来。一个如此庞大的兼容系统。如何能够更好得维护和提升性能？</span><br />
</span></font></p>
<p><font face="'Segoe UI', Arial, Verdana, Helvetica, sans-serif" color="#4e4e4e"><br />
</font></p>
<p>Manageability: <span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">Neither Firefox nor Chrome provide guidance or enterprise tools. That's just not nice.</span></p>
<p><span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti; line-height: normal;">这个IE做得很好，提供了不少给企业定制的工具。</span></span></p>
<p><font face="STHeiti, Arial, Verdana, Helvetica, sans-serif"><br />
</font></p>
<p>performance:　<span style="font-family: 'Segoe UI',Arial,Verdana,Helvetica,sans-serif; border-collapse: collapse; color: rgb(78, 78, 78); line-height: 18px;">Knowing the top speed of a car doesn't tell you how fast you can drive in rush hour. To actually see the difference in page loads between all three browsers, you need slow-motion video. This one&rsquo;s also a tie.</span></p>
<p><font face="'Segoe UI', Arial, Verdana, Helvetica, sans-serif" color="#4e4e4e"><span style="border-collapse: collapse; line-height: 18px;"><span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: STHeiti,Arial,Verdana,Helvetica,sans-serif; line-height: normal;">这个曾经微软也过一份<a target="_blank" href="http://www.cnbeta.com/articles/79156.htm">页面加载完成时间的对比</a>的表格。表格中显示，IE加载完成时间很快哟。不过这个远远不够，很多方面的性能测试，ＩＥ都是落败的。而且这个表格的测试标准也没有说法（页面加载完成时间通常有很多因素决定），不排除自己ＹＹ的嫌疑。</span><br />
</span></font></p>
<p><font face="STHeiti, Arial, Verdana, Helvetica, sans-serif"><br />
</font></p>
<p><font face="STHeiti, Arial, Verdana, Helvetica, sans-serif">不过，看到这个张表格，实在为ＩＥ的前景堪忧。</font></p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/Diary/ie6_go_home.htm</link>
			<title><![CDATA[一副漫画：IE6滚回你老家去]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Diary]]></category>
			<pubDate>Wed,17 Jun 2009 13:05:44 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=1000</guid>
		<description><![CDATA[<p style="text-align: center;">&nbsp;<img alt="" src="http://www.pjhome.net/attachments/month_0906/20090617130434.jpg" /></p>
<p style="text-align: center;"><img alt="" src="http://www.pjhome.net/attachments/month_0906/20090617130153.jpg" /></p>
<p>&nbsp;</p>
<p>摘抄一段翻译:</p>
<p><span style="font-family: Verdana; line-height: 18px;">IE6：喂! 你们! 为什么总不让我一起玩!<br style="margin: 0px; padding: 0px;" />
SAFARI：滚回家去，IE6!<br style="margin: 0px; padding: 0px;" />
OPERA：对啊，你经常把我们最酷的玩意儿弄坏!<br style="margin: 0px; padding: 0px;" />
FIREFOX：我都不敢相信你和那厮有瓜葛，IE7!<br style="margin: 0px; padding: 0px;" />
IE7：我靠，别哪壶不开提哪壶!</span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/Note/qzfl_wallpaper.htm</link>
			<title><![CDATA[自己做的一张壁纸]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Note]]></category>
			<pubDate>Sat,13 Jun 2009 02:25:51 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=999</guid>
		<description><![CDATA[<p style="text-align: center;"><img src="http://www.pjhome.net/download.asp?id=25" alt="" /></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><img width="550" height="807" alt="" src="http://www.pjhome.net/attachments/month_0906/20090613022841.jpg" /></p>
<p>&nbsp;</p>
<p>QZFL是团队自己开发的一个框架库。 做一张壁纸练练手，不过fireworks在处理模糊和大面积渐变的时候还真的比较吃力，效果还不好。 也只能怪自己没好好学PS了。</p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/Web/20-tools-to-make-the-life-of-a-web-developer-easie.htm</link>
			<title><![CDATA[20个让Web Developer开发生涯更加轻松的工具]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Web Design]]></category>
			<pubDate>Thu,11 Jun 2009 10:48:37 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=998</guid>
		<description><![CDATA[<p><b>源文:&nbsp; </b><a target="_blank" href="http://net.tutsplus.com/articles/web-roundups/20-tools-to-make-the-life-of-a-web-developer-easier/"><font size="3"><span style="font-size: 12px;">http://net.tutsplus.com/articles/web-roundups/20-tools-to-make-the-life-of-a-web-developer-easier/</span></font></a></p>
<p><b>简译:&nbsp; </b>PuterJam</p>
<p>&nbsp;</p>
<h3><a href="http://www.typetester.org/">Typetester</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105455.jpg" alt="" /></div>
<p>一个在线对比字体的工具，可以很直观得看到不同字体的差异</p>
<p>&nbsp;</p>
<h3><a href="http://www.phpform.org/">pForm</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105640.jpg" alt="" /></div>
<p>创建HTML表单的工具，能在瞬间创建很美观的表单，并输出html代码</p>
<p>&nbsp;</p>
<h3><a href="http://www.colourlovers.com/palettes/add">ColourLovers</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105703.jpg" alt="" /></div>
<p>在线的调色板工具，你能够搜索到很多配色方案或提交你的配色方案</p>
<p>&nbsp;</p>
<h3><a href="http://www.getfirebug.com">Firebug</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105711.jpg" alt="" /></div>
<p>无所不能的firebug，不多介绍了</p>
<p>&nbsp;</p>
<h3><a href="http://leftlogic.com/lounge/articles/entity-lookup/">HTML Entity Character Lookup</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105719.jpg" alt="" /></div>
<p>HTML 实体 查询工具</p>
<p>&nbsp;</p>
<h3><a href="http://www.960.gs">960 Grid System</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105734.jpg" alt="" /></div>
<p style="text-align: left;">960 是个神奇的数字，960 是横向尺寸，960 网格系统是能够让设计师快速创建网页原型的辅助系统。可以比喻成网页的黄金分割线</p>
<p style="text-align: center;"><img height="449" width="465" alt="pfvyzisv.jpg" src="http://www.pjhome.net/attachments/month_0906/b2009611104832.jpg" /></p>
<p style="text-align: center;">&nbsp;</p>
<p style="font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; line-height: normal; font-size-adjust: none; font-stretch: normal;">&nbsp;</p>
<h3><a href="http://riddle.pl/emcalc/">Em Calculator</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105743.jpg" alt="" /></div>
<p>EM换算器～ ，可以把像素换算成 em 单位。</p>
<p>&nbsp;</p>
<h3><a href="http://browsershots.org/">Browser Shots</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105758.jpg" alt="" /></div>
<p>多浏览器截屏工具，可以提供多个平台，不同浏览器的页面截屏效果</p>
<p>&nbsp;</p>
<h3><a href="http://www.iconfinder.net">Icon Finder</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105807.jpg" alt="" /></div>
<p>还在为找图标发愁么，一个不错的图片搜索工具。</p>
<p>&nbsp;</p>
<h3><a href="http://new.myfonts.com/WhatTheFont/">WhatTheFont</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105818.jpg" alt="" /></div>
<p>当你图片里看到一个好看的文字而不知道字体名称时，可以用它来帮你分析字体类型</p>
<p>&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/539">MeasureIt</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105841.jpg" alt="" /></div>
<p>firefox插件，可以在页面上显示一个尺子</p>
<p>&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/271">ColorZilla</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105849.jpg" alt="" /></div>
<p>同样是firefox插件，可以在页面上取色，前端开发必备</p>
<p>&nbsp;</p>
<h3><a href="http://tools.pingdom.com">Pingdom</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105903.jpg" alt="" /></div>
<p>一个在线的抓包工具</p>
<p>&nbsp;</p>
<h3><a href="http://tester.jonasjohn.de/">Test Everything</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105915.jpg" alt="" /></div>
<p>Test Everything 提供了很多测试工具来测试你的站点。从css html 到seo ，从网络工具到优化应有尽有。</p>
<p>&nbsp;</p>
<h3><a href="http://spritegen.website-performance.org/">CSS Sprite Generator</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611105951.jpg" alt="" /></div>
<p>样式精灵，这类工具很多了，就是把图片分割并且输出成css</p>
<p>&nbsp;</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer Toolbar</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611110000.jpg" alt="" /></div>
<p>也是一个非常强大的web开发工具。</p>
<p>&nbsp;</p>
<h3><a href="http://domai.nr/">Domainr</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611110039.jpg" alt="" /></div>
<p>域名查询工具，很方面查询域名的使用情况，并且给出未注册域名的建议。（需要翻墙）</p>
<p>&nbsp;</p>
<h3><a href="http://www.fontburner.com">Font Burner</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611111311.jpg" alt="" /></div>
<p>字体查询工具，并且提供在线的字体解决方案。仅限英文。</p>
<p>&nbsp;</p>
<h3><a href="http://smush.it">Smush.It</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611111325.jpg" alt="" /></div>
<p>图片优化工具，能够优化你的图片尺寸</p>
<p>&nbsp;</p>
<h3><a href="http://loadimpact.com">Load Impact</a></h3>
<div style="text-align: center;" class="tutorial_image"><img src="http://www.pjhome.net/attachments/month_0906/20090611111335.jpg" alt="" /></div>
<p>可以模拟不同地区的用户访问你的站点的情况。并且以图表的情况反馈结果。</p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/Javascript/997.htm</link>
			<title><![CDATA[IE8下暂时成为鸡肋的好方法]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Javascript]]></category>
			<pubDate>Tue,09 Jun 2009 19:40:57 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=997</guid>
		<description><![CDATA[<p><img height="128" width="128" src="http://www.pjhome.net/attachments/month_0906/1200969193827.png" alt="IE.png" style="border: 0pt none ; margin: 4px; float: right;" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IE8虽然在很多方面还比不上其他浏览器，但是其实也是有进步的。只是由于用户的庞大和兼容性的问题，导致IE的发展非常缓慢。IE8做了很大改动但是这些改动对用户来说可有可无。技术上有价值，但是用户往往不会关注技术价值。下面提到的一些接口也因为渲染的设计上暂时会给开发带来额外的兼容逻辑。</p>
<p>&nbsp;</p>
<p><span style="font-size: 14px; font-weight: bold;">JSON</span></p>
<p>JSON 是一个很好的native json parse接口，但是在IE8下，我们到页面如果是IE7模式，或则兼容模式，将无法使用JSON.parse接口来parse json 字符串。</p>
<p>&nbsp;</p>
<p><font size="4"><span style="font-size: 14px;"><b>Getter/Setter</b></span></font></p>
<p>当然，IE8一个很好到特性是getter和setter到支持，也无法在上述的环境下使用。</p>
<p><i>Obejct.defineProperty(/*object*/,/*string*/,</i></p>
<p><i>&nbsp;&nbsp;{<br />
</i></p>
<p><i>&nbsp;&nbsp; set:/*function*/,</i></p>
<p><i>&nbsp;&nbsp; get:/*function*/</i></p>
<p><i>&nbsp;&nbsp;}<br />
</i></p>
<p><i>)</i></p>
<p><i><br />
</i></p>
<p><font size="4"><span style="font-size: 14px;"><b>document.querySelector</b></span></font></p>
<p>这是个非常棒的对象选择器，但是很可惜，我们同样无法在IE7的兼容模式下使用~~~</p>
<p>&nbsp;</p>
<p>上面提到的接口，必须在以下模式才能使用。<br />
<img height="42" width="291" src="http://www.pjhome.net/attachments/month_0906/f200969193933.png" alt="图片 3.png" /></p>
<p>&nbsp;</p>
<p>不知道你还能发现其他在IE8兼容模式下不能使用的接口吗？</p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/Web/996.htm</link>
			<title><![CDATA[safari 4.0 正式版发布]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[Web Design]]></category>
			<pubDate>Tue,09 Jun 2009 10:31:57 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=996</guid>
		<description><![CDATA[<p><img height="128" width="128" style="border: 0pt none ; margin: 4px; float: right;" alt="200906091017.jpg" src="http://www.pjhome.net/attachments/month_0906/w200969102934.jpg" />昨晚苹果WWDC上展示了safari 4.0，把ie8鄙视了一把。今天来公司就发现苹果马上推送了Safari 4.0的更新（该死的IE什么时候能够有一个好的自动更新体验？？？）。</p>
<p>更新完成后，不需要再找什么汉化补丁了，界面直接汉化了。不过4.0正式版取消了Chrome方式的tab栏，有回到了以前3.0方式的tab，找不到切换的设置。</p>
<p><br />
<img height="143" width="480" alt="苹果中国 - Safari.jpg" src="http://www.pjhome.net/attachments/month_0906/n200969102826.jpg" /></p>
<p>另外设置里可以设置数据库的存储空间（舜子不记得beta版有没有这个设置了），数据库默认是5M，最大是500M。和flash的shareObject一样，超过了是要向用户申请的。</p>
<p><img height="466" width="480" alt="安全.jpg" src="http://www.pjhome.net/attachments/month_0906/y200969102839.jpg" /></p>
<p>显示数据库可以看到每个域名的数据库使用情况</p>
<p><img height="329" width="438" alt="Safari.jpg" src="http://www.pjhome.net/attachments/month_0906/1200969102824.jpg" /></p>
<p>另外，开发者工具也进行了本地化，看起来是不是很体贴？：P</p>
<p><img height="485" width="745" alt="Web 检查器 &mdash; http___www.apple.com.cn_.jpg" src="http://www.pjhome.net/attachments/month_0906/q200969102822.jpg" /></p>]]></description>
		</item>
		
			<item>
			<link>http://www.pjhome.net/article/PJBlog3/09_pjblog_T_shirt.htm</link>
			<title><![CDATA[PJBlog 09年 T-shirt暨 开始啦~]]></title>
			<author>puterjam@gmail.com(puterjam)</author>
			<category><![CDATA[PJBlog3]]></category>
			<pubDate>Thu,04 Jun 2009 23:46:37 +0800</pubDate>
			<guid>http://www.pjhome.net/default.asp?id=995</guid>
		<description><![CDATA[<p>08年，PJBBS就搞过一次很棒的T-Shirt比赛，得到网友们的大力支持。</p>
<p>09年，我们论坛可爱的斑竹们再次行动起来，组织 <a href="http://bbs.pjhome.net/forum-51-1.html">『 </a><a target="_blank" href="http://bbs.pjhome.net/thread-52539-1-1.html">2009 第二届PJBlog暑期文化衫设计大赛』</a> ，有兴趣的朋友可以到论坛去提交您的作品即可，奖品丰厚哟。<img src="http://www.pjhome.net/FCKeditor/editor/images/smiley/qq2007/77.gif" style="border: 0pt none ;" alt="" /></p>
<p>还有~~ 这次的比赛支持原创，期待您的原创作品哈<img src="http://www.pjhome.net/FCKeditor/editor/images/smiley/qq2007/44.gif" style="border: 0pt none ;" alt="" /></p>
<p>另透露一下一等奖的奖品<img src="http://www.pjhome.net/FCKeditor/editor/images/smiley/qq2007/13.gif" style="border: 0pt none ;" alt="" /><img src="http://bbs.pjhome.net/attachments/ext_jpg/20090601_bc3bda2a07268d5664b8syXTGcFkQKmA.jpg" alt="" /></p>
<p><button style="border: 1px solid rgb(204, 204, 204); padding: 5px;" onclick="window.open('http://bbs.pjhome.net/forum-51-1.html')"><b>我要参加</b></button></p>]]></description>
		</item>
		
</channel>
</rss>
