How can I change the mouse icon? 
Author Message
 How can I change the mouse icon?

Hi ng!

How can I change the mouse icon when the mouse passes over a certain object
placed in my HTML page? What have I to write in the OnMouseOver event of the
object?

For example, if I have an Image which is not a link but I want anyway that
when the mouse passes over that Image, its icon become like the one which
appears when I go over a link, that is I want it becomes a hand. How have I
to set the OnMouseOver event of the Image object?

Thank you in advance to all the ones who decide to help me!

--

Sodi83



Wed, 07 Jul 2004 22:38:39 GMT  
 How can I change the mouse icon?

Mirco Soderi said...

Quote:
> Hi ng!

g'day

Quote:
> How can I change the mouse icon when the mouse passes over a certain object
> placed in my HTML page?

you need to be careful changing the expected behaviour of the mouse. it
can confuse your visitor.

you can use css to change it. for example on an image:

<img src="an_image.jpg" style="cursor : pointer;">

when the mouse moves over the image it will change to a hand (or whatever
depending on the user settings/GUI)

however a "hand" usually indicates a link and when nothing happens when
clicked your visitor wont know whats going on.

--
brucie



Wed, 07 Jul 2004 22:56:13 GMT  
 How can I change the mouse icon?
Here's the source for a page that shows the different cursors.

<html>
<head>
<title>cursor.htm</title>
</head>
<body>
<table border="1">
<tr>
  <td><div style="cursor: crosshair">crosshair</div></td>
  <td><div style="cursor: default">default</div></td>
  <td><div style="cursor: hand">hand</div></td>
  <td><div style="cursor: help">help</div></td>
  <td><div style="cursor: move">move</div></td>
  <td><div style="cursor: text">text</div></td>
  <td><div style="cursor: wait">wait</div></td>
</tr>
<tr>
  <td colspan="3"><div style="cursor: default"></div></td>
  <td><div style="cursor: n-resize">n-resize</div></td>
  <td colspan="3"><div style="cursor: default"></div></td>
</tr>
<tr>
  <td colspan="2"><div style="cursor: default"></div></td>
  <td><div style="cursor: nw-resize">nw-resize</div></td>
  <td colspan="1"><div style="cursor: default"></div></td>
  <td><div style="cursor: ne-resize">ne-resize</div></td>
  <td colspan="2"><div style="cursor: default"></div></td>
</tr>
<tr>
  <td colspan="1"><div style="cursor: default"></div></td>
  <td><div style="cursor: w-resize">w-resize</div></td>
  <td colspan="3"><div style="cursor: default"></div></td>
  <td><div style="cursor: e-resize">e-resize</div></td>
  <td colspan="1"><div style="cursor: default"></div></td>
</tr>
<tr>
  <td colspan="2"><div style="cursor: default"></div></td>
  <td><div style="cursor: sw-resize">sw-resize</div></td>
  <td colspan="1"><div style="cursor: default"></div></td>
  <td><div style="cursor: se-resize">se-resize</div></td>
  <td colspan="2"><div style="cursor: default"></div></td>
</tr>
<tr>
  <td colspan="3"><div style="cursor: default"></div></td>
  <td><div style="cursor: s-resize">s-resize</div></td>
  <td colspan="3"><div style="cursor: default"></div></td>
</tr>
</table>
</body>
</html>

--D. McKirahan


Quote:
> Hi ng!

> How can I change the mouse icon when the mouse passes over a certain
object
> placed in my HTML page? What have I to write in the OnMouseOver event of
the
> object?

> For example, if I have an Image which is not a link but I want anyway that
> when the mouse passes over that Image, its icon become like the one which
> appears when I go over a link, that is I want it becomes a hand. How have
I
> to set the OnMouseOver event of the Image object?

> Thank you in advance to all the ones who decide to help me!

> --

> Sodi83



Thu, 08 Jul 2004 04:04:47 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. How do I change the mouse pointer icon ?

2. Changing mouse cursor icon

3. change the mouse cursor when the mouse is on an A element

4. Mouse Change/Mouse-Keyboard Lock

5. How can i change icons of HHCtrl component?

6. Any way to change IE icon?

7. Changing address bar icon?

8. Changing the icon to an hour glass?

9. Windows Change Icon Dialog

10. Change the icon of the *.url files?

11. Change my computer icon to show computer name.

12. Change Icon of VBScript

 

 
Powered by phpBB® Forum Software