1
it is possible to increase the size (width and height) from the CSS, for example
circle {
cursor:crosshair;
height: 200px;
}
1
it is possible to increase the size (width and height) from the CSS, for example
circle {
cursor:crosshair;
height: 200px;
}
1
Use a custom image:
.ponteiro_personalizado {
cursor: url(images/cursor.png), auto;
}
Browser other questions tagged css
You are not signed in. Login or sign up in order to post.
No. Unless you use an image
cursor: url(cursor.gif), auto;
– Felipe Viero Goulart
Right, as then I can change the image size. And center in the middle of the pointer.
– akm
Defining
width
andheight
, do you want to center a ponteiri? how so?– Felipe Viero Goulart
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.
– akm
You can put your code complete with HTML and CSS from this cursor?
– Felipe Viero Goulart
http://jsfiddle.net/kyLuLshz/1/
– akm
Only the image does not appear in this example
– akm
Related: http://answall.com/questions/3653/%C3%89-poss%C3%Advel-trocar-a-cor-do-cursor-do-mouse-via-css
– Luiz Vieira