aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/svg/element/cursor/index.html
blob: f90caa618caa64f8390cc992a0dd3088699c71bf (plain)
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
---
title: cursor
slug: Web/SVG/Element/cursor
tags:
  - SVG
  - 元素
  - 参考
  - 废弃
  - 需要示例
translation_of: Web/SVG/Element/cursor
---
<div>{{SVGRef}}{{Deprecated_Header}}</div>

<div class="blockIndicator note"><strong>Note:</strong> 尽量使用 CSS 中的 {{cssxref("cursor")}} 属性来替换该属性。


</div>

<p><code>cursor</code>元素可以用来定义独立于平台的自定义指针。要想定义独立于平台的指针,建议先创建一个PNG图象,然后定义一个引用该PNG图像的<code>cursor</code>元素,并在图像内部标识指针头(亦即,热点)的精确位置。</p>

<p>建议使用PNG格式,因为它支持利用alpha通道定义透明并遮罩的能力。如果使用了别的图像格式,这个格式必须支持透明度遮罩的定义(两个选项:提供一个明确的alpha通道或者使用一个特殊的像素色以表示透明度)。如果能够确定透明度遮罩,遮罩确定了指针的形状;否则,指针将是一个不透明的矩形。通常地,别的像素信息(例如,R、G、B通道)定义了指针没有被遮罩到的部分的颜色,注意指针一般至少包含两个颜色,这样在大多数背景中都能看到指针。</p>

<h2 id="用法">用法</h2>

<p>{{SVGInfo}}</p>

<h2 id="属性">属性</h2>

<h3 id="全局属性">全局属性</h3>

<ul>
 <li><a href="/en-US/docs/SVG/Attribute#ConditionalProccessing">条件处理属性</a> »</li>
 <li><a href="/en-US/docs/SVG/Attribute#Core">核心属性</a> »</li>
 <li><a href="/en-US/docs/SVG/Attribute#XLink">Xlink属性</a> »</li>
 <li>{{SVGAttr("externalResourcesRequired")}}</li>
</ul>

<h3 id="专有属性">专有属性</h3>

<ul>
 <li>{{SVGAttr("x")}}</li>
 <li>{{SVGAttr("y")}}</li>
 <li>{{SVGAttr("xlink:href")}}</li>
</ul>

<h2 id="DOM_接口">DOM 接口</h2>

<p>该元素实现了<code><a href="/en-US/docs/DOM/SVGCursorElement">SVGCursorElement</a></code>接口。</p>

<h2 id="规范">规范</h2>

<table>
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("SVG2", "interact.html#CursorElement", "&lt;cursor&gt;")}}</td>
   <td>{{Spec2("SVG2")}}</td>
   <td>Replaced {{SVGAttr("xlink:href")}} by {{SVGAttr("href")}} attribute.</td>
  </tr>
  <tr>
   <td>{{SpecName("SVG1.1", "interact.html#CursorElement", "&lt;cursor&gt;")}}</td>
   <td>{{Spec2("SVG1.1")}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<p>{{Compat("svg.elements.cursor")}}</p>