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 不是没有参数传进来吗?这一句话有什么用?
熠熠生阳
Amumu
随时随地看视频慕课网APP
相关分类