This article introduces you to the use of html tags - can achieve a variety of scrolling effects without js control. It is very good and has reference value. Friends who are interested can take a look.
The automatic scrolling effect of the page can be achieved by javascript, but today I accidentally discovered an html tag - which can achieve a variety of scrolling effects without js control.
Using marquee tags can not only move text, but alsopictures,tables, etc.
Syntax: ; Description: Add content to be scrolled between markers.
ImportantProperties:
1.Scroll directiondirection(includes 4 Values: up, down,leftandright)
Syntax:
2. Scroll behavior (scroll:Cyclescrolling, default effect; slide: scroll only once and then stop; alternate: scroll alternately back and forth)
Syntax: < ;marquee behavior="Scrolling mode">...
3. Scroll speed scrollamount (Scroll speed is to set the length of movement each time you scroll, in pixels)
Syntax:
4. Scroll delay scrolldelay (set the scrolling interval, in milliseconds)
Syntax:
5. Scroll loop loop (the default value is -1, scrolling will continue to loop)
Syntax:
7. Scroll background color bgcolor
8. Blank space hspace, vspace
JavaScript CodeCopy content to clipboard
【Related recommendations】
2.Code examples of writing personal resumes in HTML
3.Share three methods of creating new elements
4.Detailed examples of meta tags in html
5.Share an integration of HTML knowledge points
The above is the detailed content of Pure html code to achieve scrolling effect through marquee tag. For more information, please follow other related articles on the PHP Chinese website!