Facebook 自定义选项卡无法在 IE7 或 IE8 中展开
理想情况下,我希望我的 Facebook 自定义选项卡随内容一起扩展 - 我似乎能够在所有最新的浏览器中正常工作,但在 IE7 和 IE8 上却不行。
页面只是提前切断,隐藏了其余的内容。我现在正在使用以下 js 代码:
window.fbAsyncInit = function() {
FB.Canvas.setSize();
}
function sizeChangeCallback() {
FB.Canvas.setSize();
}
和我的 CSS:
#container {
background: url('../images/background.jpg');
height: 100%;
position:relative;
clear:both;
background-repeat: no-repeat;
}
我的画布高度设置为流体。
任何想法/提示将不胜感激!
谢谢 MK
Ideally I want my Facebook custom tab to expand with the content - I seem to be able to get this working OK in all the latest browsers, but not when it comes to IE7 and IE8.
The pages just cuts off early, hiding the rest of the content. I'm using the following js code right now:
window.fbAsyncInit = function() {
FB.Canvas.setSize();
}
function sizeChangeCallback() {
FB.Canvas.setSize();
}
And my CSS:
#container {
background: url('../images/background.jpg');
height: 100%;
position:relative;
clear:both;
background-repeat: no-repeat;
}
My canvas height is set to fluid.
Any ideas/tips would be much appreciated!
Thanks
MK
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是在谈论画布应用程序还是页面选项卡应用程序?
如果是后者,宽度为 520px - 页面选项卡应用程序没有流体选项
Are you talking about a canvas app or a page tab app?
If the latter, the width is 520px - there is no fluid option for page tab apps