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

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

cjw1232年前 (2023-11-01)网站应用2800
<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://www.cjw123.com/blog/?id=42

标签: htmljscss
分享给朋友:

相关文章

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

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

css3实现不断旋转动画加载,并弹性布局显示

<style> body{ background:#34495e; display:flex; justify-content:center; align-items:center; height:100vh; } .loading{ position:relative...

仿win10系统蓝屏的404页面

<!doctype html>     <html>     <head>     <meta charset=...

彩色流转文字代码

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

瞌睡小鸟按钮特效

<!DOCTYPE html> <html lang="en">   <head>     <title>瞌睡小鸟按钮特效</title&g...

发表评论

访客

看不清,换一张

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