Copy code The code is as follows:<BODY> //With the help of marquee <MARQUEE behavior="scroll" contenteditable="true" onstart="this.firstChild.innerHTML+=this.firstChild.innerHTML;" scrollamount="3" width="100"> <SPAN unselectable="on">Here is the content to scroll</SPAN> </MARQUEE> //Ordinary implementation method <DIV id="scrollobj" style="white-space:nowrap;overflow:hidden;width:500px;"> <span>Here is the content to scroll</span> </DIV> <script language="javascript" type="text/javascript"> function scroll(obj) { var tmp = (obj.scrollLeft)++; //When the scroll bar reaches the top right if (obj.scrollLeft==tmp) obj.innerHTML += obj.innerHTML; //When the scroll bar scrolls the width of the initial content, the scroll bar returns to the leftmost end if (obj.scrollLeft>=obj.firstChild.offsetWidth) obj.scrollLeft=0; } setInterval("scroll(document.getElementById('scrollobj'))",20); </script> </BODY> |
<<: A practical record of an accident caused by MySQL startup
>>: VUE render function usage and detailed explanation
BinLog BinLog is a binary log that records all da...
JavaScript can do a lot of great things. This art...
Query Rewrite Plugin As of MySQL 5.7.6, MySQL Ser...
This article example shares the specific code of ...
x-ua-compatible is used to specify the model for ...
Preface The explain command is the primary way to...
Preface: Recently, I encountered a management sys...
1. Four startup methods: 1.mysqld Start mysql ser...
Preface Regarding HugePages and Oracle database o...
Preface This article mainly introduces 4 methods ...
Table of contents background Solution 1 Ideas: Co...
Preface At work, we often need to operate in a Li...
Regarding uninstalling the previously installed v...
Learning objectives: Learn to use Windows system ...
Two cases: 1. With index 2. Without index Prerequ...