Free Java Scripts
 
  Home
  Contact Us
  Make Your Website as User's Homepage
  Guestbook
  A message box when page opens
  Don't let the user use right click on mouse
  Make your scrollbar colorful
  Search box ( Search engine ) for your page
  Fireworks with different colors
  Stars moving in background
  Magic title for weblogs or any pages on the internet
  Snowing on the page
  Raining on texts
  Close the browser with a button
  Text alert for enter and exit
  Moving text status
  Set background color (User control)
  Nice menu with java script
  Clock
  Go to top of page
  Text following mouse
  Shake internet explorer window
  Change the bgcolor
  Back and forward button
  Print button for page
  Calculator script
  Text dances in status bar
  Visitor and counter
  Clock the visitor time visiting the page
  Asking user's name and say welcome
  Clock in website
  Random background color changer
  Text Effect-1
  Text Effect-2
  Today's Date in website
  Save button
  Two lines following mouse
  Date and time following mouse
  Add website to favorites
Text following mouse

Text following mouse


Code:-
<!-- this script got from www.freejavascripts.page.tl -->
<!-- START OF Mouse Cursor Text Trailer DHTML -->


<!-- SUMMARY BRIEF

    This DHTML script will make a text message follow
    your cursor around the screen. You can change the
    message to say whatever you want.

    You can change the font face, color and size in
    the .trailersytle tag below. You can change the message
    in the javascript below that. Just look for the
    comment that says "Insert your personal message below."

-->


<!-- Put this portion of the script inside of your <HEAD> tag -->


<style>
.trailerstyle {
    position: absolute;
    visibility: visible;
    top: -50px;
    font-size: 12px;
    font-family: Arial,Helvetica,Verdana;
          font-weight: bold;
    color: #000000;
}
</style>

<script>
<!--

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

// Insert your personal message below.
// Important: Do NOT remove the space at the end of the sentence!!!

var message=" www.freejavascripts.page.tl "
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 mousetrailer() {
    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("mousetrailer()",30)
}

//-->
</script>


<!-- Put this code inside of your <BODY> tag. -->


<script>
<!--

for (i=0;i<=message.length-1;i++) {
    document.write("<span id='span"+i+"' class='trailerstyle'>")
    document.write(message[i])
    document.write("</span>")
}

if (document.layers){
    document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;

//-->
</script>


<!-- Lastly, insert the following into the <BODY> tag, itself, just like the example that follows. -->



<body onLoad="mousetrailer()" style="width:100%;overflow-x:hidden;overflow-y:scroll">


<!-- END OF Mouse Cursor Text Trailer DHTML -->
<font face="Tahoma"><a target="_blank" href="http://www.freejavascripts.page.tl/"><span style="font-size: 8pt; text-decoration: none">Free JavaScript</span></a></font>




Preview:-

The code is not active.

Free JavaScript
Time  
   
Partner's Advertisements  
   
Today, there have been 12 visitors (14 hits) on this page!
This website was created for free with Own-Free-Website.com. Would you also like to have your own website?
Sign up for free