Autoscroll script not works

135 Views Asked by At

the script shown here works at link but not works when i put inside web site, what is wrong ?http://jsfiddle.net/QUCWe/

//<![CDATA[ 
$(window).load(function(){
function scroll(speed) {
    $('html, body').animate({ scrollTop: $(document).height() - $(window).height() }, speed, function() {
        $(this).animate({ scrollTop: 0 }, speed);
    });
}

speed = 1000;

scroll(speed)
setInterval(function(){scroll(speed)}, speed * 2);
});//]]>  
1

There are 1 best solutions below

0
On

i change speed * 2 and it worked;

//<![CDATA[ 
$(window).load(function(){
function scroll(speed) {
    $('html, body').animate({ scrollTop: $(document).height() - $(window).height() }, speed, function() {
        $(this).animate({ scrollTop: 0 }, speed);
    });
}

speed = 1000;

scroll(speed)
setInterval(function(){
scroll(speed)
}, 3000);
});//]]>