function resize() { var ratioX = $(window).width() / 11520; var ratioY = $(window).height() / 4320; $("body").css({ transform: "scale(" + ratioX + "," + ratioY + ")", transformOrigin: "left top", backgroundSize: "100% 100%" }); $("html").css({'overflow':'hidden'}) } $(window, document).resize(function () { resize(); }); resize();
11520目標屏寬度,4320目標屏高度,其他屏相對縮放充滿全屏。
解決空白問題把外層設置為overflow: hidden;