0

ここに示されているスクリプトはリンクで機能しますが、Web サイト内に配置すると機能しません。何が問題なのですか? 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);
});//]]>  
4

1 に答える 1

0

速度を変更* 2するとうまくいきました。

//<![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);
});//]]> 
于 2013-09-06T05:52:07.913 に答える