ini
const el=document.getElementById('app')
let width=1920
let height=1080
el.style.transformOrigin="top left"
function init(){
const scaleX=innerWidth/width
const scaleY=innerHeight/height
const scale=Math.min(scaleX,scaleY)
const left=(innerWidth-width*scale)/2
const top=(innerHeight-height*scale) /2
el.style.transform=`translate(${left}px,${top}px) scale(${scale})`
}
init()
addEventListener('resize',()=>{
init()
})