اینم یه جاوای دیگه برای تغییر شکل موس<script> // CREDITS: // Cursor Rotator // By Peter Gehrig // Copyright (c) 2003 Peter Gehrig. All rights reserved. // Permission given to use the script provided that this notice remains as is. // Additional scripts can be found at http://www.24fun.com // info@24fun.com // 12/30/2003 // IMPORTANT: // If you add this script to a script-library or script-archive // you have to add a highly visible link to // http://www.24fun.com on the webpage // where this script will be featured var i_cursors=0 var cursors=new Array("e-resize","ne-resize","n-resize","nw-resize","w-resize","sw-resize","s-resize","se-resize") var ie5=document.getElementById&&document.all function animatecursor() { document.body.style.cursor=cursors[i_cursors] i_cursors++ if (i_cursors>=cursors.length-1) {i_cursors=0} } function resetcursor() { msmove==false if (!msmove) { document.body.style.cursor="crosshair" } var timer=setTimeout("resetcursor()",500) } if (ie5) { document.onmousemove=animatecursor } </script> </body> </html>