公告欄跑馬燈效果程式碼

admin發表於2017-02-10

不少網站有這樣類似效果,在網站導航欄下部或者某個地方,公告會以跑馬燈形式不斷的滾動。

當滑鼠放上去的時候可以停止滾動,當滑鼠移開又開始滾動。

下面介紹一下如何實現此種功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
ul{
  list-style:none;
  margin:0px;
  padding:0px;
  width:1500px;
  float:left;
}
ul li{
  height:25px;
  line-height:25px;
  font-size:12px;
  float:left;
  width:300px;
  margin:0px;
  padding:0px;
}
#wrap{
  width:3000px;
}
#scroll{
  width:300px;
  overflow:scroll;
}
</style>
<script type="text/javascript">
window.onload=function(){
  var speend=10;
  document.getElementById("copy").innerHTML=document.getElementById("list").innerHTML;
  function done(){
    if(document.getElementById("list").offsetWidth-document.getElementById("scroll").scrollLeft<=0){
      document.getElementById("scroll").scrollLeft-=document.getElementById("list").offsetWidth;
    }
    else{
      document.getElementById("scroll").scrollLeft++;
    }
  }
  var flag=setInterval(done,speend);
  document.getElementById("scroll").onmouseover=function(){clearInterval(flag)}
  document.getElementById("scroll").onmouseout=function(){flag=setInterval(done,speend);}
}
</script>
</head>
<body>
<div id="scroll">
  <div id="wrap">
     <ul id="list">
       <li>大家好,歡迎來到螞蟻部落</li>
       <li>div+css教程</li>
       <li>希望明天會更好,因為我們奮鬥了</li>
       <li>春天是生機勃勃的,一切充滿希望。</li>
       <li>時間不會因為我們的懶惰而停止</li>
     </ul>
     <ul id="copy">
     </ul>
  </div>
</div>
</body>
</html>

相關文章