重複の可能性:
jqueryでの循環スクローラーの実装
マーキーとまったく同じように機能する垂直スクローラーを作成したいと思います。しかし、マーキーを使用する場合、コンテンツ全体が完全に上がった後にのみ戻ってくるように、継続的にしたいのですが、継続的にしたいと思います。
これは私が持っているものです... http://jsfiddle.net/JWfaf/1/
一方向だけにしたいので、スクロールし続けます。達成したいことをクリアしたと思います
HTML
<div class="con">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
JavaScript
function animatethis(targetElement, speed) {
$(targetElement).animate({ marginTop: "+=250px"},
{
duration: speed,
complete: function ()
{
targetElement.animate({ marginTop: "-=250px" },
{
duration: speed,
complete: function ()
{
animatethis(targetElement, speed);
}
});
}
});
};
animatethis($('.con ul li:first-child'), 10000);