»
AnglaisFrançaisVietnamien

Imprimer - Texte Suivez Curseur - JavaScriptBank.com

Version complète: jsB@nk » Pointer » Trailer » Texte Suivez Curseur
URL: https://www.javascriptbank.com/text-follow-cursor.html

Texte Suivez Curseur © JavaScriptBank.comIl s'agit d'un simple JavaScript de créer un texte suivi curseur effet.

Version complète: jsB@nk » Pointer » Trailer » Texte Suivez Curseur
URL: https://www.javascriptbank.com/text-follow-cursor.html



JavaScript
<script><!--//anything follows cursor//by gary//put anything you want in this var and it will follow the cursorvar follow='Welcome to JSBank'//don't change anything belowif (document.all){document.write('<div id="curscroll" style="position:absolute;visibility:hidden">'+follow+'</div>')}function followcursor(){if (document.all){curscroll.style.visibility="visible"}curscroll.style.left=document.body.scrollLeft+event.clientX+10curscroll.style.top=document.body.scrollTop+event.clientY+0}document.onmousemove=followcursor//--></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->