如何固定宽度

发布于 2025-01-02 00:03:02 字数 303 浏览 1 评论 0原文

我有一个加载页面的 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 技术交流群。

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

发布评论

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

评论(1

对风讲故事 2025-01-09 00:03:02

我提到,用简单的 HTML 替换您的应用程序:

<div style='height:200px;width:720px;margin:0;padding:0;background:red;display:block;overflow:hidden;'>Test</div>

并检查画布页面尺寸是否保持更宽。如果画布宽度设置为 720px,则可能是您的应用程序 HTML 样式不佳,无论如何都会推动框架。

I mention that, replace your app with a simple HTML:

<div style='height:200px;width:720px;margin:0;padding:0;background:red;display:block;overflow:hidden;'>Test</div>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文