Hi all,
I would like to add a zoom in and out option to my website. Example: When I click + button, all the content in the application should be zoomed in. I have used different sizes for each container right now. Is there an easy way to add/subtract the size of each component?
Thanks,
Abira
This little piece of javascript will zoom your page to 120%:
document.body.style.zoom = 1.2;
i assume you can implement it yourself to zoom +10% etc. ?
Worked like charm. Thank you :)
Hello Abira,
Check out this may be useful for you
javascript - How can I zoom html upon button click? - Stack Overflow
Thanks & kind Regards
Akash.