Results 1 to 3 of 3

Thread: pls post your replies.... help me with this

  1. #1
    Join Date
    Oct 2005
    Location
    Manila, Philippines
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Cool pls post your replies.... help me with this

    PLease make this in CSS... please pls pls pls pls pls pls

    <style>
    .spanstyle {
    position:absolute;
    visibility:visible;
    top:-50px;
    font-size:10pt;
    font-family:Verdana;
    font-weight:bold;
    color:black;
    }
    </style>
    <script>

    /*
    Cursor Trailor Text- By Peter Gehrig (http://www.24fun.ch/)
    Permission given to Dynamicdrive.com to feature script in it's archive.
    For full source code, installation instructions, and 1000's more DHTML scripts,
    visit http://dynamicdrive.com
    */

    var x,y
    var step=20
    var flag=0

    // Your snappy message. Important: the space at the end of the sentence!!!
    var message="DYNAMIC DRIVE! "
    message=message.split("")

    var xpos=new Array()
    for (i=0;i<=message.length-1;i++) {
    xpos[i]=-50
    }

    var ypos=new Array()
    for (i=0;i<=message.length-1;i++) {
    ypos[i]=-50
    }

    function handlerMM(e){
    x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
    y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
    flag=1
    }

    function makesnake() {
    if (flag==1 && document.all) {
    for (i=message.length-1; i>=1; i--) {
    xpos[i]=xpos[i-1]+step
    ypos[i]=ypos[i-1]
    }
    xpos[0]=x+step
    ypos[0]=y

    for (i=0; i<message.length-1; i++) {
    var thisspan = eval("span"+(i)+".style")
    thisspan.posLeft=xpos[i]
    thisspan.posTop=ypos[i]
    }
    }

    else if (flag==1 && document.layers) {
    for (i=message.length-1; i>=1; i--) {
    xpos[i]=xpos[i-1]+step
    ypos[i]=ypos[i-1]
    }
    xpos[0]=x+step
    ypos[0]=y

    for (i=0; i<message.length-1; i++) {
    var thisspan = eval("document.span"+i)
    thisspan.left=xpos[i]
    thisspan.top=ypos[i]
    }
    }
    var timer=setTimeout("makesnake()",30)
    }

    </script>

  2. #2
    Join Date
    Aug 2004
    Location
    Brighton
    Posts
    1,563
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You can't recreate this script using purely CSS.

    cr3
    A retired member, drop me a line through my site if you'd like to find me!
    cr3ative media | read the stickies

  3. #3
    Join Date
    Oct 2005
    Location
    Manila, Philippines
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    ok thx,.,., but can you help me make a trailor txt out of css?

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
  •