'zoom' Example : zoom « CSS « HTML / CSS

HTML / CSS » CSS » zoom 
'zoom' Example

    
<html>
<body>
<div id="myDiv" 
     style="width:100pt; 
            background-color:red;">
This is some sample text.
<br>
www.java2s.com
</div>
<button onclick="myDiv.style.zoom='200%'">Zoom 200%</button>
<button onclick="myDiv.style.zoom='100%'">Zoom 100%</button>
</body>
</html>

    
      
      
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.