上一页 1 2 3 4 5 6 7 ··· 11 下一页
最近被“模块化”缠身,又是文章又是PPT的,被逼着想了很多相关的东西。整理下我这段时间对于“模块化”的思考,大多都是我自己从事页面重构这份工作的经验和理解,在一定程度上存在局限性,也希望自己能温故而知新。“模块化”只是我们对于过去一直使用的技术、方法的一个新潮的称谓,就像“Ajax”。不过做为页面重构发... Read More
posted @ 2010-05-14 16:13 Kimura Views(213) Comments(0) Diggs(1) Edit
1. 单一职责原则(SRP) 单一职责原则(SRP),就一个类而言,应该仅有一个引起它变化的原因。也就是说,不要把变化原因各不相同的职责放在一起,因为不同的变化会影响到 不相干的职责。再通俗一点地说就是,不该你管的事情你不要管,管好自己的事情就可以了,多管闲事害了自己也害了别人。 在软件设计中,如果一个类承担的职责过多,就等于吧这些职责耦合在一起,而一个职责的变化可能会削弱和抑制这个类完成其他职责... Read More
posted @ 2010-05-14 14:27 Kimura Views(150) Comments(0) Diggs(1) Edit
IFrame 透明背景from 阿当个人空间 by cly84920/* in the iframe element */ <iframe src="content.html" allowTransparency="true"> </iframe> /* in the iframe docuement, in this case content.html */ body ... Read More
posted @ 2010-05-14 11:30 Kimura Views(355) Comments(0) Diggs(0) Edit
[转]岁月如歌不时会听见网上的朋友或身边的同事谈及“瓶颈”、“天花板”问题,特别是 30 岁左右的朋友最担心。今天拜读了 Eric Raymond 的How To Become A Hacker(中文翻译),此文中的 hacker 可以简单理解为“编程高手”、“技术牛人”,里面的建议很好的回答了R... Read More
posted @ 2010-05-13 11:05 Kimura Views(227) Comments(0) Diggs(0) Edit
http://ued.alipay.com/2010/05/talk-about-css-hack-and-backward-compatibility/人一旦习惯了某些东西就很难去改,以及各种各样的原因,新的浏览器越来越多,而老的总淘汰不了。增长总是快于消亡导致了浏览器兼容是成了谈不完的话题。说到浏览器兼容,CSS HACK自然而然地被我们想起。今天,我们通常都有一个团队或者将有一个团队的人在一... Read More
posted @ 2010-05-12 23:01 Kimura Views(155) Comments(0) Diggs(0) Edit
http://www.alistapart.com/articles/a-brief-history-of-markup/HTMLis the unifying language of the World Wide Web. Using just the simple tags it contains, the human race has created an astoundingly dive... Read More
posted @ 2010-05-11 16:51 Kimura Views(245) Comments(0) Diggs(0) Edit
http://www.learningjquery.com/2010/05/now-you-see-me-showhide-performanceI just got back from the jQuery conference in San Francisco. Wow, what an event. In addition to some incredible talks, I had th... Read More
posted @ 2010-05-11 16:00 Kimura Views(225) Comments(0) Diggs(0) Edit
通过返回false来取消默认的行为并阻止事件起泡。 jQuery 代码: 描述: 通过使用 preventDefault() 方法只取消默认的行为。 jQuery 代码: 描述: 通过使用 stopPropagation() 方法只阻止一个事件起泡。 jQuery 代码: Read More
posted @ 2010-05-07 10:17 Kimura Views(281) Comments(2) Diggs(0) Edit
//显示属性displaylist-stylepositionfloatclear//自身属性widthheightmarginpaddingborderbackground//文本属性colorfonttext-decorationtext-alignvertical-alignwhite-spaceother textcontent Read More
posted @ 2010-05-06 13:51 Kimura Views(236) Comments(0) Diggs(0) Edit
http://www.iqianduan.com/post/29.html1、css样式命名: 1.总的原则要语义化,避免结构化。例如:一个导航条,可以分配ID为rightHandNav,因为你希望他出现在右边。但是,如果以后将他的位置改在左边,那么css和(x)html就会不同步。所以将这个元素命名为subNav或者secondNav更合适。2.样式名称可由贴近语义的英文词组、规范易懂可接受的英... Read More
posted @ 2010-05-06 13:51 Kimura Views(342) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 ··· 11 下一页