Phiên bản đầy đủ: jsB@nk » Con trỏ » Di chuyển theo chuột » Chữ theo chuột
URL: https://www.javascriptbank.com/text-follow-cursor.html
Hiệu ứng là một đoạn mã JavaScript khác đơn giản để tạo dòng chữ luôn di chuyển theo con trỏ chuột trên trang web.
Phiên bản đầy đủ: jsB@nk » Con trỏ » Di chuyển theo chuột » Chữ theo chuột
URL: https://www.javascriptbank.com/text-follow-cursor.html
<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-->