vote up 0 vote down star

how can I scale the content of iframe (in my example is an html page), and is not a popup is in page of my web site?

So I want for example to put the content that appears in iframe in for example 80% of the real size.

Can someone help me please....

Thanks (question scraped from http://www.htmlcodetutorial.com/help/sutra32209.html)

flag

33% accept rate
Question scraping – good practice? I don't think so. – Konrad Rudolph Oct 3 '08 at 10:03

5 Answers

vote up 1 vote down

I do not think HTML has such functionality. The only thing I can imagine would do the trick is to do some server-side processing. Perhaps you could get an image snapshot of the webpage you want to serve, scale it on the server and serve it to the client. This would be a non-interactive page however. (maybe an imagemap could have the link, but still.)

Another idea would be to have a server-side component that would alter the HTML. SOrt of like the firefox 2.0 zoom feature. this of course is not perfect zooming, but is better than nothing.

Other than that, I am out of ideas.

link|flag
vote up 0 vote down

As said, I doubt you can do it.
Maybe you can scale at least the text itself, by setting a style font-size: 80%;.
Untested, not sure it works, and won't resize boxes or images.

link|flag
vote up 0 vote down

html{zoom:0.4;} ?-)

link|flag
It would be 0.8 for 80%, but that is a proprietary Microsoftism, so probably not suitable. It would also only work if the document loaded into the frame could be edited, which is unlikely. – David Dorward Oct 3 '08 at 16:14
vote up 0 vote down

If your html is styled with css, you can probably link different style sheets for different sizes.

link|flag
vote up 0 vote down

I think you can do this by calculating the height and width you want with javascript (via document.body.clientWidth etc.) and then injecting the iframe into your HTML like this:

var element = document.getElementById("myid");
element.innerHTML += "<iframe src='http://www.google.com' height='200' width='" + document.body.clientWidth * 0.8 + "'/>";

I didn't test this in IE6 but it seems to work with the good ones :)

link|flag

Your Answer

Get an OpenID
or

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