使用新的 Javascript SDK 调整 Facebook 应用程序的 iFrame 大小

发布于 2024-08-31 15:52:12 字数 151 浏览 8 评论 0原文

有谁知道 FB.CanvasClient.startTimerToSizeToContent() 的替代方法是什么,用于在新的 Facebook javascript SDK 中调整 iframe 内容的大小?

或者也许有替代技术可以达到相同的效果?

谢谢

Does anyone know what's the replacement method for FB.CanvasClient.startTimerToSizeToContent() to resize iframe content in the new javascript SDK for Facebook?

Or maybe if there is an alternative technique for achieving the same effect?

Thanks

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

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

发布评论

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

评论(1

原谅我要高飞 2024-09-07 15:52:12

示例

如果您知道内容将更改大小,但不知道何时更改,则此函数非常有用。会有轻微的延迟,因此如果您知道内容何时更改大小,您应该自己调用 setSize (并节省用户的 CPU 周期)。

window.fbAsyncInit = function() {
  FB.Canvas.setAutoResize();
}

如果您需要停止计时器,只需传递 false 即可。

FB.Canvas.setAutoResize(false);

如果您希望计时器以不同的时间间隔运行,您也可以这样做。

FB.Canvas.setAutoResize(91);

注意:如果只有 1 个参数且为数字,则假定为区间。

参数

Name      Type  Description
onOrOff   Boolean   Whether to turn the timer on or off. true == on, false == off. default is true
interval  Integer   How often to resize (in ms). default is 100ms

Examples

This function is useful if you know your content will change size, but you don't know when. There will be a slight delay, so if you know when your content changes size, you should call setSize yourself (and save your user's CPU cycles).

window.fbAsyncInit = function() {
  FB.Canvas.setAutoResize();
}

If you ever need to stop the timer, just pass false.

FB.Canvas.setAutoResize(false);

If you want the timer to run at a different interval, you can do that too.

FB.Canvas.setAutoResize(91);

Note: If there is only 1 parameter and it is a number, it is assumed to be the interval.

Parameters

Name      Type  Description
onOrOff   Boolean   Whether to turn the timer on or off. true == on, false == off. default is true
interval  Integer   How often to resize (in ms). default is 100ms
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文