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

Resize does the exact opposite #291

Closed imrafaelhi closed 4 years ago

imrafaelhi commented 4 years ago

Nevermind, fixed it by adding a small timeout: $(".btn.btn-link").click(function(){ setTimeout(function(){ $(window).trigger('resize').trigger('scroll'); }, 500); });