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 + ')';