Facebook 登陆页面 iframe 不会调整大小

发布于 2024-11-06 04:24:37 字数 301 浏览 0 评论 0原文

您好,我设计了一个自定义 Facebook 登陆页面,它很长,但 iframe 似乎仅限于设定的长度。打开或关闭滚动条不是问题,我可以这样做,但无论是否有滚动条,iframe 都会保持相同的大小。有什么想法吗?

您可以在此处查看该页面: http://www.facebook.com/petsmarket?sk=app_199629183389823

干杯。

保罗

Hi I have designed a custom facebook landing page and it is quite long but the iframe seems to be limited to a set length. getting the scrollbars turned on or off is not a problem, I can do this but regardless of having the scrollbars or not the iframe stays the same size. any ideas?

you can view the page here:
http://www.facebook.com/petsmarket?sk=app_199629183389823

cheers.

paul

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

落在眉间の轻吻 2024-11-13 04:24:37

将 IFrame 大小更改为自动调整大小,然后使用:FB.Canvas.setSize

PS:请注意,您的 JS 代码已损坏,因为您将所有内容都放在一行中,并在其中添加了注释!

Change your IFrame size to auto-resize then use: FB.Canvas.setSize

P.S: Be-aware that your JS code is broken since you have it all in one line with comments in it!

梦醒时光 2024-11-13 04:24:37

当您知道理想的高度时,最简单的方法如下(设为 1200px):

<body onLoad="FB.Canvas.setSize({height: 1200})">
    ...
</body>
<script src="http://connect.facebook.net/en_US/all.js"></script>

When you know desirable height the simplest way to do this is below (let it be 1200px):

<body onLoad="FB.Canvas.setSize({height: 1200})">
    ...
</body>
<script src="http://connect.facebook.net/en_US/all.js"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文