网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的范文:

 

标题 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>
随便看

 

在线学习网范文大全提供好词好句、学习总结、工作总结、演讲稿等写作素材及范文模板,是学习及工作的有利工具。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/19 19:19:02