直接链接到灯箱并自动打开

发布于 2024-10-29 02:19:57 字数 498 浏览 4 评论 0原文

我需要能够从外部网站直接链接到灯箱(当前使用 Lightbox2)内的图像。基本上,我想在 Twitter 上发布我的一张图像的链接,然后让该链接转到我的网站,打开灯箱,然后显示该图像。我还需要在灯箱中查看图像时能够在地址栏中看到图像链接 URL。我发现了这个: http://www.huddletogether.com/forum/comments.php ?DiscussionID=1407 但它适用于旧版本的灯箱,我一生都无法让它工作。

这是一个工作示例: http://www.rudirakete.de/rudirakete/main#2008-10 -5-1526107735

I need to be able to directly link to images within a lightbox (currently using Lightbox2) from an external website. Basically I want to post a link to one of my images on say, Twitter, and have the link go to my website, open a lightbox, and display the image. I also need to be able to see the image link URL in the address bar while viewing the image in a lightbox. I found this: http://www.huddletogether.com/forum/comments.php?DiscussionID=1407 but it's for an old version of lightbox and for the life of me I couldn't get it work.

Here's a working example:
http://www.rudirakete.de/rudirakete/main#2008-10-5-1526107735

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

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

发布评论

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

评论(1

夜访吸血鬼 2024-11-05 02:19:57

为什么不使用 jQuery dialog()

var p = '<img src="http://www.geekologie.com/2007/12/07/future-car-1.jpg" />';
$('a').click(function() {
    $(p).dialog({
        minWidth: 500,
        buttons: {
            OK: function() {
                $(this).dialog("destroy");
            }
        }
    })
})

检查工作示例 http://jsfiddle.net/msKZt/3/

Why not use jQuery dialog().

var p = '<img src="http://www.geekologie.com/2007/12/07/future-car-1.jpg" />';
$('a').click(function() {
    $(p).dialog({
        minWidth: 500,
        buttons: {
            OK: function() {
                $(this).dialog("destroy");
            }
        }
    })
})

Check working example at http://jsfiddle.net/msKZt/3/

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