Make your text dance with the marquee attribute in HTML

Make your text dance with the marquee attribute in HTML
Syntax: <marquee> …</marquee>

Using the mobile attribute marquee, you can not only dance your text, but also apply it to pictures, tables, etc.

<marquee direction=left>Welcome to Kexun Youth Learning Channel! </marquee>

direction=left, indicates direction. The text effect above is "Welcome to Kexun Youth Learning Channel!" moving from right to left! In addition, directions include right, up, and down.

Besides direction, we can add other restrictive elements:

Ways to move:

Loop movement: loop = n (n, indicating the number of times) Move in a circle: behavior = scroll Move only once: behavior = slide Move back and forth: behavior = alternate

Appearance:

Font size: <font size=n> (n, variable) Alignment: align=top/middle/bottom Background color: bgcolor=Blue (predefined colors, such as: Black, Olive, Teal, Red, Blue, Maroon, Navy, Gray, Lime, Fuchsia, White, Green, Purple, Silver, Yellow, Aqua or hexadecimal numbers)

other:

Speed: scrollmount=n(n, variable) Delay: scrolldelay==n(n, variable)

<marquee direction="moving direction" height="moving area height" width="moving area width" scrollamount="moving speed" onmouseover=this.stop() onmouseout=this.start()>"

onmouseover sets the mouse to pause movement when it is placed in the moving area

onmouseout Continue scrolling when the mouse leaves

Use marquee code to implement text and image scrolling

Today I saw the setting for scrolling text on TAP! It seems that it was not supported before. Maybe I haven't used it! Haha, let me show you the effect!

The following is a code explanation of the scrolling text bulletin board from TAP

marquee parameters:
BGColor: The background color of the scrolling text box.
Direction: Scroll direction setting, you can choose Left, Right, up and down.
scrolldelay: The delay time between each scrolling. The larger the value, the slower the scrolling.
scrollamount: The total amount of time for one scroll. The smaller the number, the slower the scrolling.
Behaviour: The scrolling mode is set. There are three possible values: Scroll (circular scrolling), Slide (single scrolling), and Alternate (back and forth scrolling).
Align: Text alignment settings. You can choose Middle, Bottom or Top.
Width: The width of the scrollable text box. Enter a value and select in Pixels or in Percent from the radio button behind it.
Height: The height of the scroll text box. Enter a value and select in Pixels or in Percent from the radio button behind it.
loop: The number of scrolling times. The default is infinite
hspace, vspace: blank lines before and after, and above and below.

The demonstration below is my bulletin board demonstration: you can see the effect in the lower right corner! If you like it! Copy the code and substitute it into the above code to see the effect!

Effect 1: Text scrolls up


Copy code
The code is as follows:

<marquee direction="up" loop="-1" scrollamount="4">
<div align="left">
</div><center>
<font color="#008000"></font></center><div align="left">
</div><center><p><font color="#ff6600">Site Announcement</font></p>
<p><font color="#ff4500">Welcome to Xiaojun Resources</font></p>
<p><font color="#ff4500">Here we share with you the latest free resources and information,</font></p>
<p><font color="#ff4500">I hope you like it, your support is my greatest motivation!</font></p>
<p><font color="#ff4500">If you have any suggestions, please let me know! </font></p>
<p><font color="#ff4500">The resources on this site are from the Internet, if they infringe your rights! </font></p>
<p><font color="#ff4500"></font></p>
<font color="#ff4500"><p><font color="#ff3300">Thank you for your support, Xiaojun is wonderful because of you</font>

</p></font></center><font color="#ff4500"></font></marquee>

Effect 2: Text scrolls to the left

<marquee direction="left" loop="-1">[Announcement] Some tutorials are original to Tap Knows. Please indicate the source when reprinting! </marquee>

Image scrolling code:


Copy code
The code is as follows:

<marquee direction="lift" loop="-1" scrollamount="20" width="500" height="210">
<a href="http://jun51.tap.cn/" target="_blank"><img height="200" width="300" src="upload/2022/web/CC6169D8EE67719C4299B0740123325E.jpg"/><img height="200" width="300" src="upload/2022/web/EB965C39B9A8B63AE3908267DD6C45C8.jpg"/><img height="200" width="300" src="upload/2022/web/676E5C63EA319EEABCCB6D03C19121D4.jpg"/>
</marquee>

Just add as much as you want! But it seems that some of the browsing display effects! I suggest you use Google, it works great!

<<:  Detailed explanation of transaction isolation levels in MySql study notes

>>:  The relationship between web page production and steamed buns (sharing experience)

Recommend

Solution to BT Baota Panel php7.3 and php7.4 not supporting ZipArchive

The solution to the problem that the PHP7.3 versi...

Analysis of the principles of Mysql dirty page flush and shrinking table space

mysql dirty pages Due to the WAL mechanism, when ...

Detailed explanation of Linux CPU load and CPU utilization

CPU Load and CPU Utilization Both of these can re...

Detailed explanation of Socket (TCP) bind from Linux source code

Table of contents 1. A simplest server-side examp...

Vue+ElementUI implements paging function-mysql data

Table of contents 1. Problem 2. Solution 2.1 Pagi...

Implementation of CSS child element selection parent element

Usually a CSS selector selects from top to bottom...

CSS3 implementation example of rotating only the background image 180 degrees

1. Mental Journey When I was writing the cockpit ...

Detailed explanation of the solution to font blur when using transform in CSS3

This question is very strange, so I will go strai...

jQuery implements dynamic tag event

This article shares the specific code of jQuery t...