jquery自动滚动条

时间:2010-04-16 21:44:02

标签: jquery

我有一个div,我想每5秒自动滚动一次,我可以用JQuery做到吗?

5 个答案:

答案 0 :(得分:1)

根据您对演示链接的评论,您可能需要使用Cycle插件:http://jquery.malsup.com/cycle/

是的,它适用于任何标签,而不仅仅是图像。如果您想循环浏览多个<div>标记,可以执行以下操作:

<div class="slideshow">
    <div>Test 1</div>
    <div>Test 2</div>
    <div>Test 3</div>
</div>

它将循环播放幻灯片类中的任何标记。

答案 1 :(得分:0)

查看scrollTop()函数...

http://api.jquery.com/scrollTop/

答案 2 :(得分:0)

有一个非常相似的coda滑块插件。

http://www.ndoherty.biz/demos/coda-slider/2.0/

如果您想创建自己的教程,可以使用自定义教程

http://jqueryfordesigners.com/coda-slider-effect/

希望这些有所帮助,思南。

答案 3 :(得分:0)

<!doctype html>
<html>
<head>
<title>JQuery Cycle Plugin - Example Slideshow</title>
<style type="text/css">
.slideshow { height: 232px; width: 232px; margin: auto }
.slideshow img { padding: 15px; border: 1px solid #ccc; background-color: #eee; }
</style>
<!-- include jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>

<!-- include Cycle plugin -->
<script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.2.74.js"></script>

<!--  initialize the slideshow when the DOM is ready -->
<script type="text/javascript">
$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'shuffle' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    });
});
</script>
</head>
<body>
    <div class="slideshow">
        <img src="http://cloud.github.com/downloads/malsup/cycle/beach1.jpg" width="200" height="200" />
        <img src="http://cloud.github.com/downloads/malsup/cycle/beach2.jpg" width="200" height="200" />
        <img src="http://cloud.github.com/downloads/malsup/cycle/beach3.jpg" width="200" height="200" />
    </div>
</body>
</html>

这正是我想要的,但我希望它能够使用标签而不是图像...我可以修改它吗?

答案 4 :(得分:0)

var scrolling = window.setInterval("autoScroll()", 5000);

function autoScroll(elem) {

    $(function() {
        $('div#mycontainer').animate({ scrollTop: '+=' + 40 });
    });

}