Size of the CSS cursor

Asked

Viewed 439 times

1

it is possible to increase the size (width and height) from the CSS, for example

circle {
cursor:crosshair;
height: 200px;
}
  • No. Unless you use an image cursor: url(cursor.gif), auto;

  • Right, as then I can change the image size. And center in the middle of the pointer.

  • Defining width and height, do you want to center a ponteiri? how so?

  • I use width and height and do not change its size. The cursor is active when I step on top of an object, and it appears to me below.

  • You can put your code complete with HTML and CSS from this cursor?

  • http://jsfiddle.net/kyLuLshz/1/

  • Only the image does not appear in this example

  • Related: http://answall.com/questions/3653/%C3%89-poss%C3%Advel-trocar-a-cor-do-cursor-do-mouse-via-css

Show 3 more comments

1 answer

1

Use a custom image:

.ponteiro_personalizado {
   cursor: url(images/cursor.png), auto;
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.