最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

css - Changing page scale via javascript - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 8

Try

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 + ')';
发布评论

评论列表(0)

  1. 暂无评论