-
buffer查看全部
-
do-promise三个小球动画查看全部
-
function promiseAnimate(ball,distance){ return new Promise(function(resolve,reject){ function _antimate(){ window.setTimeout(function(){ var marginLeft = parseInt(ball.style.marginLeft,10); if(marginLeft===distance){ return resolve; }else{ if(marginLeft<distance){ marginLeft++; }else if(marginLeft>distance){ marginLeft--; } ball.style.marginLeft=marginLeft+'px'; _antimate(); } },13); }; _antimate(); });查看全部
-
https查看全部
-
stream事件查看全部
-
promise库查看全部
-
自定义属于自己的读写流查看全部
-
读写,pipe查看全部
-
视频复制查看全部
-
边下载边pipe查看全部
-
通过pipe可访问获取图片查看全部
-
ReadStream : 可读流负责读取外部的数据, 把数据缓存到内部的Buffer数组 (由v8在内存上开辟空间) WriteStream : 可写流负责消费数据, 从可读流获得数据, 对得到的chunk数据块进行处理 Duplex (双工流) 4. Transform (转换流) 可读可写, 不保存数据, 处理流经的数据查看全部
-
readStream---视频最后有视频总结。查看全部
-
Stream 当数据出发的时候(data)查看全部
-
buffer实例化方法查看全部
举报
0/150
提交
取消