I want to create paging between sets of columns created via the jQuery Columnizer plugin
//UPDATE//
I found some code to do paging which I have modified to work with the columnizer plugin (newsletter sample 10) for jQuery. The only problem is I can only go to the next part of the article (It's split into 3 columns per part). For some reason I can't go back to the previous part of the article. If I click the ".articleprevbutton" it just takes me to the next part. The code for paging is from here http://pastebin.me/217b55dff89af94ad04de32328dca62a and is made for an image carousel. I don't need it to loop back round to the beginning at the last part of the article when I click next. I just don't know how to take it out without it breaking.
$(function(){
var content_height = 466;
var page = 1;
function buildNewsletter(){
if($('#theArticle').contents().length > 0){
$page = $("#page_template").clone(true).addClass("page").css("display", "block");
$page.find("#partnumbertext h3").append(page);
$("#singlepostbox").append($page);
page++;
$('#theArticle').columnize({
columns: 3,
target: ".page:last .content",
overflow: {
height: content_height,
id: "#theArticle",
doneFunc: function(){
buildNewsletter();
}
}
});
}
$('.page').hide();
$('.page:first').show();
$('.articleprevbutton, .articlenextbutton').click( function (ev) {
//prevent browser jumping to top
ev.preventDefault();
//get current visible item
var $visibleItem = $('.page:visible');
//get total item count
var total = $('.page').length;
//get index of current visible item
var page = $visibleItem.prevAll().lengt开发者_高级运维h;
//if we click next increment current index, else decrease index
$(this).attr('href') === 'Next' ? page++ : page--;
//if we are now past the beginning or end show the last or first item
if (page === -1){
page = total-1;
}
if (page === total){
page = 0
}
//hide current item
$visibleItem.hide();
//fade in the relevant item
$('.page:eq(' + page + ')').fadeIn(500);
});
}
setTimeout(buildNewsletter);
});
Very much an amateur jQuery user in need of help. Any would be great. Also any improvements are welcome.
Ok I finally got it working using some of the code from my question and the rest from here: http://www.jsfiddle.net/brunolm/256mU/. The pain is over, if you have any tips on how to reduce or improve the code they are more than welcome.
$(function(){
// columnizer section creating all the pages of columns, I have 3
// columns per page, goto the link at the bottom to find out more about the
// columnizer newslettter code.
var content_height = 466;
function buildNewsletter(){
if($('#theArticle').contents().length > 0){
$page = $("#page_template").clone(true).addClass("page").css("display", "block");
$("#singlepostbox").append($page);
$('#theArticle').columnize({
columns: 3,
target: ".page:last .content",
overflow: {
height: content_height,
id: "#theArticle",
doneFunc: function(){
buildNewsletter();
}
}
});
}
// Code for post nav info before click, total of pages reused on click. For example 1 of 3
var $pagination = $("#PostNav");
var total = $('.page').length;
var current = $pagination.data("Current") ? $pagination.data("Current") : 1;
// Hides all pages except the very first page and shows the current page number + total number of pages
$('.page').hide();
$('.page:first').show();
$("#pagenumbertext").text("page " + (current) + " of " + total + "");
}
setTimeout(buildNewsletter);
});
$("#PostNav a").click(function (e) {
e.preventDefault();
var $this = $(this);
var $pagination = $("#PostNav");
var $thepage = $(".page");
// total number of pages
var total = $('.page').length;
// Current page index
var current = $pagination.data("Current") ? $pagination.data("Current") : 0;
/* handling prev & next buttons */
if ($this.index() == 0) /* Previous */
{
/* go 1 back or start at the end */
current = ((current - 1) < 0 ? (total - 1) : (current - 1));
}
else /* Next */
{
/* go 1 forward or start at the beginning */
current = ((current + 1) == total ? 0 : (current + 1));
}
/* Save the current index for next time */
$pagination.data("Current", current);
/* Transition to next or previous page and Update which page is visible*/
$thepage.css("display", "none").eq(current).css("display", "").fadeIn(500);
$("#partnumbertext").text("part " + (current+1) + " of " + total + "");
});
If you need more info and help working with columnizer to get your articles and content into automatic multiple columns split into pages or parts just search google for columnizer. I hope that this helps anyone who really wants to give a website a more magazine feel. With the added benefit of been able to split it into to pages rather than have it all endlessly falling down the page. Thanks.
精彩评论