| 标题 | 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> |
| 随便看 |
|
在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。