Last active
April 12, 2017 12:50
-
-
Save Gaspadlo/8727d0cb587182fb00ef5f673172b0aa to your computer and use it in GitHub Desktop.
Vanilla Javascript Bookmarlet for document scaling. (Zoom in/Zoom out)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:var HtmlES = document.documentElement.style; | |
setTimeout(function () { | |
HtmlES.transform = "scale(" + (prompt("Enter zoom level in %", "100") / 100) + ")"; | |
HtmlES.transformOrigin = "top"; | |
}, 10); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:var HtmlES=document.documentElement.style;setTimeout(function(){HtmlES.transform="scale("+(prompt("Enter zoom level in %","100")/100)+")";HtmlES.transformOrigin="top"},10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment