Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
201 views
in Technique[技术] by (71.8m points)

javascript - Horizontal FullPager scroll Animate

I have this simple full-page horizontal scroll code, I would like to add an animate () to give it a 2 second time to scroll but I don't know how. You can also help me by advising me, please.

$('#fullpage').on('mousewheel', function(event, delta) {
    
  var direction = delta > 0 ? 1 : -1;
  
    this.scrollBar = true;
    this.scrollLeft -= jQuery(window).width() * direction;
     
    event.preventDefault();
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
...