jQuery / FancyBox:首先显示提示和技巧,如果没有设置 cookie?
我创建了一个图像库,用户单击缩略图,就会弹出一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 jQuery Cookie 插件 (http://plugins.jquery.com/project/Cookie )来测试和设置 cookie:
如果尚未设置 cookie,
$.cookie("rollover")
将返回 null。You can use the jQuery Cookies plugin (http://plugins.jquery.com/project/Cookie) to test and set cookies:
$.cookie("rollover")
will return null if the cookie hasn't been set.