我正在测试一个应用程序,当不在页面的选项卡上时它很好。我需要它比 520px 更宽。首先,这是设置适当高度的html代码。
window.fbAsyncInit = function () {
FB.init({
appId: '1428427990741852',
status: true,
cookie: true,
xfbml: true
});
FB.Canvas.setSize({ height: 1100 });
};
// Load the FB SDK Asynchronously
(function (d) {
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) { return; }
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
} (document));
没关系,高度设置正确,您可以看到是应用程序的iframe
<iframe class="smart_sizing_iframe noresize" frameborder="0" scrolling="yes" id="iframe_canvas" name="iframe_canvas_fb_https" src='javascript:""' height="1100" webkitallowfullscreen="" mozallowfullscreen="" oallowfullscreen="" msallowfullscreen="" allowfullscreen="" style="height: 1100px;"></iframe>
iframe
现在,如果我们在应用程序加载到页面(作为选项卡)后检查相同的内容,结果如下。
<iframe name="app_runner_fb_https53cc3ca1018792924747227" id="app_runner_fb_https53cc3ca1018792924747227" style="width: 520px; height: 1100px;" frameborder="0" src="https://s-static.ak.facebook.com/platform/page_proxy/hv09mZVdEP8.js#app_runner_fb_https53cc3ca1018792924747227" class="noresize"></iframe>
如您所见,自动设置了 520px 宽度。
我尝试将Canvas Fixed Width
属性更改为 YES,因此应用程序的宽度设置为 760 像素,但我仍然得到 520 像素的宽度。
另外,我尝试在代码中强制宽度的 px ,FB.Canvas.setSize({ width:760, height: 1100 });
但它仍然停留在 520px 中。
在这里,您可以单独查看应用程序,也可以将其作为选项卡查看。
谢谢。
PS。不确定这是否有价值,但我使用fbootstrap
的是 760/520px 网格系统,但我认为这与 fb 的 iframe 本身无关。