我有一个标签应用程序在高度和宽度上都设置为流体。高度没问题......宽度不起作用,所以我的页面的很大一部分(只有 648 像素宽)没有显示出来。我们故意将宽度设置为小于最大值,这样我们就不会遇到这个问题。要查看您可以转到箭头紧固件页面...比赛或像我们一样进入标签。
问问题
894 次
2 回答
1
标签应用程序仅适用于固定宽度:520 像素。只有高度是可设置的。
Fluid Width 仅适用于 Canvas 应用程序 (apps.facebook.com/app-name),这就是为什么这些设置以“Canvas”为前缀(Canvas Width, Canvas Height)。
麦克风
于 2011-09-18T11:00:33.947 回答
0
在结束正文标记上方添加您的 AppID 和以下代码。它将在标签上完美运行。
<script type="text/javascript">
fb_root = document.createElement( 'div' );
fb_root.id = 'fb-root';
try
{
window.document.childNodes[0].appendChild( fb_root );
}
catch( error )
{
window.document.body.appendChild( fb_root );
}
window.fbAsyncInit = function() {
FB.init({
appId : '222222222222222', //your app ID
status : true, // check login status
cookie : true // enable cookies to allow the server to access the session
});
//FB.Canvas.setSize({ width: 520, height: 1400 });
function getDocHeight() {
var D = document;
return Math.max(
Math.max(D.body.scrollHeight, D.documentElement.scrollHeight),
Math.max(D.body.offsetHeight, D.documentElement.offsetHeight),
Math.max(D.body.clientHeight, D.documentElement.clientHeight)
);
}
var mySetSize = function() {
var height = getDocHeight();
FB.Canvas.setSize({ width: 520, height: height });
setTimeout( mySetSize, 200 );
};
setTimeout( mySetSize, 200 );
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
var head = document.getElementsByTagName('head')[0],
style = document.createElement('style'),
rules = document.createTextNode('body { position: relative; max-width: 520px!important;width: 520px!important; overflow: hidden!important; margin: 0px!important; }');
style.type = 'text/css';
if(style.styleSheet)
style.styleSheet.cssText = rules.nodeValue;
else style.appendChild(rules);
head.appendChild(style);
</script>
于 2011-11-14T07:23:55.603 回答