What's new

Closed How to put moving text on your panel html code

Status
Not open for further replies.

IEPH-Raf

Forum Veteran
Joined
Mar 25, 2018
Posts
1,929
Reaction
1,964
Points
676
Age
23
Share ko lang po to sa inyo na nakita kong code para makapag lagay kayo ng gumalagaw na text sa inyong panel kayo na pong bahala kung san nyo po syang gustong ilagay.Paltan nyo lang yung word na text kung anong gusto nyong ilagay na sasabihin nyo

Kahit Thank you lang masaya nako hahaha

From right to left
HTML:
<marquee>TEXT</marquee>

From left to right
HTML:
<marquee direction="right">TEXT</marquee>

Alternatively
HTML:
<marquee behavior="alternate">TEXT</marquee>

The bottom up
HTML:
<marquee direction="up">TEXT</marquee>

From the top down
HTML:
<marquee direction="down">TEXT</marquee>

From the top down alternative
HTML:
<marquee direction="up" behavior="alternate" style="height:100px">TEXT</marquee>

From the top down as well from left to right at the same time
HTML:
<marquee behavior="alternate" direction="up" width="80%"><marquee direction="right">TEXT</marquee></marquee>

closed space
HTML:
<marquee behavior="alternate" direction="up" width="80%">
    <marquee direction="right" behavior="alternate">TEXT</marquee>
</marquee>

On a background
HTML:
<font color="WHITE"><marquee direction="left" style="background:RED">TEXT</marquee></font>

In a frame
HTML:
<marquee style="border:RED 3px SOLID">TEXT</marquee>

Picture. Using the above script, may be inserted photos with or without text.
HTML:
<marquee>Some text here <img src="http://www.etutoriale.ro/banners/88x31.gif" width="88" height="31" alt="Tutorials " border="0"></marquee>

Animation placed in text
HTML:
Some text before <marquee WIDTH="20%"><img src="http://www.etutoriale.ro/banners/88x31.gif" width="88" height="31" alt="Tutorials " border="0"></marquee> Some text after.

Sorry mga paps di ako marunong maglagay ng example eh hahahah

Enjoy mga ka phc:)
 
Last edited by a moderator:
Status
Not open for further replies.

Similar threads

Back
Top