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

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

cjw1232年前 (2023-11-01)网站应用3050
<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...

css中鼠标样式大全

<p>请把鼠标移动文字上,看看效果吧</p> <div style="cursor: pointer;">手形</div>  <div style="cursor:&nbs...

纯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...

纯CSS实现菜单炫酷点击展开收起效果

通过纯css3实现展开收缩的弹性动画菜单,可以应用于PC端或移动端页面中,非常实用效果也非常的炫酷,喜欢的码友们可以尝试一下,效果如下:完整代码如下:<!doctype html><html><head><meta charset=&qu...

js打印文字打字输出特效代码

<center> <style type="text/css"> .a{background:#666666; border:0px solid #000000; width:300px; h...

化学元素周期表网页代码

<!DOCTYPE html> <html lang="en">   <head>     <meta charset="UTF-8...

发表评论

访客

看不清,换一张

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