ここに示されているスクリプトはリンクで機能しますが、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);
});//]]>