text or image)"; it allows the content contained in the tag pair to scroll down horizontally or vertically on the web page, By setting properties, you can control what happens when the text reaches the edge of the container. For example, the behavior property can control the scrolling method (cyclic scrolling, scrolling only once and then stopping, and alternating scrolling back and forth)."> How to use marquee tag in html5-Front-end Q&A-php.cn

How to use marquee tag in html5

青灯夜游
Release: 2022-08-25 17:51:20
Original
2147 people have browsed it

In HTML5, the marquee tag is used to create scrolling text or images, the syntax " text or image )"; it allows the content contained in the tag pair to be Scroll down horizontally or vertically on a web page. By setting properties, you can control what happens when the text reaches the edge of the container. For example, the behavior property can control the scrolling method (cyclic scrolling, scrolling only once and then stopping, and alternating scrolling back and forth).

How to use marquee tag in html5

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

In HTML, marquee means "scrolling". The marquee element ( ) is used to insert a scrolling text.

Tags appear in pairs. Content is written between the opening ( ) and closing ( ) tags.

This tag is used to make text or images scroll down horizontally or vertically on a web page. You can use its properties to control what happens when the text reaches the edge of the container.

marquee scrolling text tag

There will be many multimedia elements on a page, such as dynamic text, dynamic images, audio and video, etc., and the simplest one is sky-high Scroll text. In HTML, if we want to add scroll text, we need to use themarqueetag.

Let’s take a look at the simplest example first:

    marquee 
  Welcom PHPCN!  
Copy after login

In order to make the display effect more obvious, here the page background is set to black and the scrolling text is set to white. The display effect is as shown in the figure:

How to use marquee tag in html5

In this way we have implemented the simplest scrolling text. There are also some attributes in the scrolling text used to control the scrolling direction, scrolling speed, etc. Let's take a look at it below. Several commonly used attributes.

direction scrolling direction attribute

By default, text scrolls from right to left. In actual application, we may need to change the direction, so we can set it through this attribute. The available values for this attribute are: :up,down,left,right, respectively representing scrolling up, down, left and right.
Examples are as follows:

    marquee  
  UP DOWN LEFT RIGHT  
Copy after login

How to use marquee tag in html5

behavior scrolling method attribute

The rolling method can be set through behavior, such as reciprocating motion, etc. Available values for behavior are:scroll,slide,alternate, which respectively represent circular scrolling, scrolling once and then stopping, and alternate scrolling back and forth.
Examples are as follows:

    marquee  
  scroll slide alternate  
Copy after login

How to use marquee tag in html5

scrolldelay scroll delay attribute and scrollamount scroll speed attribute

Text scrolling can be set through the scrolldelay attribute time interval. The time interval unit of scrolldelay is milliseconds. This time interval is set as the time interval between two scrolling steps. If the time is too long, a stop-and-go effect will occur.
scrollamount is used to set the scrolling step size.
Examples are as follows:

    marquee  
  Welcom PHPCN!  
Copy after login

How to use marquee tag in html5

loop Scroll loop attribute

If we want the text to stop after scrolling a few times, we can Use the loop attribute.

Examples are as follows:

    marquee  
  Welcom CSDN!  
Copy after login

How to use marquee tag in html5

(Learning video sharing:Getting started with web front-end)

The above is the detailed content of How to use marquee tag in html5. 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
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!