Transition page animation choppy

I’ve added some Javascript for page transition delay (1000MS before the new page animated) and there is major choppiness. Anyone know a fix?

That transition I’m referring to:

-Go to Product Design Consulting
-Click first project “Omelo” and watch the choppiness. You can click “back” to replay

Here’s the code:

<script>
$('a.my-link').click(function (e) {
    e.preventDefault();         
    var goTo = this.getAttribute("href");
    setTimeout(function(){
         window.location = goTo;
    },1000);       
});
</script>

Here is my site Read-Only: https://preview.webflow.com/preview/calebbarclay-com?utm_source=calebbarclay-com&preview=447f2a91048ad1be040522920f8768c5

Hi @caleb I took a look at your page and i’m not experiencing any choppiness. Can you post a video of what you are seeing? I’d be happy to look into this more.

Thanks Nelson!

Here’s a link to the video: Dropbox - Sitebug-transitionChop.mov - Simplify your life

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.