js實現的文字垂直滾動例項程式碼

antzone發表於2017-03-15

文字垂直滾動效果應用非常的廣泛,本章節就分享一下相關的程式碼例項。

下面程式碼含有兩種效果,一種是具有暫停效果的滾動,另一個是沒有暫停效果的滾動。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>文字無縫滾動例項程式碼</title>
<style type="text/css">
.box 
{
  width:150px;
  height:25px;
  line-height:25px;
  border:#bbb 1px solid;
  overflow:hidden;
}
.box ul 
{
  margin:0;
  padding:0
}
.box li 
{
  height:25px;
  line-height:25px;
  font-size:12px;
  text-align:center;
  list-style-type:none;
}
</style>
<script type="text/javascript">
function startmarquee(lh,speed,delay,index)
{
  var t;
  var p=false; 
  var o=document.getElementById("marqueebox"+index);
  o.innerHTML+=o.innerHTML; 
  o.onmouseover=function(){p=true}
  o.onmouseout=function(){p=false}
  o.scrollTop=0;
  function start()
  {
    t=setInterval(scrolling,speed);
    if(!p)
    { 
      o.scrollTop += 1;
    } 
  } 
  function scrolling()
  { 
    if(o.scrollTop%lh!=0)
    {
      o.scrollTop+= 1; 
      if(o.scrollTop>=o.scrollHeight/2) o.scrollTop = 0;
    }
    else
    { 
      clearInterval(t);
      setTimeout(start,delay); 
    }
  }
  setTimeout(start,delay);
}
window.onload=function()
{
  startmarquee(25,30,3000,0);
  startmarquee(25,40,0,1);
}
</script>
</head>
<body>
<div class="box" id="marqueebox0">
  <ul>
    <li style="background:#f8e2ac;">螞蟻部落一</li>
    <li style="background:#f5f5f5;">螞蟻部落二</li>
    <li style="background:#ffe6ec;">螞蟻部落三</li>
  </ul>
</div>
<br>
<div class="box" id="marqueebox1">
  <ul>
    <li style="background:#f8e2ac;">螞蟻部落一</li>
    <li style="background:#f5f5f5;">螞蟻部落二</li>
    <li style="background:#ffe6ec;">螞蟻部落三</li>
  </ul>
</div>
</body>
</html>

相關文章