I was wondering how I can change the look of a visitors cursor when they enter my website - ie change it to a picture or something. if any a javascript?
if you want to change them to default mouse cursor like hand, pointer, waiting then you can use css to do that eg: pointer: hand;
No, cursor: hand; is the right solution. http://www.w3schools.com/css/pr_class_cursor.asp or read here: http://www.javascriptkit.com/dhtmltutors/csscursors.shtml
We can the cursor icon with the help of css. If you are a beginner please follow the link aha-soft.com/faq/web-page-cursor.htm, javascriptkit.com/script/cutindex18.shtml.
I have already given all necessary information in both of the links I have posted! There is nothing more needed!!!
Hello rubytaylor123, just check whether you have enough information in your message before posting...Don't post to increase your count. Regarding the question, check out the following code, <html> <head> <style> p { cursor: wait; } h4 { cursor: help; } h5 { cursor: crosshair; } </style> </head> <body> <h4>We Want to Help You!</h4> <p>This may take a while to load....so don't worry, be happy!</p> <h5>Do You Like To Play Shooting Games on the Computer?</h5> </body> </html>
lol @look4guna You are telling others to check their posts for informations before posting... but your post is useless, too... If you would just check both of the links I posted you would see exactly that ALL information is in those websites.
you can use this css to change the cursor on website <style> body { cursor: wait; } or body { cursor: pointer; } </style>