animated scroll
- by Happy
Using scrollTo plugin to animate scroll effect:
http://plugins.jquery.com/project/ScrollTo
http://demos.flesler.com/jquery/scrollTo/
Tryed this code:
$(".top-scroll").hover(function(){
$("body").scrollTo($(".top-corner"), 2000);
},function(){
$("body").stop().scrollTo();
});
It must start to scroll when we hover .top-scroll block (mouseover) and stop when we hover it out (mouseleave).
Start works, stop - not.
How to fix?
Thanks.