节流函数 JS Bin // source https://jsbin.com/cufuyi
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
// 节流函数 | |
function throttle(fn, context) { | |
clearTimeout(fn.tId); | |
fn.tId = setTimeout(function() { | |
fn.call(context); | |
}, 100); | |
} | |
window.onresize = function() { | |
throttle(function() { | |
console.log('hehe'); | |
}); | |
}; | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">// 节流函数 | |
function throttle(fn, context) { | |
clearTimeout(fn.tId); | |
fn.tId = setTimeout(function() { | |
fn.call(context); | |
}, 100); | |
} | |
window.onresize = function() { | |
throttle(function() { | |
console.log('hehe'); | |
}); | |
};</script></body> | |
</html> |
// 节流函数 | |
function throttle(fn, context) { | |
clearTimeout(fn.tId); | |
fn.tId = setTimeout(function() { | |
fn.call(context); | |
}, 100); | |
} | |
window.onresize = function() { | |
throttle(function() { | |
console.log('hehe'); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment