vote up 0 vote down star

I think every browser has user-controllered full-page zoom nowadays. Is it in anyway accessible to developers, via either html, css or javascript?

I'd like to provide an iframe, or even a normal frame, and set it to, say, 50% zoom. (Relative to the current zoom of the containing document, ideally.)

Is it at all doable? I don't mind if it's an HTML 5 solution as long as it has an existing functional implementation. Even if it's in a nightly build.

I'd be very happy if it worked with at least WebKit and Gecko, and bonus if Trident too.

flag

64% accept rate

2 Answers

vote up 1 vote down

The closest thing I can think of is Zoom in CSS3:

div.zoom { zoom: 200%; }

<div class="zoom">
  <p>Hello World</p>
</div>

This will not work merely by adding it to an ifarme tag:

<iframe id="myFrame" class="zoom" /> <!-- doesn't work -->

You'll have to apply it to a content-tag within the iframe DOM itself, either the BODY or a wrapper-div.

Other than that, I don't know of a way to do this that would find great support cross-browser.

link|flag
Does any browser implement this zoom property yet? – kch Aug 21 at 0:14
Your example works in Safari 4, doesn't FF 3.5. However, setting zoom on iframes has no effect. – kch Aug 21 at 0:18
As stated in the answer, even though CSS3 has this feature, it is not well-supported, and as such shouldn't be implemented...yet :) – Jonathan Sampson Aug 21 at 0:25
Well, thanks for the pointer to zoom. I was able to come up with the answer I posted. – kch Aug 21 at 0:39
vote up 0 vote down check

The following works in Safari 4.0.2 and latest WebKit nightly. It doesn't work in Google Chrome (neither Windows nor Mac), however.

As for Firefox 3.5 and IE 8.0, no deal. Also, no deal on latest Camino nightly.

<style type="text/css" media="screen">
  iframe {
    width  : 500px;
    height : 250px;
  }
</style>

<script type="text/javascript" charset="utf-8">
  function setZoom(element, zoom) {
    element.style.zoom = (zoom || 50) + '%'
  }
</script>

<p>Hello World</p>

<iframe 
  src    = 'http://google.com' 
  onload = "setZoom(this.contentDocument.body)"
  />
link|flag
This is the solution I offered, only implemented with javascript rather than css-syntax... – Jonathan Sampson Aug 21 at 0:58
Well, not really, because you didn't offer anything regarding iframes, and setting zoom directly on the iframe element (css: iframe { zoom: 0.5 }) doesn't work. So I had to sneak inside the iframe's content document after it loaded to set its css after the fact. – kch Aug 21 at 1:10
The iframe tag has nothing to zoom, which is why I didn't suggest applying it to the iframe tag. – Jonathan Sampson Aug 21 at 1:42
You sure you read the question? See that part where I say "set zoom for iframes"? Well. That. – kch Aug 21 at 2:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.