
- Guida HTML
- HTML - Home
- HTML - Introduzione
- HTML - Tag Basiliari
- HTML - Elementi
- HTML - Attributi
- HTML - Formattazione
- HTML - Tags Phrase
- HTML - Meta Tags
- HTML - Commenti
- HTML - Immagini
- HTML - Tabelle
- HTML - Liste
- HTML - Link Testuali
- HTML - Link nelle Immagini
- HTML - Link ad Indirizzi Email
- HTML - Frame
- HTML - Iframe
- HTML - Blocchi
- HTML - Sfondi
- HTML - Colori
- HTML - Fonts
- HTML - Form
- HTML - Incorporare Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Fogli di Stile
- HTML - Javascript
- HTML - Layout
- HTML Referenze
- HTML - Riferimenti Tag
- HTML - Riferimenti Attributi
- HTML - Riferimenti Eventi
- HTML - Riferimenti Font
- HTML - Codici ASCII
- Tabella Codici ASCII
- HTML - Colori
- HTML - Entità
- HTML - Rif Font
- HTML - Rif Eventi
- MIME Media Types
- HTML - Coifica URL
- Codici Linguaggi ISO
- HTML - Codifica Caratteri
- HTML - Tag Deprecati
- HTML Risorse Utili
- HTML - Color Code Builder
- HTML - Editor Online
Il tag HTML <marquee>
Descrizione
Il tag HTML <marquee> viene usato per scorrere sia in orizzontale che in verticale (in base a come viene impostato) lungo una pagina web un testo o un immagine.
Esempio
<!DOCTYPE html> <html> <head> <title>HTML marquee Tag</title> </head> <body> <marquee>This is basic example of marquee</marquee> <marquee direction="up">The direction of text will be from bottom to top.</marquee> </body> </html>
Produrrà il seguente risultato:
Attributi Globali
Questo tag supporta tutti gli attributi globali descritti in - HTML - Referenze Attributi
Attributi Specifici
The HTML <marquee> supporta anche i seguenti attributi aggiuntivi:
Attributo | Valore | Descrizione |
---|---|---|
behavior | scroll slide alternate | Indica il tipo di scrolling. |
bgcolor | rgb(x,x,x) #xxxxxx colorname | Deprecato-Definisce un colore di background. |
direction | up down left right | Definisce la direzione in cui dovrà scorrere il testo. |
height | pixels o % | Specifica l' altezza del marquee. |
hspace | pixels | Definisce lo spazio orizzontale intorno al marquee. |
loop | numerico | Indica per quanto tempo dovrà scorrere il testo. Il valore di default è INFINITE, ossia che scorrerà all' infinito. |
scrolldelay | secondi | Definisce quanto tempo deve passare fra uno scrolling e l' altro. |
scrollamount | numerico | Indica la velocità dello scorrimento. |
width | pixels o % | Definisce la larghezza del marquee. |
vspace | pixels | Definisce lo spazio verticale intorno al marquee. |
Attributi Evento
Questo tag supporta tutti gli attributi evento descritti in - HTML - Referenze Eventi
Compatibilità Browser
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Si | Si | Si | Si | Si | ? |
html_tags_reference.htm
Advertisements