I've just completed one of the FCC project based on portfolio. It would be great if you guys provide your personal feedback on my project. Thanks

Good work @heyDante I feel the nav links to be too slow to my taste - keep going :thumbsup:

Nice mate :slight_smile: but i agree with @gusth7k, the animation is really slow. maybe this could help: https://material.io/guidelines/motion/duration-easing.html

Thanks for the feedback guys. I agree with the animation being slow. I’ll look onto it and will try to fix it. Could you tell me how do I set the scroll speed on jQuery?

$("#portfolio").click(function() {
    $('html, body').animate({
        scrollTop: $("#portfolio1").offset().top
    }, 2000);
});

The 2000 here means 2s, test with lower values.

1 Like

Thank you very much. It worked.