如何固定宽度
我有一个加载页面的 facebook 应用程序画布,但为什么页面显示尺寸为 480 x 800,而不是实际尺寸?我将画布宽度选择为固定,这应该将页面显示为 760px 宽度。
当我查看框架的源代码时,它看起来像
window.fbAsyncInit = function() {
FB.init({appId: '', status: true, cookie: true,
xfbml: true});
FB.Canvas.setSize({ width: 484, height: 825 });
};
I have a facebook app canvas that loads a page, but why does the page display in the size 480 x 800 but not the exact size? I have canvas width selected as fixed which should show the page as 760px width.
When I look at the frame's source code it looks like
window.fbAsyncInit = function() {
FB.init({appId: '', status: true, cookie: true,
xfbml: true});
FB.Canvas.setSize({ width: 484, height: 825 });
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我提到,用简单的 HTML 替换您的应用程序:
并检查画布页面尺寸是否保持更宽。如果画布宽度设置为 720px,则可能是您的应用程序 HTML 样式不佳,无论如何都会推动框架。
I mention that, replace your app with a simple HTML:
And check the canvas page size remains wider or not. If the canvas width set to 720px, may be your app HTML doesn't well styled and push the frame anyway.