Home > Article > Web Front-end > Can Browser Zoom Levels Be Programmatically Controlled?
Browser Zoom Level Manipulation
Can the zoom level of a browser be modified through code? Reports suggest varying possibilities.
Is Zoom Level Alteration Feasible?
Yes, browser zoom level modification is achievable in Internet Explorer and Chrome but not in Firefox.
Implementation Details
To enable zoom level control using buttons, implement the following:
<script> function toggleZoomScreen() { document.body.style.zoom = "80%"; } </script>
<img src="example.jpg" alt="example" onclick="toggleZoomScreen()"/>
This code will trigger the toggleZoomScreen() function upon clicking the image, adjusting the zoom level to 80%.
The above is the detailed content of Can Browser Zoom Levels Be Programmatically Controlled?. For more information, please follow other related articles on the PHP Chinese website!