animate-scroll icon indicating copy to clipboard operation
animate-scroll copied to clipboard

how can I make items animating no needed to wait till page scrolling stopped?

Open klausgao opened this issue 9 years ago • 1 comments

I want to see animation when scrolling. thank you guy!

klausgao avatar Apr 29 '15 03:04 klausgao

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.

klausgao avatar Apr 29 '15 04:04 klausgao