如何在仅指定类名的灯箱(lightbox、colorbox 或 ibox..)应用程序中打开 div?

发布于 2024-12-12 13:10:28 字数 237 浏览 2 评论 0原文

我有一个如下所示的 div:

    <div class="photo">
    <img class="image" width="780" alt="abc/" src="some link of photo">
    ... extra content also
    </div>

当我单击按钮时,如何在灯箱或类似应用程序中打开此 div?

I have a div like following:

    <div class="photo">
    <img class="image" width="780" alt="abc/" src="some link of photo">
    ... extra content also
    </div>

How do I open this div in a lightbox or similar application when I click a button?

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

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

发布评论

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

评论(2

坚持沉默 2024-12-19 13:10:28

您可以使用简单的灯箱插件,例如 Lightbox_me : http://buckwilson.me/lightboxme/

You can use a simple lightbox plugin like Lightbox_me : http://buckwilson.me/lightboxme/

德意的啸 2024-12-19 13:10:28

我在以下示例中使用 fancybox http ://fancybox.net

包含下载的 js 和 css 文件后,代码将是:-

$("button").fancybox({
    content: $('.photo').andSelf().html();
});

用按钮选择器替换“button”。

I am using fancybox in following example http://fancybox.net

after including downloaded js and css files, the code will be:-

$("button").fancybox({
    content: $('.photo').andSelf().html();
});

replace "button" with the button selector.

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