Please see URL: http://backstageweb.net/newsite and click a few of the nav buttons. Note the speed and easing.
Now see http://www.demo.pagescroller.com/ and note its speed and easing (faster with more pronounced easing). This is the effect I'd like.
Pagescroller.com is where I got this plugin code (I bought the Pro edition). However, when I look at the source code for their page, I see this:
$('#wrapper').pageScroller({
navigation: navLabel,
animationSpeed: 750,
animationType: 'easeOutExpo',
navigationClass: 'topNav dark',
scrollOffset: -50
});
Whereas on my page there is only this:
$('#wrapper').pageScroller({
navigation: '.pageScrollerNav',
scrollOffset: -50
});
});
When I set an animationSpeed of 750 in my index.htm file and change the speed to 750 in the
jquery.pagescroller.js, it doesn't change the speed at all (remains slower), and when I change the animationType
to 'easeOutExpo' the animation doesn't work at all. Can anyone tell me how to get the results I want here?
I've tried contacting PageScroller and I get no reply.
Any help is appreciated.
John