我刚刚使用jCarousel工作,它工作正常,但我的客户需要再添加一件东西。请检查一下:http://sneakyrascal.com/coupon2/ 你可以在内容滑块的顶部看到“Σελίδα1/ 5”,它指的是5页,必须用当前页面进行更改。我还没有办法做到这一点,是否可以将此功能添加到jCarousel?
由于
答案 0 :(得分:0)
对于那些想要答案的人来说,它已经得到了解决:
$(function(){
$(".jcarousel-next-horizontal").click(function(){
var currentTime = Date.now();
var lastClickTime = $(this).data("lastClickTime");
if (lastClickTime && (currentTime - lastClickTime < 500)) {
return(false); // ignore the click
}
$(this).data("lastClickTime", currentTime); // record time of last click
var currentValue = $(".pages").text();
var five = "5";
var newValue = parseInt(parseFloat(currentValue)) + 1;
$(".pages").text(newValue);
if (currentValue==five) {
$(".pages").text("5");
}
});
$(".jcarousel-prev-horizontal").click(function(){
var currentTime = Date.now();
var lastClickTime = $(this).data("lastClickTime");
if (lastClickTime && (currentTime - lastClickTime < 500)) {
return(false); // ignore the click
}
$(this).data("lastClickTime", currentTime); // record time of last click
var currentValue = $(".pages").text();
var newValue = parseInt(parseFloat(currentValue)) - 1;
var one = "1";
$(".pages").text(newValue);
if (currentValue==one) {
$(".pages").text("1");
}
});
});