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

    function ScrollImgLeft(){
    var speed=50,
    	doc=document,
    	scroll_begin = doc.getElementById("scroll_begin"),
    	scroll_end = doc.getElementById("scroll_end"),
    	scroll_div = doc.getElementById("scroll_div");
    scroll_end.innerHTML=scroll_begin.innerHTML;
      function Marquee(){
    	if(scroll_end.offsetTop-scroll_div.scrollTop<=0)
    	  scroll_div.scrollTop-=scroll_begin.offsetHeight
    	else
    	  scroll_div.scrollTop++
      }
    var MyMar=setInterval(Marquee,speed)
      scroll_div.onmouseover=function() {clearInterval(MyMar)}
      scroll_div.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
    }
    ScrollImgLeft();
    

      

  • 相关阅读:
    周总结
    周总结
    周总结
    读后感
    周总结
    周总结
    周总结
    第一周总结
    大学生失物招领平台使用体验
    快速乘法+快速幂
  • 原文地址:https://www.cnblogs.com/xupeiyu/p/4403090.html
Copyright © 2011-2022 走看看