Skip to content

Instantly share code, notes, and snippets.

@yardfarmer
Forked from anonymous/index.html
Last active April 11, 2016 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yardfarmer/c4c0532993d1eaa2d833b2a13731d669 to your computer and use it in GitHub Desktop.
Save yardfarmer/c4c0532993d1eaa2d833b2a13731d669 to your computer and use it in GitHub Desktop.
节流函数 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