jQuery内容旋转器

时间:2013-01-06 10:08:19

标签: jquery jquery-ui jquery-plugins rotation autorotate

有人可以推荐一些jQuery插件,用于旋转这个HTML结构。

<div id="event_rotator">
 <div class="event">
 <h2>Title</h2>
 <p>Text</p>
 </div>
 <div class="event">
 <h2>Title</h2>
 <p>Text</p>
 </div>
 <div class="event">
 <h2>Title</h2>
 <p>Text</p>
 </div>
</div>

我想,当用户在页面上时,它会在特定时间段内自动旋转,并且用户可以通过单击箭头左右旋转它。

我尝试使用此http://jquery.malsup.com/cycle/pager11.html,但我无法让它工作。

问题是,我从PHP代码中动态获取这个HTML ..我不知道,如何分配所需的css(我可以分配对所有人来说相同的,但我不能指定不同的Z-索引。

2 个答案:

答案 0 :(得分:9)

我在10分钟内创建了这个,所以它不是设计师的画廊,但是这个你需要使用学习如何创建你自己一个带左/右按钮的幻灯片库,自动旋转和悬停/暂停。

HTML,CSS,JS代码非常简单,请看一下:

http://jsbin.com/ofukaq/8/edit

HTML:

<div id="event_rotator">

  <button id="left">left</button>
  <button id="right">right</button>  

  <div id="slider">

     <div class="event">
     <h2>Title1</h2>
     <p>Text1</p>
     </div>
     <div class="event">
     <h2>Title2</h2>
     <p>Text2</p>
     </div>
     <div class="event">
     <h2>Title3</h2>
     <p>Text3</p>
     </div>

  </div>

</div>

CSS:

#event_rotator{
  width:300px;
  height:150px;
  position:relative;
  overflow:hidden;
}
#slider{
  position:absolute;
  height:150px;
  left:0; 
  width:99999px;
}
.event{
  float:left;
  width:300px;
  height:150px;
  background:#eee;
}

最后是jQuery:

$(function(){

var W = $('#event_rotator').width();      // Gallery Width
var N = $('#slider .event').length;    // Number of elements
var C = 0;                          // Counter
var intv;                         // Auto anim. Interval


if(N<=1){ 
  $('#left, #right').hide();  // hide buttons only 1 element
}  


$('#slider').width( W*N );          // Set slider width

$('#left, #right').click(function(){
  // Animation logic
  if(this.id=='right'){

    C++;
    C = C % N;     // reset to '0' if end reached

  }else{ // left was clicked

    C--;
    if(C===-1){   // IF C turns -1 scroll to last one (N-1)
      C = N-1; 
    }

  }
  // Animation
  $('#slider').stop().animate({left: -C*W }, 1000 );
});


// auto rotate

function autoRotate(){
  intv = setInterval(function(){
      $('#right').click();
  },2000); // pause time
}
autoRotate(); // start auto rotate

// pause hover

$('#event_rotator').on('mouseenter mouseleave', function( e ){
   var mEnt = e.type=='mouseenter';
  if(mEnt){
     clearInterval(intv);
  }else{
     autoRotate();
  }
});

}); // * end document ready.

希望我睁开眼睛,有时你不需要一个3000行的插件来建立一个具有你需要的所有功能的漂亮画廊。


这是使用三元运算符

的位压缩jQuery脚本

jsBin demo

var W = $('#event_rotator').width(),
    N = $('#slider .event').length,
    C = 0,
    intv;

if(N<=1)$('#left, #right').hide(); 
$('#slider').width( W*N );

$('#left, #right').click(function(){
     C = (this.id=='right'? ++C : --C) < 0 ? N-1 : C%N ;
     $('#slider').stop().animate({left: -C*W }, 700 );
});

function auto(){
  intv = setInterval(function(){
      $('#right').click();
  }, 3000 );
}
auto();

$('#event_rotator').hover(function( e ){
  return e.type=='mouseenter' ? clearInterval(intv) : auto();
});

答案 1 :(得分:-1)

http://jsbin.com/ofukaq/8/edit

如何使这个循环显示如下标题:

Title 1 -> Title 2 -> Title 3 -> Title 1 -> title 2 ->无限循环

而不是

Title 1 -> Title 2 -> Title 3