2
我想擴展我的網站的acording分辨率的身體,但這些代碼並沒有似乎工作:更改頁面比例通過JavaScript
document.body.style.transform: scale(window.screen.availHeight/2);
document.body.style['-o-transform'] = window.screen.availHeight/2;
document.body.style['-webkit-transform'] = window.screen.availHeight/2;
document.body.style['-moz-transform'] = window.screen.availHeight/2;
[這可能有助於](HTTP ://stackoverflow.com/questions/3044230/difference-between-screen-availheight-and-window-height)。 – Andy
你覺得'document.body.style.transform:scale(window.screen.availHeight/2);'是嗎? – epascarello
將屏幕放大兩倍的分辨率,不是嗎? – Dim