我的网站上安装了云端转盘:http://dev.webcoder.kz/page/fashion-autumn-2013
$("#cloud").CloudCarousel(
{
xPos: 480,
yPos: 50,
buttonLeft: $("#left-but"),
buttonRight: $("#right-but"),
altBox: $("#alt-text"),
titleBox: $("#title-text")
}
);
当您点击每张图片时 - 此图片以彩色框中的原始图片显示。没关系。
我想在此轮播中使用bringToFront: true
选项。
我的意思是,只有当你点击前面的图像时才显示带有图像原稿尺寸的彩色盒!
单击非正面图像时,只需滚动并成为主图像。
答案 0 :(得分:1)
我遇到了同样的问题。这是修改carousel.js的解决方案
$(container).find("a").click(function(event){
if($(this).index()!=$(container).data("cloudcarousel").frontIndex){
event.preventDefault();
}
});