我想检查一个数字是否从另一个数字增加或减少到一定数量。
例如:
Let a = 20;
Let b = 20;
如果b从什么增加了 5,a则返回true。
如果b从什么减少了 5,a则返回true。
提前感谢您的任何帮助。
var lastHeightSize = document.body.scrollHeight;
function checkBodySizeChange () {
// instead of checking if lastHeightSize is not equal to document.body.scrollheight,
// check if document.body.scrollheight has increased or decreased by 20
const heightChanged = lastHeightSize !== document.body.scrollHeight;
if (heightChanged) {
trigger(document.body, 'sizechange');
lastHeightSize = document.body.scrollHeight;
}
window.requestAnimationFrame(checkBodySizeChange);
}
尚方宝剑之说
HUWWW
相关分类