Facebook 作为标签滚动条——仍然不走运

发布于 2024-12-09 22:03:14 字数 1137 浏览 0 评论 0原文

我真的很苦恼如何让滚动条离开我的选项卡。我只是想为公司 Facebook 页面创建一个 Facebook 选项卡,并且我已经尝试了一切方法来让垂直滚动消失。这是我正在使用的代码

     <head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link href="facebookstyles.css" rel="stylesheet" type="text/css" />

 <script type="text/javascript" src="scripts/jquery.innerfade.js"></script>





<fb:share-button type="icon_link" class="url"></fb:share-button>



</head>


<body>

<table>

CONTENT

</table>
<p>&nbsp;</p>
<p>&nbsp;</p><div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {

    FB.init({appId: '{{277868305571181}}', status: true, cookie: true,xfbml: true});

    window.setTimeout(function() {
        FB.Canvas.setSize({height:1500});
    }, 250);

  };
  (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);
  }());
</script>

  </body>
</html> 

I am really struggling with how to get the scroll bars off of my tab. I am simply trying to create a Facebook tab for a company Facebook page and I have tried everything to get the vertical scroll to go away. Here is the code I am working with

     <head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link href="facebookstyles.css" rel="stylesheet" type="text/css" />

 <script type="text/javascript" src="scripts/jquery.innerfade.js"></script>





<fb:share-button type="icon_link" class="url"></fb:share-button>



</head>


<body>

<table>

CONTENT

</table>
<p> </p>
<p> </p><div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {

    FB.init({appId: '{{277868305571181}}', status: true, cookie: true,xfbml: true});

    window.setTimeout(function() {
        FB.Canvas.setSize({height:1500});
    }, 250);

  };
  (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);
  }());
</script>

  </body>
</html> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

垂暮老矣 2024-12-16 22:03:14

您可能需要在应用程序设置中启用 OAuth2。

    <div id="fb-root"></div>
    <script>
      window.fbAsyncInit = function() {

        FB.init({
appId: '277868305571181',
 status: true, 
cookie: true,
xfbml: true,
oauth  : true // enable OAuth 2.0
});    
FB.Canvas.setAutoGrow();
      };
      (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);
      }());
    </script>

You may need to enable OAuth2 in your application settings.

    <div id="fb-root"></div>
    <script>
      window.fbAsyncInit = function() {

        FB.init({
appId: '277868305571181',
 status: true, 
cookie: true,
xfbml: true,
oauth  : true // enable OAuth 2.0
});    
FB.Canvas.setAutoGrow();
      };
      (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);
      }());
    </script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文