How to Create Moving Text in Blog

Posted in Tutorial on 11-11-2009

  1. Continuous scrolling, from the left:

    Insert this: <marquee behavior=”scroll” direction=”left”>TEXT</marquee>

    Result:TEXT

  2. Text bouncing:

    Insert this: <marquee behavior=”alternate”>TEXT</marquee>

    Result: TEXT

  3. Scrolling upwards:

    Insert this: <marquee behavior=”scroll” direction=”up”>TEXT</marquee>

    Result: TEXT

  4. Stop the movement with the mouse (click and hold the mouse down):

    Insert this: <marquee behavior=”scroll” direction=”left” onmousedown=”this.stop();” onmouseup=”this.start();”>TEXT</marquee>

    Result: TEXT

  5. Stop the movement with the mouse (hover towards it):

    Insert this: <marquee behavior=”scroll” direction=”left” onmouseover=”this.stop();” onmouseout=”this.start();”>TEXT</marquee>

    Result: TEXT

  6. Share and Enjoy:
    • Facebook
    • Digg
    • del.icio.us
    • Google Bookmarks
    • MySpace
    • StumbleUpon
    • TwitThis
    • Yahoo! Buzz
    • LinkedIn
    • RSS
    • Twitter

    Related Posts

    1. Add a Favicon to Your Blog
    2. How to Create Pages in Blogspot
    3. CMF Ads’ WordPress Plugin to Create Widget
    4. How to Submit Your Site/Blog to the Cyberworld

Comments:

Write a Comment