弹出 Facebook 应用程序的图像

发布于 2024-11-18 17:07:09 字数 165 浏览 2 评论 0原文

我有一个 facebook 应用程序框架,它只渲染来自网络服务器的图像。我使用 img src 标签来渲染图像。

图像显示在 Facebook 屏幕的一个小矩形区域中。我希望弹出图像以覆盖用户窗口屏幕。所以这是他在那一刻看到的唯一图像。我怎样才能做到这一点?我需要使用 html 标签吗?你建议哪些?

i have a facebook application framework that just renders an image from a web server . i use the img src tag to render the image .

the image gets displayed in a small rectangular region of the facebook screen . i would like the image to pop-out to cover the users window screen . so that its the only image he views as of that moment . How can i do that ? do i need to use html tags . which ones do you suggest ?

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

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

发布评论

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

评论(1

过度放纵 2024-11-25 17:07:09

您可以使用Colorbox

$(document).ready(init)
{
    var options = {};
    options.href = "http://url-to-your-image.com";
    options.width = "100%";
    options.height = "100%";

    $.colorbox( options ); 
}

You can use Colorbox.

$(document).ready(init)
{
    var options = {};
    options.href = "http://url-to-your-image.com";
    options.width = "100%";
    options.height = "100%";

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