如何使它肯定的iframe内容适合呢?(How to make it sure that an if

2019-10-30 07:55发布

我有一个调用一个外部页面,像的iframe <iframe src="http://pagewithimage.php/?parameter=xxx" style='border:0;width:100%'></iframe>pagewithimage.php得到了可以做大的IFRAME区域,不需要滚动条显示的图像。 我想缩放iframe中的内容,以适应它的“100%”,没有比它更。

我正在使用的代码是这样的:

> <div class='container-home-map'  style="background-color:#99CCCC;border-radius:10px;">
> <iframe src="http://pagewithimage.php/?parameters=AAA" style='border:0;width:100%;transform:scale(1.0)'></iframe>
> </div>

http://pagewithimage.php是与调用代码的页面parameters与参数之间发送的大小生成图像。 该图像可以更大,取决于屏幕上的iframe中,所以,我的问题是:我可以缩放内容以总是适合的iframe? (未调整的iframe,但调整其内容)

文章来源: How to make it sure that an iframe content fits it?