unction get_hfs() {
document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
}
get_hfs();
function throttle(method, context) {
clearTimeout(method.timer);
method.timer = setTimeout(function() {
method.call(context);
}, 100)
}
window.onresize = function() {
throttle(get_hfs);
} method.timer = setTimeout(function() { method.call(context); }, 100)//context 不是没有参数传进来吗?这一句话有什么用?
添加回答
举报
0/150
提交
取消