Scale you paye by the width
이 스크립트는 직접 설치하는 용도가 아닙니다. 다른 스크립트에서 메타 지시문 // @require https://update.greasyfork.org/scripts/491239/1351475/scale2078.js을(를) 사용하여 포함하는 라이브러리입니다.
function adjustScale() {
const baseWidth = 1000;
const viewportWidth = window.innerWidth;
const scale = baseWidth / viewportWidth;
const body = document.body;
const home = document.getElementById("Home");
body.style.transform = `scale(0.${scale})`;
body.style.transformOrigin = 'top left';
body.style.width = `100vw`;
body.style.minHeight = '100vh';
home.style.position = 'relative';
home.style.left = '10vw';
home.style.width = '80vw';
}
window.addEventListener('load', adjustScale);
window.addEventListener('resize', adjustScale);