tags:

views:

53

answers:

2

Hi there, I have seen some websites with a custom mouse pointers rather than the normal "operating system" cursors. I know this is very easily done in flash and such; but I am not talking about those websites.

Is it really difficult to make a custom mouse pointer for a normal webpage? I cant remember the good websites, but there is one which has a custom, though its pretty rubbish, I was just interested to know what needs to be done to get a custom mouse pointer.

link: http://www.smileyarena.com/

You can see how mouse changes there.. can anyone point me in the right direction?

Thanks!

+4  A: 

you could try with css with something like

body
{
    cursor: url(mycursor.cur);
}
John Boker
whoa! that was way more easier than I thought it would be! thanks!
iamserious
A: 

You can do this with a little knowledge of CSS. one good example is in this link

http://www.hypergurl.com/customcursor.html

sushil bharwani
thanks a lot! :)
iamserious

related questions