节流
liugang0605
逗逼一枚,说一些胡言乱语的事实
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
throttle节流函数
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div{ background:yellow; width:100px; height:500px;原创 2017-08-24 21:48:51 · 397 阅读 · 0 评论 -
throttle-javascript高级程序设计
var throttle={ timeoutId:null, performProcessing:function(){ }, process:function(){ clearTimeout(this.timeoutId); var that =this; this.timeoutId=setTimeout(function(){ that....转载 2018-02-20 10:52:24 · 369 阅读 · 0 评论
分享