I'm working on my portfolio at the moment and I am using the ScrollTo jQuery plugin to let the visitors navigate through the pages. I got that all working but I also wanted to implement a link with which you can scroll from one page to the other, like a prev next page, and that has to be different on every page.
I also got that working but somehow it shows the wrong links on the wrong pages. For example: page 2 has the links of page 1, page 3 has the links of page 2. And when you click on that link again, then the links will change to the right ones.
You can check it out here: http://machimedia.nl/portfolio/
This is the function I used:
function reloadPageNav(){
var section1Top = 0;
// The top of each section is offset by half the distance to the previous section.
var section2Top = $('#portfolio').offset().left - (($('#aboutme').offset().left - $('#portfolio').offset().left) / 2);
var section3Top = $('#aboutme').offset().left - (($(document).width() - $('#aboutme').offset().left) / 2);;
if($(document).scrollTop() >= section1Top && $(document).scrollTop() < section2Top){
$('nav#homenav').delay(1000).fadeIn(800);
} else if ($(document).scrollTop() >= section2Top && $(document).scrollTop() < section3Top){
$('nav#portfolionav').delay(1000).fadeIn(800);
} else if ($(document).scrollTop() >= section3Top){
$('nav#aboutmenav').delay(1000).fadeIn(800);
} }
And it is called when a.link is clicked, so that whenever a link is clicked the pagenav will be redrawn. I used the following function for this.
$('a.link').click(function () {
$('#wrapper').scrollTo($(this).attr('href'), 1500);
//setPosition($(this).attr('href'), '#cloud1', '0px', '400px', '800px', '1200px')
//setPosition($(this).attr('href'), '#cloud2', '0px', '800px', '1600px', '2400px')
$('a.link').removeClass('selected');
$(this).addClass('selected');
$('nav.next').fadeOut(500);
$('nav.prev').fadeOut(500);
reloadPageNav();
homeNav();
return false;
});
Hopefully any of you can help me with this problem and sort it out for me. Thanks in advance for your help ;)