How to use marquee to realize text scrolling left and right in html

php中世界最好的语言
Release: 2018-02-01 09:54:06
Original
2723 people have browsed it

This time I will show you how to use marquee to scroll text left and right in html. What are the things to note in html using marquee to scroll text left and right. Here is a practical case, let’s take a look.

<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(&#39;scrollobj&#39;))",20);
</script>
</BODY>
Copy after login

I believe you have mastered the methods after reading these cases. For more exciting information, please pay attention to other related articles on the php Chinese website!

Related reading:

How to implement an input drop-down menu in html

css3’s new units vw, vh, vmin , how to use vmax

How to solve the problem if the calc of css3 is calculated when less is compiled

How to use H5's WebGL Realize roaming animation of 3D virtual computer room

The above is the detailed content of How to use marquee to realize text scrolling left and right in html. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!