<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>
相信看了这些案例你已经掌握了方法,更多精彩请关注其它相关文章!
相关阅读:
html怎么实现可输入的下拉菜单
css3的新单位vw、vh、vmin、vmax应该如何使用
css3的calc在less编译时如果被计算应该如何解决
怎样用h5的webgl实现3d虚拟机房的漫游动画
以上就是html怎样借助marquee实现文字左右滚动的详细内容。
