UNPKG

@alitajs/utils

Version:
17 lines (15 loc) 399 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = px2hd; /** * 像素转换 * @param {Number} px - 750视觉稿像素 * @return {Number} 屏幕上实际像素 */ function px2hd(px) { const ONE_REM = parseInt(document.documentElement.style.fontSize || '100', 10) || 100; const SCALE = ONE_REM / 100; return Number((px * SCALE).toFixed(1)); }