互联网上有数百篇关于此的帖子,其中很多都在 StackOverflow 上,但不幸的是,提到的解决方案似乎都不适合我。我花了 6 个小时的大部分时间修修补补,但没有成功。
这是我所拥有的:
- 我创建了一个 Facebook 应用程序并将其添加为页面选项卡。
- 我已在此处将应用程序添加到 Facebook 页面:https ://www.facebook.com/pages/PARKROYAL-Darling-Harbour-Sydney/236917443012539?sk=app_195092900626979
但我不能为我的生活设置 iFrame 的高度,以便我可以安全地移除滚动条!
这是我的 HTML 代码的结构:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PARKROYAL Magic Moments</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
</head>
<body>
<MAIN CODE HERE>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId : '<APP-ID>',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
</script>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.Canvas.setSize( { height: 1642 } );
}
// Do things that will sometimes call sizeChangeCallback()
function sizeChangeCallback() {
FB.Canvas.setSize( { height: 1642 } );
}
</script>
</body>
</html>
在我的 CSS 中,我还设置了 body { overflow:hidden }