pixelcog / parallax.js

Simple parallax scrolling effect inspired by Spotify.com implemented as a jQuery plugin
MIT License
3.53k stars 840 forks source link

Conflicts with this code. #266

Open ghost opened 6 years ago

ghost commented 6 years ago

I have this code an it makes conflicts with Parallax:

    $('a[data-animation="scroll"]').on("click", function() {
        $("html:not(:animated),body:not(:animated)").animate({
            scrollTop: $($(this).attr("href")).offset().top + 10
        }, 1e3);

It makes the image disappear and appear very faster, but it's annoying.

What is wrong?

wstoettinger commented 6 years ago

what are you trying to accomplish with this code?

ghost commented 6 years ago

A scroll animation when you click an "" with an ID in its HREF.

wstoettinger commented 6 years ago

could you provide the link to the site for testing?