2012-04-23 48 views
0

林easypaginate插件 http://cssglobe.com/post/9801/easy-paginate-jquery-plugin-for-paginationjQuery的easypaginate淡出使用

這裏不工作是代碼:http://jsfiddle.net/qTwa8/1/

基本上這PAGINATE顯示了淡入/出每個列表項是:

jQuery(function($){ 
    $('ul#items').easyPaginate({ 
     step:12 
    }); 
}); 

但當設置像這樣:

jQuery(function($){ 
    $('ul#items').easyPaginate({ 
     step:20 
    }); 
}); 

淡入淡出效果不顯示?我如何顯示淡入淡出效果?謝謝。

回答

0

這是這個插件應該如何工作。通過看它的代碼,你會看到這樣的情況出現:

if(count>step){ // You should remove this condition to have effects in your case. 

    var pages = Math.floor(count/step); 
    .......rest of code...... 
    }; 

刪除此條件和效果會工作。