blob: 24d3d3fd294c5fd5f954b0dc65dfb6ab4467dd9f (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
|
---
title: glyph
slug: Web/SVG/Element/glyph
tags:
- SVG
- SVG文档内容
- 元素
- 参考
- 需要兼容性表
translation_of: Web/SVG/Element/glyph
---
<div>{{SVGRef}}</div>
<p>一个<code>glyph</code>元素定义了SVG字体中的一个独立的字形。</p>
<h2 id="用法">用法</h2>
<p>{{svginfo}}</p>
<h2 id="示例">示例</h2>
<pre class="brush: xml"><?xml version="1.0" standalone="yes"?>
<svg width="400px" height="300px" version="1.1"
xmlns = 'http://www.w3.org/2000/svg'>
<!-- Example copied from http://www.w3.org/TR/SVG/fonts.html#GlyphElement -->
<defs>
<font id="Font1" horiz-adv-x="1000">
<font-face font-family="Super Sans" font-weight="bold" font-style="normal"
units-per-em="1000" cap-height="600" x-height="400"
ascent="700" descent="300"
alphabetic="0" mathematical="350" ideographic="400" hanging="500">
<font-face-src>
<font-face-name name="Super Sans Bold"/>
</font-face-src>
</font-face>
<missing-glyph><path d="M0,0h200v200h-200z"/></missing-glyph>
<glyph unicode="!" horiz-adv-x="80" d="M0,0h200v200h-200z"></glyph>
<glyph unicode="@" d="M0,50l100,300l400,100z"></glyph>
</font>
</defs>
<text x="100" y="100"
style="font-family: 'Super Sans', Helvetica, sans-serif;
font-weight: bold; font-style: normal">Text
using embe@dded font!</text>
</svg>
</pre>
<h2 id="属性">属性</h2>
<h3 id="全局属性">全局属性</h3>
<ul>
<li><a href="/en/SVG/Attribute#Core" title="en/SVG/Attribute#Core">核心属性</a> »</li>
<li><a href="/en/SVG/Attribute#Presentation" title="en/SVG/Attribute#Presentation">外观属性</a> »</li>
<li>{{ SVGAttr("class") }}</li>
<li>{{ SVGAttr("style") }}</li>
</ul>
<h3 id="专有属性">专有属性</h3>
<ul>
<li>{{ SVGAttr("d") }}</li>
<li>{{ SVGAttr("horiz-adv-x") }}</li>
<li>{{ SVGAttr("vert-origin-x") }}</li>
<li>{{ SVGAttr("vert-origin-y") }}</li>
<li>{{ SVGAttr("vert-adv-y") }}</li>
<li>{{ SVGAttr("unicode") }}</li>
<li>{{ SVGAttr("glyph-name") }}</li>
<li>{{ SVGAttr("orientation") }}</li>
<li>{{ SVGAttr("arabic-form") }}</li>
<li>{{ SVGAttr("lang") }}</li>
</ul>
<h2 id="DOM接口">DOM接口</h2>
<p>该元素实现了<code><a href="/en/DOM/SVGGlyphElement" title="en/DOM/SVGGlyphElement">SVGGlyphElement</a>接口。</code></p>
<h2 id="相关内容">相关内容</h2>
<ul>
<li>{{ SVGElement("font") }}</li>
<li>{{ SVGElement("missing-glyph") }}</li>
<li><a href="/en/SVG/Tutorial/SVG_fonts" title="en/SVG/Tutorial/SVG_Fonts">SVG教程:SVG 字体</a></li>
</ul>
|