Toon posts:

Eigen afbeelding voor muisaanwijzer

Pagina: 1
Acties:

Verwijderd

Topicstarter
Ik weet dat je met css diverse afbeeldingen aan je muisaanwijzer toe kunt wijzen. Een en ander staat beschreven op http://developer.irt.org/script/185.htm

Mijn vraag is echter of ik ook een eigen afbeelding hiervoor kan gebruiken. Dus dat de muisaanwijzer veranderd in een door mij gemaakte afbeelding. (uiteraard zonder dat je een of andere progje moet downloaden.

Als dit bij een "html site" niet mogelijk is, is deze mogelijkheid dan wel bij "flash" aanwezig???

[ Voor 4% gewijzigd door Verwijderd op 14-12-2002 08:47 . Reden: stond een punt achter de link waardoor hij niet werkte ]


  • mimic
  • Registratie: Februari 2002
  • Niet online

mimic

O ja joh?

link doet het niet? :?

maar bij een html page kan het wel, ben je een javascript nodig.
en bij flash is het ook mogelijk.

Verwijderd

Alleen MSIE6:

code:
1
2
3
4
5
6
7
<style>
<!--
BODY{
CURSOR: url(cursor1.cur);
}
-->
</style>


De CUR file kun je maken met bijvoorbeeld Microangelo Studio.

Met JavaScript / Java en Flash kan het ook wel een extern plaatje zijn (CometCursor anyone?)

Met Cascading Style Sheets kun je vervolgens:
What cursors are available?

cursor: auto (uses what is set by user)
cursor: crosshair (should produce a cross)
cursor: default (cursor remains as it is)
cursor: e-resize (arrow pointing right)
cursor: w-resize (an arrow pointing left)
cursor: hand (the traditional pointing hand)
cursor: help (a Question Mark should appear)
cursor: move (a cross with arrows on the tips)
cursor: n-resize (an arrow pointing north or up)
cursor: ne-resize (an arrow pointing northeast)
cursor: nw-resize (an arrow pointing northwest)
cursor: pointer (that hand again)
cursor: s-resize (an arrow pointing south or down)
cursor: se-resize (an arrow pointing southeast)
cursor: sw-resize (an arrow pointing southwest)
cursor: text (looks like the end of an I-beam)
cursor: wait (an hourglass)

Now remember, not everyone has the exact same cursors for each type of standard cursor. In other words, your hourglass cursor may be an animated hand tapping, but the visitor of your page may have a dancing bear as the hourglass cursor. So remember that the cursor look to your visitors may not be as predictable as you may think, just as a note.

[ Voor 28% gewijzigd door Verwijderd op 14-12-2002 09:44 ]