.stars>li里面直接加上-webkit-animation-duration: 5s;-moz-animation-duration: 5s;也可以的
这里提供一种对于对于多异步任务的控制方法,说白了就是一个计数器,一个defer对象。这时候如果有asyncA,asyncB,asyncC三个异步任务,设定一个计数器3,当计数器到达1的时候就执行回调任务。有点像node里面一个叫做eventproxy的包一样。
2015-08-19
var getValue = function(className) {
var $elem = $('' + className + '');
//走路的路线坐标
return {
height: $elem.height(),
top: $elem.position().top
};
}
$elem.position().top 报错,Uncaught TypeError: Cannot read property 'top' of undefined
var $elem = $('' + className + '');
//走路的路线坐标
return {
height: $elem.height(),
top: $elem.position().top
};
}
$elem.position().top 报错,Uncaught TypeError: Cannot read property 'top' of undefined
2015-08-18
666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666
2015-08-18