jQuery / FancyBox:首先显示提示和技巧,如果没有设置 cookie?

发布于 2024-10-18 21:24:56 字数 185 浏览 3 评论 0原文

我创建了一个图像库,用户单击缩略图,就会弹出一个 FancyBox 框。

弹出窗口中的图像有一个翻转显示修饰前和修饰后。

我想设置 FancyBox 在第一次单击图像时显示标题(或类似内容),以解释用户可以通过鼠标悬停来查看之前和之后的内容。

我该怎么做呢?

非常感谢,

安迪

I have created an image gallery in which a user clicks a thumbnail and a FancyBox box pops up.

The image within the popup has a rollover showing before retouching and after retouching.

I want to set up FancyBox to show a caption (or similar) when an image is clicked for the first time, to explain that users can rollover to see the before and after.

How would I go about doing this?

Many thanks,

Andy

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

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

发布评论

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

评论(1

甜味超标? 2024-10-25 21:24:56

您可以使用 jQuery Cookie 插件 (http://plugins.jquery.com/project/Cookie )来测试和设置 cookie:

if (!$.cookie("rollover")) { 
  $("#caption").show();
  $.cookie("rollover", "dont show again");
}

如果尚未设置 cookie,$.cookie("rollover") 将返回 null。

You can use the jQuery Cookies plugin (http://plugins.jquery.com/project/Cookie) to test and set cookies:

if (!$.cookie("rollover")) { 
  $("#caption").show();
  $.cookie("rollover", "dont show again");
}

$.cookie("rollover") will return null if the cookie hasn't been set.

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