如何使用自定义 Facebook 对话框,如本示例

发布于 2024-09-19 17:05:07 字数 184 浏览 7 评论 0原文

我如何创建这样的自定义对话框:

alt text

我正在使用带有 graph api/new js-api 的 iframe 应用程序,但我无法找到一种方法来重现这一点,按钮和标题,保持用户语言。

问候。

How i can create a custom dialog like this:

alt text

I'm using iframe application with graph api/new js-api, but i cant figureout a way to reproduce this, the buttons and the title, keep the user languague.

regards.

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

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

发布评论

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

评论(3

半边脸i 2024-09-26 17:05:07

我怀疑他们正在使用类似 jquery Facebox 插件的东西来做自己的模式对话框 http://defunkt.io/facebox/< /a>

他们在画布页面上使用未经批准的广告提供商 (AdBrite) 似乎也违反了 Facebook 政策。

I suspect they are doing their own modal dialog using something like the jquery Facebox plugin at http://defunkt.io/facebox/

They also appear to be violating Facebook policy by using an unapproved ad provider (AdBrite) on a canvas page.

陌若浮生 2024-09-26 17:05:07

您可以使用这个:

var dialog = FB.Dialog.create({
content: '<div style="color: rgb(255, 255, 255); background-color: rgb(109, 132, 180); font-size: 15px; font-weight: bold; padding: 5px; text-align: left;">Error</div><p style="margin:10px 15px;">' + message + '</p><div style="color: rgb(0, 0, 0); background-color: rgb(242, 242, 242); padding: 8px; text-align: right; border-top: 1px solid rgb(198, 198, 198);height:23px;"></div>',
closeIcon: true,
onClose: function() {
    FB.Dialog.remove(dialog);
},
visible: true
});

另请参阅:
http://fbdevwiki.com/wiki/FB.Dialog

You can use this:

var dialog = FB.Dialog.create({
content: '<div style="color: rgb(255, 255, 255); background-color: rgb(109, 132, 180); font-size: 15px; font-weight: bold; padding: 5px; text-align: left;">Error</div><p style="margin:10px 15px;">' + message + '</p><div style="color: rgb(0, 0, 0); background-color: rgb(242, 242, 242); padding: 8px; text-align: right; border-top: 1px solid rgb(198, 198, 198);height:23px;"></div>',
closeIcon: true,
onClose: function() {
    FB.Dialog.remove(dialog);
},
visible: true
});

See also:
http://fbdevwiki.com/wiki/FB.Dialog

万人眼中万个我 2024-09-26 17:05:07

您必须使用 FB.ui 方法来打开这样的对话框。您可以在此处找到示例代码和更多详细信息。

You have to use the FB.ui method to open a dialog like this. You can find example code and more details here.

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