Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
  
<meta charset=utf-8 />
<title>Demo by roXon</title>
</head>
<body>
  
  
<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>
</body>
</html>
 
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();
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
roXonpro
0viewers