gpt4 book ai didi

facebook - 时间轴页面应用程序高度卡在 800px

转载 作者:行者123 更新时间:2023-11-30 05:23:57 24 4
gpt4 key购买 nike

我正在为具有“时间轴”布局的 Facebook 页面开发应用程序,我希望应用程序的高度随内容缩放,但应用程序的高度固定为 800 像素。

当前的应用程序设置显示高度设置为“流体”,但我也尝试将高度固定为随机值,但没有发现任何变化。

如何让我的应用程序的高度根据其内容进行缩放?感谢您的任何回复。

更新:所以将它附加到我的 body 标签上是有效的。

<body onload="FB.Canvas.setSize({width: 810, height: 910})">
<div id="fb-root"></div>
<script>
(function () {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js#xfbml=1&appId=YOURAPPID;
e.async = true;
document.getElementById('fb-root').appendChild(e);
} ());
</script>

但我对它为何起作用一无所知,所以我想我会将我的问题更改为“以上代码的作用是什么?”这样我就可以真正了解下次要采取的步骤。不过,我暂时将其作为答案来结束这个问题。

最佳答案

这是正确的设置方式,我只需要盯着它看一会儿并阅读文档太多次。将以下内容放在 fb-root div 下效果非常好。

window.fbAsyncInit = function () {
FB.init({
appId: 'YOURAPPID', // App ID
channelUrl: '/channel.html', // Channel File
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
FB.Canvas.setAutoGrow(); //Resizes the iframe to fit content
};
// Load the SDK Asynchronously
(function (d) {
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) { return; }
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
} (document));

关于facebook - 时间轴页面应用程序高度卡在 800px,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9626136/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com