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
  • 107,652
  • 25
  • 181
  • 264
Eden Moshe
  • 1,097
  • 1
  • 6
  • 16

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
  • 346
  • 1
  • 4