Quote:
Originally Posted by BadgerDog
Un-installed... thanks anyway ...
Couldn't get bounce at top to stop ....
Regards,
Badger
|
Old post but you should be able to edit /clientscript/vsqscrolltotop.js
Find:
Code:
var scroll = new Y.Scroll(document.getElementsByTagName((YAHOO.env.ua.webkit ? "body" : "html"))[0], {scroll: {to: [0, 0]}}, 3.5, Y.Easing.bounceOut);
Replace with:
Code:
var scroll = new Y.Scroll(document.getElementsByTagName((YAHOO.env.ua.webkit ? "body" : "html"))[0], {scroll: {to: [0, 0]}}, 3.5, Y.Easing.easeNone);
Notice what changed is in red.
Descriptions/options for Y.Easing.??
Code:
easeIn
Begins slowly and accelerates towards end. (quadratic)
easeNone
Uniform speed between points.
easeOut
Begins quickly and decelerates towards end. (quadratic)