Results 1 to 3 of 3

Thread: Neon Lights script

  1. #1
    Join Date
    Mar 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Smile Neon Lights script

    1) Script Title: Neon lights

    2) Script URL (on DD) <h2>
    <script language="JavaScript1.2">

    /*
    Neon Lights Text
    By JavaScript Kit (http://javascriptkit.com)
    For this script, TOS, and 100s more DHTML scripts,
    Visit http://www.dynamicdrive.com
    */

    var message="Welcome to Dynamic Drive!"
    var neonbasecolor="gray"
    var neontextcolor="yellow"
    var flashspeed=100 //in milliseconds

    ///No need to edit below this line/////

    var n=0
    if (document.all||document.getElementById){
    document.write('<font color="'+neonbasecolor+'">')
    for (m=0;m<message.length;m++)
    document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>')
    document.write('</font>')
    }
    else
    document.write(message)

    function crossref(number){
    var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number)
    return crossobj
    }

    function neon(){

    //Change all letters to base color
    if (n==0){
    for (m=0;m<message.length;m++)
    //eval("document.all.neonlight"+m).style.color=neonbasecolor
    crossref(m).style.color=neonbasecolor
    }

    //cycle through and change individual letters to neon color
    crossref(n).style.color=neontextcolor

    if (n<message.length-1)
    n++
    else{
    n=0
    clearInterval(flashing)
    setTimeout("beginneon()",1500)
    return
    }
    }

    function beginneon(){
    if (document.all||document.getElementById)
    flashing=setInterval("neon()",flashspeed)
    }
    beginneon()


    </script>
    </h2>

    I hope this is what you mean by putting script url,

    3) Describe problem:


    This is the first time ever I have used scripts,and I am a bit excited about it so please bear with me, ive used this script, but i want it on the right hand side of my web page, I can not get it over from the left, I don't even know where to begin,and would like to use the font am using, so it matches
    Last edited by suesan; 03-20-2008 at 07:27 PM. Reason: spelling

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Warning: Please include a link to the DD script in question in your post, in this case: http://www.dynamicdrive.com/dynamicindex10/neontext.htm . See this thread for the proper posting format when asking a question.

    Regarding your question, try changing the very top <h2> tag to:

    Code:
    <h2 style="text-align: right">

  3. #3
    Join Date
    Mar 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    OK sorry, thanks any way

Bookmarks

Posting Permissions

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