這次帶給大家html怎麼借助marquee實現文字左右滾動,html借助marquee實現文字左右滾動的注意事項有哪些,下面就是實戰案例,一起來看一下。
<BODY> //借助于marquee <MARQUEE behavior="scroll" contenteditable="true" onstart="this.firstChild.innerHTML+=this.firstChild.innerHTML;" scrollamount="3" width="100"> <SPAN unselectable="on">这里是要滚动的内容</SPAN> </MARQUEE> //普通的实现方法 <DIV id="scrollobj" style="white-space:nowrap;overflow:hidden;width:500px;"> <span>这里是要滚动的内容</span> </DIV> <script language="javascript" type="text/javascript"> function scroll(obj) { var tmp = (obj.scrollLeft)++; //当滚动条到达右边顶端时 if (obj.scrollLeft==tmp) obj.innerHTML += obj.innerHTML; //当滚动条滚动了初始内容的宽度时滚动条回到最左端 if (obj.scrollLeft>=obj.firstChild.offsetWidth) obj.scrollLeft=0; } setInterval("scroll(document.getElementById('scrollobj'))",20); </script> </BODY>
相信看了這些案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
相關讀取:
#css3的新單位vw、vh、vmin 、vmax應該如何使用
以上是html怎麼借助marquee實現文字左右滾動的詳細內容。更多資訊請關注PHP中文網其他相關文章!