Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 2005
    Location
    -
    Posts
    2,995
    Tokens
    0

    Latest Awards:

    Default ya w/e need your help init

    right whats the html code for!
    glowing text;

    text color = Blue
    glow color = orange

    kthnxbi

  2. #2
    Join Date
    Apr 2006
    Location
    England
    Posts
    1,159
    Tokens
    0

    Latest Awards:

    Default

    Blue:
    HTML Code:
    <style>
    <!--
    #glowtext{
    filter:glow(color=0000FF,strength=3);
    width:100%;
    }
    -->
    </style>
    <script language="JavaScript1.2">
    function glowit(which){
    if (document.all.glowtext[which].filters[0].strength==3)
    document.all.glowtext[which].filters[0].strength=2
    else
    document.all.glowtext[which].filters[0].strength=3
    }
    function glowit2(which){
    if (document.all.glowtext.filters[0].strength==3)
    document.all.glowtext.filters[0].strength=2
    else
    document.all.glowtext.filters[0].strength=3
    }
    function startglowing(){
    if (document.all.glowtext&&glowtext.length){
    for (i=0;i<glowtext.length;i++)
    eval('setInterval("glowit('+i+')",150)')
    }
    else if (glowtext)
    setInterval("glowit2(0)",150)
    }
    if (document.all)
    window.onload=startglowing
    </script>
    <span id="glowtext">Text goes here.</span>
    Orange:
    HTML Code:
    <style>
    <!--
    #glowtext{
    filter:glow(color=FF8040
    ,strength=3);
    width:100%;
    }
    -->
    </style>
    <script language="JavaScript1.2">
    function glowit(which){
    if (document.all.glowtext[which].filters[0].strength==3)
    document.all.glowtext[which].filters[0].strength=2
    else
    document.all.glowtext[which].filters[0].strength=3
    }
    function glowit2(which){
    if (document.all.glowtext.filters[0].strength==3)
    document.all.glowtext.filters[0].strength=2
    else
    document.all.glowtext.filters[0].strength=3
    }
    function startglowing(){
    if (document.all.glowtext&&glowtext.length){
    for (i=0;i<glowtext.length;i++)
    eval('setInterval("glowit('+i+')",150)')
    }
    else if (glowtext)
    setInterval("glowit2(0)",150)
    }
    if (document.all)
    window.onload=startglowing
    </script>
    <span id="glowtext">Text goes here.</span>
    Psst - Glowing text and other elements only usually work in IE. I'm not sure about Netscape, Safari or Opera but it doesn't work in ff.
    Last edited by Halting; 02-07-2006 at 05:55 PM.

  3. #3
    Join Date
    Jul 2005
    Location
    -
    Posts
    2,995
    Tokens
    0

    Latest Awards:

    Default

    LMAO! this is for a forum name..... lol!

  4. #4
    Join Date
    Aug 2004
    Location
    bristol
    Posts
    3,799
    Tokens
    0

    Latest Awards:

    Default

    Blue:
    HTML Code:
    <span style="filter:glow(color=#0000FF, strength=5); height: 15px;">Text</div>
    Orange:
    HTML Code:
    <span style="filter:glow(color=#FF9900, strength=5); height: 15px;">Text</div>
    Edit: Halting, wouldn't it have been easier to have just given him the link?
    http://rainbow.arch.scriptmania.com/...glow_link.html
    Last edited by nets; 02-07-2006 at 06:20 PM.
    kinda quit.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •