0

I am trying to add easeOutExpo effect while scrolling in a webpage

I originally found this in a website http://www.loisjeans.com/web2012/js/parallax.js I tried a lot to bring the effect ,but in vain.

Is there any simple way to implement animation effects while scrolling.please help.

Thanks in advance.

Andrea Ligios
  • 49,480
  • 26
  • 114
  • 243
Rahul Shah
  • 1,387
  • 4
  • 22
  • 41

2 Answers2

0

You can try iscroll4 may help this for your question supports in all browsers easy to implement.

Karthik Ar
  • 125
  • 6
  • 1
    hmmmm... unfortunately i did not find any way to implement easing functions in that script.anyways ,thanks a lot for your effort – Rahul Shah Jan 22 '13 at 04:17
0

Smooth scroll supports easing: https://github.com/kswedberg/jquery-smooth-scroll Should match your needs:

$.smoothScroll({
    scrollTarget: '#yourdiv'
    easing: "easeOutExpo"
});
Peter
  • 1
  • i wanted the effect every time onscroll and not when some1 hits one button...anyways.......thanks a lot...... – Rahul Shah Feb 28 '13 at 15:26