Colorbox,如何以拇指的形式显示下一张和上一张图片?

时间:2013-07-15 17:42:26

标签: jquery css gallery thumbnails colorbox

我刚刚开始在项目中使用colorbox,我想在左侧和右侧显示下一个和上一个图像,而不是仅显示箭头。

是否可以通过组获取下一个和上一个并在div中将它们显示为背景?

伪:

$("a.gallery").colorbox({
  $("#nextBtn").css("background-image":$(this).next-image));
});

有点草率,但我觉得你得到了我想要的东西,谢谢你提前!

1 个答案:

答案 0 :(得分:0)

你在尝试的是错的。如果要添加CSS,可以将其作为对象(在{}之间)或作为单个参数除以逗号来实现。

或者:

$("a.gallery").colorbox({
    $("#nextBtn").css({"background-image":$(this).next-image});
});

或者

$("a.gallery").colorbox({
    $("#nextBtn").css("background-image",$(this).next-image);
});

$(this).next-image也没有意义。 这应该是这样的:

$(this).next('img');

或类似的东西。