How to zoom content of a web page?
-
How to zoom content of a web page? Like for example on http://familyecho.com you can zoom in and zoom out. How do they do it?
-
Answer:
Size everything zoomable with "em" units Make your zoom Javascript set the "font-size" of the parent zoomable element up and down by percentages Here's a simple goofy sample: http://gutfullofbeer.net/zoom.html It uses jQuery but that's of course not necessary.
FreestyleCoder at Stack Overflow Visit the source
Other answers
They are likely changing the css attributes for width/height and font size. It looked to me from my brief visit that it was only boxes and text that changed shape. //jQuery... $.(function(e) { $('#plusButton').click(function() { $('#stuffToGrow').css({ width: function(index, value) { return value * 2; }, height: function(index, value) { return value * 2; }); }); }); You get the idea...
Java Drinker
Related Q & A:
- How To Find Owner Of The Web Page?Best solution by networksolutions.com
- How to check if a web page loads?Best solution by Server Fault
- In the simplest clearest language possible, can any one tell me step by step how to get a web page or domain?Best solution by Yahoo! Answers
- How do I set up a web page?Best solution by Yahoo! Answers
- How to use handycam as a web cam?Best solution by smallbusiness.chron.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.