摘要:
CSS相关透明度的设置方式 filter:alpha(opacity=50); opacity: 0.5;opacity: 0.5This is the “most important” one because it is the current standard in CSS. This will... 阅读全文
摘要:
JavaScript 自定义对象模式主要有工厂模式,构造函数方式,原型模式, 组合模式,动态原型模式;例子://工厂模式:对象识别问题,代码复用问题,无共享区域function createPerson(name, age) { var o = new Object(); o.name ... 阅读全文