摘要: var TASK_SYNC = 0; var TASK_ASYNC = 1; function Animation(){ this.taskQueue = []; } Animation.prototype._add = function(task,type){ this.taskQueue.push({ taskFn: task, type: type }) ... 阅读全文
posted @ 2017-02-16 16:29 sunbey80 阅读(235) 评论(0) 推荐(0) 编辑