SerialScroll_constant-scrolling.js 634 B

12345678910111213141516171819
  1. /*!*****************************************
  2. Snippet for jQuery.SerialScroll
  3. --Achieve constant auto scrolling--
  4. *******************************************/
  5. jQuery(function( $ ){
  6. $('#pane').serialScroll({
  7. //...
  8. interval: 1,//auto scroll constantly
  9. easing:'linear'
  10. //...
  11. });
  12. });
  13. /*!**************************************************************************
  14. You probably don't want the default easing equation of jQuery (swing)
  15. using 'linear' will keep constant velocity thru the animation.
  16. You can change that if you want.
  17. *****************************************************************************/