0

I need to zoom in with Javascript(jQuery),

For example, Ctrl + scrolling mouse.

I tried

document.body.style.zoom

but, it's not working in Firefox.

Mad Physicist
  • 95,415
  • 23
  • 151
  • 231
Eden Moshe
  • 1,037
  • 1
  • 6
  • 15

1 Answers1

0

I don't know what kind of zoom do you exactly want to achieve, but maybe you should try to use transform: scale(X); with transform-origin: 0 0; and max-width set to a proportional value i.e.:

body {
   max-width: 50%;
   transform: scale(2);
   transform-origin: 0 0;
}
Tomasz Dziuda
  • 336
  • 1
  • 4