jQuery scrollTop doesn't animate -
having issue jquery scrolltop won't animate @ all.
this code.
function nextsection() { var counter = $('.current .subpage').size(); var $this = $('.current > .subcurrent'); if(settings.subcount != counter) { $this.next().addclass('subcurrent'); $this.removeclass('subcurrent'); settings.subcount++; $('.current').stop().animate({scrolltop : $this.next().offset().top}, settings.speed, settings.easing); } } function prevsection() { var counter = $('.current > .subpage').size(); var $this = $('.current > .subcurrent'); if(settings.subcount != 1) { $this.prev().addclass('subcurrent'); $this.removeclass('subcurrent'); settings.subcount--; $('.current').stop().animate({scrolltop : $this.offset().top}, settings.speed, settings.easing); } } these functions set engage on key , down,
scrollleft works following code.
$this.prev().addclass('current'); $this.removeclass('current'); settings.count--; elements.page.stop().animate({scrollleft : $('.current').offset().left}, settings.speed, settings.easing);
Comments
Post a Comment