我正在使用easypaginate插件 http://cssglobe.com/post/9801/easy-paginate-jquery-plugin-for-pagination
这是代码:http://jsfiddle.net/qTwa8/1/
基本上这个paginate显示每个带有fadein / out的列表项:
jQuery(function($){
$('ul#items').easyPaginate({
step:12
});
});
但是设置如下:
jQuery(function($){
$('ul#items').easyPaginate({
step:20
});
});
淡化效果没有显示?如何显示淡入淡出效果?感谢。
答案 0 :(得分:0)
这个插件应该如何工作。仔细查看它的代码,你会在那里看到这样的情况:
if(count>step){ // You should remove this condition to have effects in your case.
var pages = Math.floor(count/step);
.......rest of code......
};
删除此条件,效果将起作用。