- 浏览: 2614628 次
- 性别:
- 来自: 北京
最新评论
-
jertom:
<div id="showInfo" ...
addEventListener等事件监听的参数细谈 -
乌托邦国王:
引用[u][/u]
css3动画属性系列之transform细讲移动translate -
hvang1988:
能提供附件下载吗,找不到js库,google封了访问不了
Syntaxhighlighter---代码高亮插件介绍 -
sscsacdsadcsd:
我的天 那到底是为什么function是object我看und ...
typeof func ==='function'的疑惑 -
wkjiangwk:
试了,没用,你们从不去测试。
介绍一下x-webkit-speech -------实现语音输入
文章列表
本文收录一篇jquery-json
方便操作json:
$.toJSON
$.evalJSON
https://code.google.com/p/jquery-json/
收录一个动画:
http://easings.net/zh-cn#easeInSine
最近一直看到代码出现 ~
位运算符 NOT
对数字求负,然后减1
处理步骤:
把运算符转换成32位数字
把二进制形式转换为它的二进制反码
把二进制反码转化为浮点数
扩展阅读:
http://www.cnblogs.com/oneword/archive/2009/12/23/1631039.html
node的相关工具整理:
node-jscoverage:
https://github.com/visionmedia/node-jscoverage
本文介绍一下baseline jpeg 和 progressive jpeg
线性加载,自上而下
渐进式
高级浏览器相对下载起来快
一开始图片大小就固定,不会照成回流
耗cpu
具体参考:
http://www.zhangxinxu.com/wordpress/2013/01/progressive-jpeg-image-and-so-on/
http://www.biaodianfu.com/progressive-jpeg.html
ES5 (js 1.8)加入了 reduce
接收一个函数,然后从左到右遍历item,直到reduce到一个值。
arr.reduce(callback, [initialValue]);
参数:
callback(previousValue, currentValue, index, array)
previousValue 如果指定了initialValue,那就用initialValue 或者 是上一次循环返回的值
currentValue 当前执行到的数组的值
index ...
本文收录一个IDE:
PhpStorm:
http://baike.baidu.com/view/8910091.htm
前言:
其实自己是一个安卓手游党,也开发过一些非常小的游戏,所以选择了《游戏引擎架构》这本匹配度比较高的书,探其究竟。
而且确实游戏已经成为我生活中的一部分~
正文:
...
如何制作icns文件
把文件夹写出 ******.iconset
里面包含几个png文件
执行: iconutil -c icns ******.iconset
生成一个 ******.icns
扩展阅读:
http://liwpk.blog.163.com/blog/static/36326170201371563217306/
http://www.hjue.me/post/make-icns
icns文件:
Mac OS X Icon Resource File
http://www.4qx.net/Extension_DaQuan.php?name=icns
github如何开启两步验证:
https://help.github.com/articles/about-two-factor-authentication#configuring-2FA-through-a-mobile-application
https://github.com/blog/1614-two-factor-authentication
pick:
//返回一个object副本,只过滤出keys(有效的键组成的数组)参数指定的属性值。
_.pick(object,*keys);
举例:
//{name:"zyc"}
_.pick({name:"zyc",age:100},"name");
源码:
var concat = Array.prototype.concat,
slice = Array.prototype.slice;
_.pick = function(obj,it ...
detect flash相关的:
https://github.com/sofish/hasFlashPlayer.js
https://github.com/tchakabam/FlashDetect
_.defaults
_.defaults(object,*defaults)
用defaults对象填充object中undefined属性,并返回这个object
源码部分:
_.defaults = function(obj){
//对第二个参数进行遍历,也就是defaultObject
_.each(slice.call(arguments, 1), function(source) {
if (source) {
for (var prop in ...
本文收录两个图片字段生成器:
http://placehold.it/
http://dummyimage.com/