La balise <marquee> permet de faire défiler un objet HTML (texte, image...).
Le comportement et l'allure de la balise <marquee> peuvent être personnalisés grâce à ses attributs.
attribut behavior
L'attribut <behavior> agit sur le style d'animation souhaité. Il peut avoir trois valeurs différentes:
Exemple
<marquee behavior="alternate">
Texte défilant en va-et-vient
</marquee>
Les attributs width et height
L'attribut bgcolor
L'attribut direction
<marquee behavior="scroll" direction="left" width="100%"
bgcolor="#EEEEEE">
<h2>Texte défilant horizontalement</h2>
</marquee><br>
<marquee behavior="scroll" direction="down" width="100%" height="200"
bgcolor="#EEEEEE">
<h2>Texte défilant verticalement</h2>
</marquee>
<div id="deroule" style="width:100%;">
<marquee scrolldelay="900" truespeed="" scrollamount="80" bgcolor="#9B0000" width="" height="" onmouseover="this.setAttribute('scrollamount', 0, 0)" onmouseout=
"this.setAttribute('scrollamount', 80, 0);" onclick="this.setAttribute('LOOP', 1);this.setAttribute('SCROLLDELAY', 1);this.setAttribute('BGCOLOR', '');"><span style=
"font-size: 20px;"><em><strong><span style="color: #ffffff;">Ceci est un essai de texte défilant utilisant la balise '< marquee >'. Au survol, le texte stoppe. Au clic, il
disparait.</span></strong></em></span></marquee>
</div>