如何制作jquery垂直定时内容滑块?

时间:2014-09-22 21:38:52

标签: jquery slider

我正在尝试制作一个垂直jquery定时内容滑块。我有五个部分,每个部分都有自己的ID和一个div中的'section'类,有一个'holder'类。到目前为止我有这个js代码,但是所有部分似乎都在立即滑动,我收到了错误。

$(document).ready(function(){

$('#section1, #section2, #section3, #section4, #section5').hide('fast');

});

$('.holder #section1').show('slow').delay(3000);
$(this).slideUp('fast');
$(this).nextUntil(['#section5']).show('slow').delay(3000);

1 个答案:

答案 0 :(得分:1)

为什么不在下面尝试这个非常简单的定时幻灯片!我喜欢它!

$(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){
      $('.fadein :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('.fadein');}, 
      3000);
});
fadein { position:relative; width:500px; height:332px; }
.fadein img { position:absolute; left:0; top:0; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div class="fadein">
  <img src="http://farm3.static.flickr.com/2610/4148988872_990b6da667.jpg">
  <img src="http://farm3.static.flickr.com/2597/4121218611_040cd7b3f2.jpg">
  <img src="http://farm3.static.flickr.com/2531/4121218751_ac8bf49d5d.jpg">
</div>