Thursday, 28 July 2011

News flash

 After 3 seconds,

 
<!DOCTYPE html>
<html lang="en">
<head>
    <title></title>
<style type="text/css">
  li
  {
      font-weight: bold;
      color: blue;
      position:relative;
  }
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"> </script>
<script type="text/javascript">
  $(function(){
        var i=0;
         $('li').not(':first').hide();//Hide everything other than the first li item
          setInterval(function(){
              $('li').eq(i).hide();//Hide the current li item
              i++;  
              if($('li').eq(i).text().length==0) //check if it is the last li item
                {
                 i=0;
                }
              $('li').eq(i).fadeIn(1000); //FadeIn the next li item            
             },3000);                
       });      
</script>
</head>
<body>
    <ul>
        <a href="#"><li>Sundancer</li></a>  
        <a href="#"><li>Bayliner</li></a>  
        <a href="#"><li>Conandrifier</li></a>  
    </ul>
</body>
</html>

No comments:

Post a Comment