admin管理员组文章数量:1340931
I wish to scale the body of my website acording to resolution, but the code not seems to work:
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;
I wish to scale the body of my website acording to resolution, but the code not seems to work:
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;
Share
Improve this question
asked Sep 30, 2013 at 12:28
DimDim
4,83719 gold badges86 silver badges152 bronze badges
3
- This might help. – Andy Commented Sep 30, 2013 at 12:31
-
1
What do you think
document.body.style.transform: scale(window.screen.availHeight/2);
does? – epascarello Commented Sep 30, 2013 at 12:31 - Magnifying the screen two times the resolution, no? – Dim Commented Sep 30, 2013 at 12:56
1 Answer
Reset to default 8Try
document.body.style.transform = 'scale(' + window.screen.availHeight/2 + ')';
document.body.style['-o-transform'] = 'scale(' + window.screen.availHeight/2 + ')';
document.body.style['-webkit-transform'] = 'scale(' + window.screen.availHeight/2 + ')';
document.body.style['-moz-transform'] = 'scale(' + window.screen.availHeight/2 + ')';
本文标签: cssChanging page scale via javascriptStack Overflow
版权声明:本文标题:css - Changing page scale via javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743659207a2517656.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论