animate-scroll
animate-scroll copied to clipboard
how can I make items animating no needed to wait till page scrolling stopped?
I want to see animation when scrolling. thank you guy!
I find a way. I make a little change in the animate-scroll.js line 31, which is "$window.find('body').andSelf().on('scroll resize orientationchange touchend gestureend check', function(e) {", I add "touchstart" after "touchend". it is now "$window.find('body').andSelf().on('scroll resize orientationchange touchend touchstart gestureend check', function(e) {", and works.