Salut tout le monde

J'ai pris un exemple sur la toile qui montre simplement comment changer le curseur de la souris avec SVG. Si on execute cet exemple sur Firefox ou Opéra
on voit bien le curseur changer cependant IE n'en fait qu'à sa tête car le curseur ne change pas. C'est quoi le probléme ?

Voici le code:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">
<!--======================================================================-->
<!--=  Copyright 2002 World Wide Web Consortium, (Massachusetts          =-->
<!--=  Institute of Technology, Institut National de Recherche en        =-->
<!--=  Informatique et en Automatique, Keio University). All Rights      =-->
<!--=  Reserved. See http://www.w3.org/Consortium/Legal/.                =-->
<!--======================================================================-->
<!-- ===================================================================== -->
<!-- interact-cursor-01-b.svg                                            -->
<!-- Author : Chris Lilley,  02-Aug-2000                                   -->
<!-- Revised for 1.1 : Lee Klosterman,  31-January-2002                      -->
<!--======================================================================-->
<svg version="1.1" baseProfile="full" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svg-root" width="100%" height="100%" viewBox="0 0 480 360">
	<title id="test-title">interact-cursor-01-f</title>
	<desc id="test-desc">
        Test that viewer has the basic capability to handle the cursor 
        property and cursor element
          </desc>
	<!--======================================================================-->
	<!--Content of Test Case follows...                  =====================-->
	<!--======================================================================-->
	<g id="test-body-content">
		<defs>
			<cursor id="magglass" xlink:href="../images/magnify.png" x="10" y="11"/>
		</defs>
		<text x="240" y="25" text-anchor="middle" font-size="26">Text Cursor
           <a xlink:href="http://www.w3.org/TR/SVG/interact#Cursors" fill="blue" xlink:show="new">Pointer Cursor</a>
		</text>
		<!-- use this text to check the native 'text' and 'pointer' cursor -->
		<rect x="120" y="40" width="240" height="236" stroke="#666" stroke-width="3" fill="none"/>
		<!-- ====================================================================== -->
		<!-- Predefined keyword values for cursors            ===================== -->
		<!-- ====================================================================== -->
		<g class="button">
			<g cursor="crosshair">
				<rect stroke="none" fill="#666" x="148" y="70" width="80" height="32" />
				<text stroke="none" fill="#FFF" font-family="Geneva, Arial, Helvetica, sans-serif" font-weight="bold" font-size="16" x="154" y="90">crosshair</text>
			</g>
			<g cursor="default">
				<rect stroke="none" fill="#666" x="148" y="118" width="80" height="32" />
				<text stroke="none" fill="#FFF" font-family="Geneva, Arial, Helvetica, sans-serif" font-weight="bold" font-size="16" x="154" y="138">default</text>
			</g>
			<g cursor="pointer">
				<rect stroke="none" fill="#666" x="148" y="166" width="80" height="32" />
				<text stroke="none" fill="#FFF" font-family="Geneva, Arial, Helvetica, sans-serif" font-weight="bold" font-size="16" x="154" y="186">pointer</text>
			</g>
			<g cursor="move">
				<rect stroke="none" fill="#666" x="148" y="214" width="80" height="32" />
				<text stroke="none" fill="#FFF" font-family="Geneva, Arial, Helvetica, sans-serif" font-weight="bold" font-size="16" x="154" y="235">move</text>
			</g>
			<g cursor="text">
				<rect stroke="none" fill="#666" x="252" y="70" width="80" height="32"/>
				<text stroke="none" fill="#FFF" font-family="Geneva, Arial, Helvetica, sans-serif" font-weight="bold" font-size="16" x="258" y="90">text</text>
			</g>
			<g cursor="wait">
				<rect stroke="none" fill="#666" x="252" y="118" width="80" height="32" />
				<text stroke="none" fill="#FFF" font-family="Geneva, Arial, Helvetica, sans-serif" font-weight="bold" font-size="16" x="258" y="138">wait</text>
			</g>
			<g cursor="help">
				<rect stroke="none" fill="#666" x="252" y="166" width="80" height="32" />
				<text stroke="none" fill="#FFF" font-family="Geneva, Arial, Helvetica, sans-serif" font-weight="bold" font-size="16" x="258" y="186">help</text>
			</g>
			<g cursor="url(#magglass),crosshair">
				<rect stroke="none" fill="#666" x="252" y="214" width="80" height="32" />
				<text stroke="none" fill="#FFF" font-family="Geneva, Arial, Helvetica, sans-serif" font-weight="bold" font-size="16" x="258" y="235">&lt;url&gt;</text>
			</g>
		</g>
		<g stroke="black" stroke-width="1" fill="#900">
			<polygon points="116,36 116,68 148,36" cursor="nw-resize"/>
			<polygon points="364,36 364,68 332,36" cursor="ne-resize"/>
			<polygon points="364,280 332,280 364,248" cursor="se-resize"/>
			<polygon points="116,280 148,280 116,248" cursor="sw-resize"/>
			<polygon points="340,134 340,182 364,158" cursor="e-resize"/>
			<polygon points="116,158 140,134 140,182" cursor="w-resize"/>
			<polygon points="240,36 264,63.3 214,63.3" cursor="n-resize"/>
			<polygon points="240,280 264,252.7 214,252.7" cursor="s-resize"/>
		</g>
		<!-- link to check consistency of 'pointer' cursor -->
		<!-- target for hotspot test -->
		<g id="target" stroke-width="1" stroke="black" cursor="url(#magglass),crosshair">
			<!-- make a target to test the hotspot -->
			<circle cx="390" cy="315" r="16" stroke="none" fill="#FFC"/>
			<polyline points="390,295 390,335"/>
			<polyline points="370,315 410,315"/>
			<circle cx="390" cy="315" r="6" stroke="none" fill="#FFF"/>
			<!-- make the hotspot, taking care the cursor stays the same -->
			<a fill="blue" xlink:href="http://www.w3.org/Icons/w3c_home" >
				<circle cx="390" cy="315" r="2" stroke="none" fill="#000"/>
			</a>
		</g>
	</g>
	<text id="revision" x="10" y="340" font-size="40" stroke="none" fill="black">$Revision: 1.1 $</text>
	<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
</svg>

Merci d'avance