Zoom Out Browser Using javascript on my PHP page

19:41 0 Comments





I included any version of jquery plugins.
i.e <script src="../bower_components/jquery/dist/jquery.min.js"></script>  

then, i added this code.

var scale = 'scale(0.8)';
document.body.style.webkitTransform = scale;       // Chrome, Opera, Safari
document.body.style.msTransform =          // IE9
document.body.style.transform = scale;     // General

try also,
 document.body.style.zoom = "85%";    




marman

I’m just following the owner documentations :)

"Ideas are useless without the talent to make it happen."

0 comments: