zoukankan      html  css  js  c++  java
  • js文字滚动

     
    <style type="text/css"> 
    #gongao{1000px;height:30px;overflow:hidden;line-height:30px;font-size:13px;font-family:'宋体';background:#DDE5ED;color:#0C77CF;font-weight:bold;} 
    #gongao #scroll_begin, #gongao #scroll_end{display:inline} 
    </style> 
    <script type="text/javascript"> 
    function ScrollImgLeft(){ 
    var speed=50; 
    var scroll_begin = document.getElementById("scroll_begin"); 
    var scroll_end = document.getElementById("scroll_end"); 
    var scroll_div = document.getElementById("scroll_div"); 
    scroll_end.innerHTML=scroll_begin.innerHTML; 
    function Marquee(){ 
    if(scroll_end.offsetWidth-scroll_div.scrollLeft<=0) 
    scroll_div.scrollLeft-=scroll_begin.offsetWidth; 
    else 
    scroll_div.scrollLeft++; 
    var MyMar=setInterval(Marquee,speed); 
    scroll_div.onmouseover=function() {clearInterval(MyMar);} 
    scroll_div.onmouseout=function() {MyMar=setInterval(Marquee,speed);} 
    </script> 
    <div id="gongao"> 
    <div style="900px;height:30px;margin:0 auto;white-space: nowrap;overflow:hidden;" id="scroll_div" class="scroll_div"> 
    <div id="scroll_begin"> 
    <a>${affiche.content}</a><a>${affiche.content}</a><a>${affiche.content}</a><a>${affiche.content}</a><a>${affiche.content}</a><a>${affiche.content}</a><a>${affiche.content}</a><a>${affiche.content}</a>
    </div> 
    <div id="scroll_end"></div> 
    </div> 
    <script type="text/javascript">ScrollImgLeft();</script> 
    </div> 
  • 相关阅读:
    nginx正则配置解释和fastadmin
    Centos7中systemctl命令详解
    layer的iframe层的传参和回参
    centOS下jenkins
    centos下nginx安装和配置
    python文件目录练习题【一】
    python正则模块re使用案例
    python字符串常用方法
    Swoole的多进程模块
    swoole学习
  • 原文地址:https://www.cnblogs.com/superMay/p/5028951.html
Copyright © 2011-2022 走看看