@mt-kit/utils
Version:
15 lines • 436 B
JavaScript
/**
* 📱 屏幕信息
*/
export default function deviceScreen() {
return {
width: window.screen.width,
height: window.screen.height,
availWidth: window.screen.availWidth,
availHeight: window.screen.availHeight,
colorDepth: window.screen.colorDepth,
pixelDepth: window.screen.pixelDepth,
devicePixelRatio: window.devicePixelRatio
};
}
//# sourceMappingURL=screen.js.map