<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><!-- generator="wordpress/1.5.1-alpha" --><rss 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/" version="2.0">

<channel>
	<title>web.Frontend</title>
	<link>http://old9.blogsome.com</link>
	<description>专注web前台</description>
	<pubDate>Fri, 04 Jan 2008 01:53:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1-alpha</generator>
	<language>zh-cn</language>

		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/blogsome/old9" type="application/rss+xml" /><item>
		<title>再说 IE6 的背景闪烁</title>
		<link>http://old9.blogsome.com/2008/01/04/ie6-background-flicker-expression-override/</link>
		<comments>http://old9.blogsome.com/2008/01/04/ie6-background-flicker-expression-override/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 01:42:37 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>Javascript/DOM</category>
	<category>xHTML/CSS</category>
		<guid>http://old9.blogsome.com/2008/01/04/ie6-background-flicker-expression-override/</guid>
		<description><![CDATA[	基本上 google 一下 IE6 flicker，第一页基本全是说这个问题，解决方法就是那个神奇的 document.execCommand("BackgroundImageCache",false,true)，只不过是围绕着用 CSS expression 还是 JavaScript 的问题。JavsScript 最稳妥，不过有时候 JavaScript 未必方便改，而 CSS 虽然方便但是 expression 会反复执行，有严重的效率问题。最近的几个项目用的方法是这样的，在 expression 中把 CSS 中用来触发的属性重写一下：
	body{
    zoom: expression(function(ele){
    document.execCommand('BackgroundImageCache', false, true);
    ele.style.zoom = '1';
    }(this));
}
	这里用 zoom 触发，搞定之后把 zoom 写回 1（好像我很喜欢捣腾 zoom），这下就没效率问题了吧，嘿嘿。同理，其他针对 IE 的 hack，如果是只跑一次的 expression，其实都可以这样做，所谓兔死狗烹过河拆桥是也～ :D。
]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2008/01/04/ie6-background-flicker-expression-override/feed/</wfw:commentRss>
	</item>
		<item>
		<title>开始转到 ps cs3 了</title>
		<link>http://old9.blogsome.com/2007/12/26/photoshop-cs3-what-i-like-and-dislike/</link>
		<comments>http://old9.blogsome.com/2007/12/26/photoshop-cs3-what-i-like-and-dislike/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 01:50:34 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>Design</category>
		<guid>http://old9.blogsome.com/2007/12/26/photoshop-cs3-what-i-like-and-dislike/</guid>
		<description><![CDATA[	自从 10.0.1 之后，CS3 效率问题不大了（果然 Adobe 的东西要等到 SP1 才能凑合用啊，这是哪位大牛说的来着？）于是开始着手向它过渡，毕竟看宣传，诱人的功能还是蛮多的，要与时俱进哇。
	经过一段时间的使用，总得来说还是不错的，不过不爽也是会有滴，列个表记录一下。这个列表随着慢慢磨合应该会不断改动，因为有可能有些爽的会发现越来越不爽，也可能不爽的后来找到了解决办法，嘿嘿。噢对了，我是从 CS 向 CS3 过渡，没碰过 CS2，可能有的地方大惊小怪了。
	先来比较爽的：
	
smart object，这个的确不错，小用了一把，体验很流畅。
	图层可多选了，意味着操作可以批量了。
	Transform 里面多了一个 warp，大赞……
	更多亮点发掘中&#8230;

	然后是不爽的：
	
颜色的16进制值居然默认变成小写了，虽然没有大碍，不过对于在 CSS 里一向用大写的“轻度代码洁癖症”患者来说，还真是不舒畅啊……另外也搞不明白 Adobe 为啥去动这个设置，我实在看不出这个地方改成小写会带来什么好处……谁教我怎么改回大写～
	图层效果原来可以直接拖动复制到其他层，现在拖动却成了移动……同样，不理解为什么 Adobe 要这么改。那个，谁教我要复制应该怎么来操作捏？现在是开始用从来不用的 style 面板了……更新，经 Uranus 点拨，原来要拖动之前按住 Alt 键，帮助要多看，嗯。
	系统设置的 Type 里面多了个 Enable Missing Glyph Protection，这个千万要钩上啊，不然中英文混排的时候问题就来了，给一段文字设置英文字体的时候，中文都变成 XXOO 了，哇靠。我这边不知道是默认的还是自己调过，反正给取消了，郁闷了好一阵子。
	更多烦恼积累中&#8230;

]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/12/26/photoshop-cs3-what-i-like-and-dislike/feed/</wfw:commentRss>
	</item>
		<item>
		<title>话说好久没写了</title>
		<link>http://old9.blogsome.com/2007/12/25/p143/</link>
		<comments>http://old9.blogsome.com/2007/12/25/p143/#comments</comments>
		<pubDate>Tue, 25 Dec 2007 13:09:11 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>Misc/Personal</category>
		<guid>http://old9.blogsome.com/2007/12/25/p143/</guid>
		<description><![CDATA[	论文是艰苦滴，毕业是怀念滴，工作是顺利滴……上班是清闲滴，杂事是繁多滴，压力是很大滴……领证是激动滴，装修是省心滴，婚礼是筹备滴……教室是改造滴，合唱是失败滴，校庆是明年滴……道路是拓宽滴，高架是快通滴，空气是污染滴……书记是换岗滴，房价是疯涨滴，社会是和谐滴……Fx3 是快来滴，IE8 是有才滴，Opera 是勇敢滴……标准是深入人心滴，Flash 是依然坚挺滴，Web 还是 2.0滴……
]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/12/25/p143/feed/</wfw:commentRss>
	</item>
		<item>
		<title>coreldraw 报 msxml4 错误</title>
		<link>http://old9.blogsome.com/2007/09/04/p141/</link>
		<comments>http://old9.blogsome.com/2007/09/04/p141/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 09:37:42 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>Misc/Personal</category>
		<guid>http://old9.blogsome.com/2007/09/04/p141/</guid>
		<description><![CDATA[	访问 http://support.corel.com/ 搜索 DOM Document
	Essentially you need to re-register msxml4.dll, see below:
	
	Click on Start -> Run
	Enter: regsvr32 /u msxml4.dll (this command line de-registers MSXML4.DLL)
	Now enter: regsvr32 msxml4.dll (DLL is re-registered)
	You should now be able to run CorelDRAW 

	works
]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/09/04/p141/feed/</wfw:commentRss>
	</item>
		<item>
		<title>本 blog 被 GFW 无情地屏蔽鸟</title>
		<link>http://old9.blogsome.com/2007/06/15/p140/</link>
		<comments>http://old9.blogsome.com/2007/06/15/p140/#comments</comments>
		<pubDate>Fri, 15 Jun 2007 04:40:42 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>Misc/Personal</category>
		<guid>http://old9.blogsome.com/2007/06/15/p140/</guid>
		<description><![CDATA[	这样的日子不知何时是个尽头。
update：
feeds 丢给 feedburner 了，还好这个没被封。新地址：http://feeds.feedburner.com/blogsome/old9


]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/06/15/p140/feed/</wfw:commentRss>
	</item>
		<item>
		<title>AI CS3 保存文件时出错</title>
		<link>http://old9.blogsome.com/2007/05/25/illustrator-cs3-crashes-upon-saving/</link>
		<comments>http://old9.blogsome.com/2007/05/25/illustrator-cs3-crashes-upon-saving/#comments</comments>
		<pubDate>Fri, 25 May 2007 07:40:12 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>Design</category>
	<category>Misc/Personal</category>
		<guid>http://old9.blogsome.com/2007/05/25/illustrator-cs3-crashes-upon-saving/</guid>
		<description><![CDATA[	Adobe Illustrator CS3 保存文件或和其他应用程序交互时（比如在 Flash CS3 中导入、和 PS 之间复制粘贴等等），频频报错，而且是那种惊天地泣鬼神的无法挽回数据的错误信息只有外星人才能看懂的“非法操作”……我恨啊！想想辛辛苦苦画了半天的图，结果一保存，当！挂了，如果是你，你骂街不？出这种错肯定想到版本问题，或者设置问题，结果换了几个版本来恶心了我一下午，都没搞定。于是上网找，居然是 Adobe 自己的问题！在 Adobe Forums 上找到原因，原来需要启动 Print Spooler 服务…… orz ……由于我机器没打印机也极少用这服务，都是设为手动的，所以普通状况下都关着——你说这破原因让人上哪猜去？你要是遇到问题搞不定，倒是跟我说一声啊，提示我某某服务要启动不成么？你到好，直接自焚！我跟你说亏得你没脸，有脸我肯定大耳刮子抽你！
	结果把服务启动，所有问题解决，so cheap 
	P.S. 因祸得福，由于下狠心换装了 Web Premium，顺便把 AI 激活了，嗯，懒得等 keygen 了，是不是套装 keygen 都出来了大家都没激情做单个的了？另外提醒一下，装套装之前要记得把以前的那些单独装的东西卸载干净，特别是用 VLK 激活的，要删 C:\Program Files\Common Files\Adobe\Adobe PCD\cache\cache.db，否则你就装了卸卸了装吧，想想 CS3 安装卸载时候那匪夷所思的速度，有你受的。
]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/05/25/illustrator-cs3-crashes-upon-saving/feed/</wfw:commentRss>
	</item>
		<item>
		<title>用图片自定义复选框</title>
		<link>http://old9.blogsome.com/2007/05/19/customise-checkbox/</link>
		<comments>http://old9.blogsome.com/2007/05/19/customise-checkbox/#comments</comments>
		<pubDate>Sat, 19 May 2007 02:40:07 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>xHTML/CSS</category>
		<guid>http://old9.blogsome.com/2007/05/19/customise-checkbox/</guid>
		<description><![CDATA[	自定义复选框样式，推荐经典标准化专栏 snwebsite 版主的一篇帖子 《用图片模拟checkbox，简简单单》。
	真是创意无限啊，想法真妙。
]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/05/19/customise-checkbox/feed/</wfw:commentRss>
	</item>
		<item>
		<title>W3C 接受 HTML 5</title>
		<link>http://old9.blogsome.com/2007/05/11/html5-is-now-also-hosted-by-the-w3c/</link>
		<comments>http://old9.blogsome.com/2007/05/11/html5-is-now-also-hosted-by-the-w3c/#comments</comments>
		<pubDate>Fri, 11 May 2007 03:56:24 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>xHTML/CSS</category>
		<guid>http://old9.blogsome.com/2007/05/11/html5-is-now-also-hosted-by-the-w3c/</guid>
		<description><![CDATA[	小道消息，呵呵
	http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2007-May/011228.html
	The W3C&#8217;s HTML working group today resolved to start from the current WHATWG work. Specifically, the group resolved to review our work, and will probably build on it.
	They also resolved to call this work HTML5. 
	Thus, the &#8220;Web Applications 1.0&#8243; spec is now officially named &#8220;HTML5&#8243;!
	所谓顺天应人，嗯。
	update:
	刚又在 Junchen 那里看到了“大道消息”，:D
]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/05/11/html5-is-now-also-hosted-by-the-w3c/feed/</wfw:commentRss>
	</item>
		<item>
		<title>最近遇到的几个 CSS bug</title>
		<link>http://old9.blogsome.com/2007/05/08/some-haslayout-related-bugs/</link>
		<comments>http://old9.blogsome.com/2007/05/08/some-haslayout-related-bugs/#comments</comments>
		<pubDate>Tue, 08 May 2007 12:59:34 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>xHTML/CSS</category>
		<guid>http://old9.blogsome.com/2007/05/08/some-haslayout-related-bugs/</guid>
		<description><![CDATA[	都和 layout 有关，记录一下
	

IE7 下 layout 元素会有鼠标光标问题，具体就是鼠标位于文字之外时，光标也会变成 I 型。演示页面，IE7 下观看，一个框有 layout，一个没有，注意鼠标光标在两个框中的不同形状。
	但是此 bug 有例外：当它有背景时（包括背景色和背景图像）、当它 float 时、当它绝对定位时、当它有一个 filter 时，当它被放置于一个 float 的祖先中时，不会出现这个bug，也许还有别的情况，以后发现了再补充。
	另外如果将其相对定位，只有一部分会显示 I 形光标，另外一部分是正常箭头状。箭头状范围不随字体和行距的大小改变，始终在顶部 15px 附近，这个现象有点灵异了 o_o。
	目前比较简单的解决办法是加背景，如果需要背景透明，就用一个透明 gif 代替，或者用一个不存在的 url 代替，或者使用 filter: alpha(opacity=100) 。

	
具有 layout  的元素会裁切掉内部元素的默认 margin，但内部元素的自定义 marign 不受影响，演示页面可以参考经典论坛的这个帖子。比较奇怪，默认 margin 和自定 margin 难道还有不同的机制？不知道 IE 对于默认样式是什么处理的，IE6 和 IE7 都受影响。这 bug 由于一般都会写一个 *{margin: 0; padding: 0;} 的样式，所以平时不容易发觉。开始以为和 margin-collapsing 有关，结果似乎不是这个问题，margin-collapsing 和 [...]]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/05/08/some-haslayout-related-bugs/feed/</wfw:commentRss>
	</item>
		<item>
		<title>CSS 2.2 ？</title>
		<link>http://old9.blogsome.com/2007/05/07/css22/</link>
		<comments>http://old9.blogsome.com/2007/05/07/css22/#comments</comments>
		<pubDate>Mon, 07 May 2007 14:53:48 +0000</pubDate>
		<dc:creator>old9</dc:creator>
		
	<category>xHTML/CSS</category>
		<guid>http://old9.blogsome.com/2007/05/07/css22/</guid>
		<description><![CDATA[	HTML 5 最近风头大起，争论不断，现在又来了一个 CSS 2.2
	的确，CSS 3 拖的时间实在太长了…… Andy Budd 认为它之所以迟迟不能定稿是因为贪多嚼不烂（有 40 个模块），WEB 的变化越来越快，以前定下来的东西过了一段时间发现又需要修改，这样怎么改也改不完，何时是个尽头。总想让自己完美，总想尽可能考虑周全未来的种种状况，结果忽略了当前真正亟待解决的问题，这是 CSS 3 目前定稿最大的障碍。于是 Andy 提议将 CSS 3 中的部分急迫内容，或者说用来满足一些常见需求的内容加入 CSS 2.1 中，升级为 CSS 2.2 以促进新的 CSS 版本推出。
	不过个人感觉，这个没有浏览器厂商的合作，就算 W3C 定了个 CSS 2.2 出来又能如何？Mozilla 和 Opera 倒是可以持乐观态度，但是 IE 呢？占浏览器市场份额最多的 IE 呢？且不说 IE7 的份额还很少，就是还在计划中的 IE 8 目前的目标也仅仅是完善对 CSS 2.1 的支持！CSS 2.2 出来了谁能保证它的命运不像 2.1 一样悲惨？
]]></description>
		<wfw:commentRss>http://old9.blogsome.com/2007/05/07/css22/feed/</wfw:commentRss>
	</item>
	</channel>
</rss>
