- 1. Have you ever had countless dreams?
- 2. But they are disillusioned with the passage of time
- 3. You Have you ever looked forward to the future?
- 4. But you were lost in the growing years
- 5. CSDN Chinese Programmer Forum
- 6. Let’s all come together
- 7. They all look good
DOM method of getElementsByClassName
<script> <BR>var t=setInterval(myfunc,1000); <BR>var oBox=document.getElementById("ScrollBox"); <BR>function myfunc(){ <BR>var o=oBox.firstChild <BR>oBox.removeChild(o) <BR>oBox.appendChild(o) <BR>} <BR>oBox.onmouseover=function(){clearInterval(t)} <BR>oBox.onmouseout=function(){t=setInterval(myfunc,1000)} <BR></script>