SVG makes use of a number of data types. This article lists these types along with their syntax and descriptions of what they're used for.
Angles are specified in one of two ways. When used in the value of a property in a stylesheet, an <angle> is defined as follows:
angle ::= number (~"deg" | ~"grad" | ~"rad")?
where
deg
indicates degrees,
grad
indicates grads and
rad
indicates radians.
For properties defined in CSS2, an angle unit identifier must be provided. For angle values in SVG-specific properties and their corresponding presentation attributes, the angle unit identifier is optional. If not provided, the angle value is assumed to be in degrees. In presentation attributes for all properties, whether defined in SVG1.1 or in CSS2, the angle identifier, if specified, must be in lower case.
When angles are used in an SVG attribute, <angle> is instead defined as follows:
angle ::= number ("deg" | "grad" | "rad")?
The unit identifiers in such <angle> values must be in lower case.
In the SVG DOM, <angle> values are represented using
SVGAngle
or
SVGAnimatedAngle objects
.
The basic type <anything> is a sequence of zero or more characters. Specifically:
anything ::= Char*
where Char is the production for a character, as defined in XML 1.0 , section 2.2.
Clock values have the same syntax as in SMIL Animation specification. The grammar for clock values is repeated here:
Clock-val ::= Full-clock-val | Partial-clock-val
| Timecount-val
Full-clock-val ::= Hours ":" Minutes ":" Seconds ("." Fraction)?
Partial-clock-val ::= Minutes ":" Seconds ("." Fraction)?
Timecount-val ::= Timecount ("." Fraction)? (Metric)?
Metric ::= "h" | "min" | "s" | "ms"
Hours ::= DIGIT+; any positive number
Minutes ::= 2DIGIT; range from 00 to 59
Seconds ::= 2DIGIT; range from 00 to 59
Fraction ::= DIGIT+
Timecount ::= DIGIT+
2DIGIT ::= DIGIT DIGIT
DIGIT ::= [0-9]
For
Timecount
values, the default metric suffix is "
s
" (for seconds). No embedded white space is allowed in clock values, although leading and trailing white space characters will be ignored.
The following are examples of legal clock values:
02:30:03
= 2 hours, 30 minutes and 3 seconds
50:00:10.25
= 50 hours, 10 seconds and 250 milliseconds
02:33
= 2 minutes and 33 seconds
00:10.5
= 10.5 seconds = 10 seconds and 500 milliseconds
3.2h
= 3.2 hours = 3 hours and 12 minutes
45min
= 45 minutes
30s
= 30 seconds
5ms
= 5 milliseconds
12.467
= 12 seconds and 467 milliseconds
Fractional values are just (base 10) floating point definitions of seconds. Thus:
00.5s = 500 milliseconds 00:00.005 = 5 milliseconds
The basic type <color> is a CSS2 compatible specification for a color in the sRGB color space. <color> applies to SVG's use of the
color
attribute and is a component of the definitions of attributes
fill
,
stroke
,
stop-color
,
flood-color
,和
lighting-color
, which also offer optional ICC-based color specifications.
SVG supports all of the syntax alternatives for <color> defined in CSS2 syntax and basic data types , and (depend on the implementation) in the future CSS Color Module Level 3 .
A <color> is either a keyword or a numerical RGB specification.
In addition to these color keywords, users may specify keywords that correspond to the colors used by objects in the user's environment. The normative definition of these keywords is found in User preferences for colors (CSS2, section 18.2).
The format of an RGB value in hexadecimal notation is a "
#
" immediately followed by either three or six hexadecimal characters. The three-digit RGB notation (
#rgb
) is converted into six-digit form (
#rrggbb
) by replicating digits, not by adding zeros. For example,
#fb0
expands to
#ffbb00
. This ensures that white (
#ffffff
) can be specified with the short notation (
#fff
) and removes any dependencies on the color depth of the display. The format of an RGB value in the functional notation is an RGB start-function, followed by a comma-separated list of three numerical values (either three integer values or three percentage values) followed by "
)
". An RGB start-function is the case-insensitive string "
rgb(
", for example "
RGB(
" or "
rGb(
". For compatibility, the all-lowercase form "
rgb(
" is preferred. The integer value
255
corresponds to
100%
, and to
F
or
FF
in the hexadecimal notation:
rgb(255,255,255)
=
rgb(100%,100%,100%)
=
#FFF
. White space characters are allowed around the numerical values. All RGB colors are specified in the sRGB color space. Using sRGB provides an unambiguous and objectively measurable definition of the color, which can be related to international standards.
color ::= "#" hexdigit hexdigit hexdigit (hexdigit hexdigit hexdigit)?
| "rgb("integer, integer, integer")"
| "rgb("integer "%", integer "%", integer "%)"
| color-keyword
hexdigit ::= [0-9A-Fa-f]
where
color-keyword
matches (case insensitively) one of the color keywords listed in
CSS Color Module Level 3
, or one of the system color keywords listed in
User preferences for colors
(CSS2, section 18.2).
The corresponding SVG DOM interface definitions for <color> are defined the one defined by CSS. SVG's extension to color, including the ability to specify ICC-based colors, are represented using DOM interface
SVGColor
.
A <coordinate> is a length in the user coordinate system that is the given distance from the origin of the user coordinate system along the relevant axis (the x-axis for X coordinates, the y-axis for Y coordinates). Its syntax is the same as that for <length> .
Within the SVG DOM, a <coordinate> is represented as an
SVGLength
或
SVGAnimatedLength
.
Frequency values are used with aural properties. As defined in CSS2, a frequency value is a <number> immediately followed by a frequency unit identifier. The frequency unit identifiers are:
Hz
: Hertz
kHz
: kilo Hertz
Frequency values may not be negative.
Functional notation for a reference. The syntax for this reference is the same as the
css uri
.
An <integer> is specified as an optional sign character (
+
or
-
) followed by one or more digits
0
to
9
:
integer ::= [+-]? [0-9]+
If the sign character is not present, the number is non-negative.
Unless stated otherwise for a particular attribute or property, the range for an <integer> encompasses (at a minimum)
-2147483648
to
2147483647
.
Within the SVG DOM, an <integer> is represented as a
编号
或
SVGAnimatedInteger
.
An I nternationalized R esource I dentifier.
On the Internet, resources are identified using
IRI
s (Internationalized Resource Identifiers). For example, an SVG file called
someDrawing.svg
located at
http://example.com
might have the following
IRI
:
http://example.com/someDrawing.svg
An
IRI
can also address a particular element within an XML document by including an
IRI
fragment identifier as part of the
IRI
. An
IRI
which includes an
IRI
fragment identifier consists of an optional base
IRI
, followed by a "
#
" character, followed by the
IRI
fragment identifier. For example, the following
IRI
can be used to specify the element whose ID is "
Lamppost
" within file
someDrawing.svg
:
http://example.com/someDrawing.svg#Lamppost
IRI
s are used in the
xlink:href
attribute. Some attributes allow both
IRI
s and text strings as content. To disambiguate a text string from a relative IRI, the functional notation <FuncIRI> is used. This is an
IRI
delimited with a functional notation. Note: For historical reasons, the delimiters are "
url(
" and "
)
", for compatibility with the CSS specifications. The
FuncIRI
form is used in presentation attributes.
SVG makes extensive use of
IRI
references, both absolute and relative, to other objects. For example, to fill a rectangle with a linear gradient, you first define a
<linearGradient>
element and give it an ID, as in:
<linearGradient xml:id="MyGradient">...</linearGradient>
You then reference the linear gradient as the value of the
fill
attribute for the rectangle, as in the following example:
<rect fill="url(#MyGradient)"/>
SVG supports two types of IRI references:
<absoluteIRI>
or
<relativeIRI>
and thus only contains a fragment identifier (i.e.,
#<elementID>
or
#xpointer(id<elementID>)
).
<absoluteIRI>
or
<relativeIRI>
.
For the full specification of IRI references in SVG, see SVG 1.1 (2nd Edition): IRI references .
A length is a distance measurement, given as a number along with a unit. Lengths are specified in one of two ways. When used in a stylesheet, a <length> is defined as follows:
length ::= number (~"em" | ~"ex" | ~"px" | ~"in" | ~"cm" | ~"mm" | ~"pt" | ~"pc")?
See the CSS2 specification for the meanings of the unit identifiers.
For properties defined in CSS2, a length unit identifier must be provided. For length values in SVG-specific properties and their corresponding presentation attributes, the length unit identifier is optional. If not provided, the length value represents a distance in the current user coordinate system. In presentation attributes for all properties, whether defined in SVG1.1 or in CSS2, the length identifier, if specified, must be in lower case.
When lengths are used in an SVG attribute, a <length> is instead defined as follows:
length ::= number ("em" | "ex" | "px" | "in" | "cm" | "mm" | "pt" | "pc" | "%")?
The unit identifiers in such <length> values must be in lower case.
Note that the non-property <length> definition also allows a percentage unit identifier. The meaning of a percentage length value depends on the attribute for which the percentage length value has been specified. Two common cases are:
In the SVG DOM, <length> values are represented using
SVGLength
or
SVGAnimatedLength
对象。
(Where T is some type.) A list consists of a separated sequence of values. Unless explicitly described differently, lists within SVG's XML attributes can be either comma-separated (with optional white space before or after the comma), or white space-separated.
White space in lists is defined as one or more of the following consecutive characters: "space" (
U+0020
), "tab" (
U+0009
), "line feed" (
U+000A
), "carriage return" (
U+000D
), and "form-feed" (
U+000C
).
The following is a template for an EBNF grammar describing the <list-of- T s> syntax:
list-of-Ts ::= T
| T, list-of-Ts
Within the SVG DOM, values of a <list-of-
T
s> type are represented by an interface specific for the particular type
T
. For example, a <list-of-lengths> is represented in the SVG DOM using an
SVGLengthList
or
SVGAnimatedLengthList
对象。
A name, which is a string where a few characters of syntactic significance are disallowed.
name ::= [^,()#x20#x9#xD#xA] /* any char except ",", "(", ")" or wsp */
Real numbers are specified in one of two ways. When used in a stylesheet, a <number> is defined as follows:
number ::= integer
| [+-]? [0-9]* "." [0-9]+
This syntax is the same as the definition in CSS (CSS2, section 4.3.1).
When used in an SVG attribute, a <number> is defined differently, to allow numbers with large magnitudes to be specified more concisely:
number ::= integer ([Ee] integer)?
| [+-]? [0-9]* "." [0-9]+ ([Ee] integer)?
Within the SVG DOM, a <number> is represented as a float,
SVGNumber
或
SVGAnimatedNumber
.
A pair of <number>s, where the second <number> is optional.
number-optional-number ::= number
| number, number
In the SVG DOM, a <number-optional-number> is represented using a pair of
SVGAnimatedInteger
or
SVGAnimatedNumber
对象。
The opacity of the color or the content the current object is filled with, as a
<number>
. Any values outside the range
0.0
(fully transparent) to
1.0
(fully opaque) will be clamped to this range.
The values for properties
fill
and
stroke
are specifications of the type of paint to use when filling or stroking a given graphics element. The available options and syntax for <paint> are described in
Specifying paint
.
Within the SVG DOM, <paint> values are represented using
SVGPaint
对象。
Percentages are specified as a number followed by a "
%
" character:
percentage ::= number "%"
Note that the definition of <number> depends on whether the percentage is specified in a stylesheet or in an attribute that is not also a presentation attribute.
Percentage values are always relative to another value (for example, a length). Each attribute or property that allows percentages also defines the reference distance measurement to which the percentage refers.
Within the SVG DOM, a <percentage> is represented using an
SVGNumber
or
SVGAnimatedNumber
对象。
A time value is a <number> immediately followed by a time unit identifier. The time unit identifiers are:
ms
: milliseconds
s
: seconds
A <transform-list> is used to specify a list of coordinate system transformations. A detailed description of the possible values for a <transform-list> is given in the
transform
attribute definition.
Within the SVG DOM, a <transform-list> value is represented using an
SVGTransformList
or
SVGAnimatedTransformList
对象。
A U niform R esource L ocator.
A URL is a sequence of Unicode characters, building an address to an internal or external resource.
Before SVG 2, the more limited IRI content type was used instead, because the URL specification was not standardized before.
最后修改: , 由 MDN 贡献者