screen对象包含有关客户端显示屏幕的信息
screen.availWidth // 屏幕的宽度
screen.availHeight // 屏幕的高度
screen.height // 屏幕分辨率的高
screen.width // 屏幕分辨率的宽
// 获取屏幕的宽度
var screenWidth = window.screen.availWidth;
console.log(screenWidth);
// 获取屏幕的可视区
var viewWidth = document.body.clientWidth;
console.log(viewWidth);