当前位置:首页 > 网站应用 > 正文内容

js实现公告文字标题无缝向上滚动特效

cjw1232年前 (2023-11-01)网站应用3630
<HTML>
<HEAD>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<TITLE>无间隙文字向上滚动特效</TITLE>
<style type="text/css">
ul {
 padding-right: 0px;
 padding-left: 0px;
 padding-bottom: 0px;
 margin: 0px;
 padding-top: 0px
}
#net {
 width:100%;
 background:url(img/menu_bg.gif) repeat;
 overflow: hidden;
}
#net div {
 border: #e6e6e6 1px solid;
 padding:0px 10px 0px 10px;
 overflow-y:hidden;
 line-height: 24px;
 height: 24px
}
#net li {
 font-size: 12px;
 float: left;
 list-style-type: none;
 margin-right: 20px;
 padding-left: 10px;
 background: url() no-repeat 0px 50%;
 white-space: nowrap
}
#net a {
 text-decoration: none;
}
#net a:hover {
 text-decoration:underline;
}
</style>
</HEAD>
<BODY>
<DIV id=net onMouseOver="if(!anncount) {clearTimeout(annst);annst = 0}" onMouseOut="if(!annst) annst = setTimeout('mainDo()', anndelay);">
  <DIV id=w_net>
    <UL>
      <li><a href="#" target="_blank">滚动新闻1号</a></li>
      <li><a href="#" target="_blank">滚动公告2号</a></li>
      <li><a href="#" target="_blank">滚动公告3号</a></li>
      <li><a href="#" target="_blank">滚动公告4号</a></li>
      <li><a href="#" target="_blank">滚动公告5号</a></li>
    </UL>
  </DIV>
</DIV>
<script type="text/javascript">
function $(id){
   return document.getElementById(id);
}
var anndelay = 3000;
var anncount = 0;
var annheight = 24;
var annst = 0;
function mainDo(){
   if(!annst){
      $('w_net').innerHTML += '<br style="clear: both" />' + $('w_net').innerHTML;
      $('w_net').scrollTop = 0;
      if($('w_net').scrollHeight > annheight * 3){
         annst = setTimeout('mainDo()', anndelay);
      }else{
         $('net').onmouseover = $('net').onmouseout = null;
      }
      return;
   }
   if(anncount == annheight){
      if($('w_net').scrollHeight - annheight <= $('w_net').scrollTop){
         $('w_net').scrollTop = $('w_net').scrollHeight / 2 - annheight;
      }
      anncount = 0;
      annst = setTimeout('mainDo()', anndelay);
   }else{
      $('w_net').scrollTop ++ ;
      anncount ++ ;
      annst = setTimeout('mainDo()', 10);
   }
}
mainDo();
</script>
</BODY>
</HTML>


扫描二维码推送至手机访问。

版权声明:本文由追求完美发布,如需转载请注明出处。

本文链接:https://cjw123.com/blog/?id=42

标签: htmljscss
分享给朋友:

相关文章

html meta标签屏蔽搜索引擎的用法

html页面中的 meta 标签可以用来识别搜索引擎的蜘蛛类型,可以规定meta标签所在的html页面是否被蜘蛛抓取,下面是这个meta标签的用法,大家可以借鉴一下。搜索引擎的 meta 标签的解析下面是meta标签对搜索引擎的解析<meta name='robot...

js弹出居中窗口特效

<html> <head> <title>弹出窗口效果</title> <style> .black_overlay{display:none;position:absolute;top:0%;left:0%;width:100%;...

纯css实现弹出图层背景变灰特效

<style> .bg{position:absolute;z-index:999;filter:alpha(opacity=50);background:#666;opacity: 0.5;-moz-opacity: 0.5;left:0;top:0;height...

网站底部显示运行多少天代码

直接运行看演示,根据需要自行调整!<center>今天是:<span><script language=Javascript type=text/Javascript>  var day="";&nbs...

彩色流转文字代码

根据自己需求修改代码,点击运行预览效果!<style>     #nr{font-size:15px; margin: 0;background: -webkit-linear-gradient(left,#ffff...

摇摆的灯光

点击运行看演示效果!<!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。