以小框架显示所有目标网站(html)

时间:2015-02-06 16:42:51

标签: html frame frameset

我的朋友需要一个网站来监控网页中的其他网站。 我使用框架为他制作页面。但我有一个问题! 我的框架是300 * 600,我希望在我的小框架中显示所有目标网站或100%宽度和70%高度! 我该怎么办? 有没有更好的方法来做到这一点?

1 个答案:

答案 0 :(得分:0)

这个问题在SO上已经被曝光了几次。 例如: Resize external website content to fit iFrame widthHow to embed a resized website throught an iframe?

答案基本上是将iframe设置为所需的宽度和高度。你使用CSS来扩展它。由于这使用了webkit或mozilla功能,因此可能无法在所有浏览器中使用。

<iframe width="1024" height="768" src="http://www.bbc.com" style="-webkit-transform:scale(0.5);-moz-transform-scale(0.5);"></iframe>