Custom Cursor using CSS
venomsnake - August 21, 2006
4222 views
Have you ever wondered how other sites changed there cursors on their links or throughout the page? Well this tutorial will show you how to change your sites cursor using CSS.
Open up your css file and put this code in there or place this in the head of your body:
a {
cursor: url(customcursor.cur);
}
That code will allow you to link to your own custom cursor, a 16 x 16px image, or you can use a premade cursor with this code:
a {
cursor: crosshair;
}
Which will make
this cursor show up on your links.
You can change the above code to a
body { } tag to change the cursor for the whole page.
Below are the different cursors you can use:
These can get annoying if you use them to much, or the wrong cursor in the wrong spot, but they can also be used for good and make your site more exciting.
0 Comments
Post a Comment