SVGAngle - Web APIs 编辑

The SVGAngle interface is used to represent a value that can be an <angle> or <number> value. An SVGAngle reflected through the animVal attribute is always read only.

An SVGAngle object can be designated as read only, which means that attempts to modify the object will result in an exception being thrown.

An SVGAngle object can be associated with a particular element. The associated element is used to determine which element's content attribute to update if the object reflects an attribute. Unless otherwise described, an SVGAngle object is not associated with any element.

Every SVGAngle object operates in one of two modes:

  1. Reflect the base value of a reflected animatable attribute (being exposed through the baseVal member of an SVGAnimatedAngle),
  2. Be detached, which is the case for SVGAngle objects created with SVGSVGElement.createSVGAngle().

Constants

SVG_ANGLETYPE_UNKNOWN
Some unknown type of value.
SVG_ANGLETYPE_UNSPECIFIED
A unitless <number> interpreted as a value in degrees.
SVG_ANGLETYPE_DEG
An <angle> with a deg unit.
SVG_ANGLETYPE_RAD
An <angle> with a rad unit.
SVG_ANGLETYPE_GRAD
An <angle> with a grad unit.

Properties

unitType
The type of the value as specified by one of the SVG_ANGLETYPE_* constants defined on this interface.
value

The value as a floating point value, in user units. Setting this attribute will cause valueInSpecifiedUnits and valueAsString to be updated automatically to reflect this setting.

Exceptions on setting: A DOMException with code NO_MODIFICATION_ALLOWED_ERR is raised when the length corresponds to a read-only attribute, or when the object itself is read-only.

valueInSpecifiedUnits

The value as a floating point value, in the units expressed by unitType. Setting this attribute will cause value and valueAsString to be updated automatically to reflect this setting.

Exceptions on setting: A DOMException with code NO_MODIFICATION_ALLOWED_ERR is raised when the length corresponds to a read-only attribute, or when the object itself is read-only.

valueAsString

The value as a DOMString value, in the units expressed by unitType. Setting this attribute will cause value, valueInSpecifiedUnits, and unitType to be updated automatically to reflect this setting.

Exceptions on setting: 

A DOMException with code SYNTAX_ERR is raised if the assigned string cannot be parsed as a valid <angle>.

A DOMException with code NO_MODIFICATION_ALLOWED_ERR is raised when the length corresponds to a read-only attribute, or when the object itself is read-only.

Methods

newValueSpecifiedUnits

Reset the value as a number with an associated unitType, thereby replacing the values for all of the attributes on the object.

Exceptions:

A DOMException with code NOT_SUPPORTED_ERR is raised if unitType is SVG_ANGLETYPE_UNKNOWN or not a valid unit type constant (one of the other SVG_ANGLETYPE_* constants defined on this interface).
A DOMException with code NO_MODIFICATION_ALLOWED_ERR is raised when the length corresponds to a read only attribute or when the object itself is read only.
convertToSpecifiedUnits
Preserve the same underlying stored value, but reset the stored unit identifier to the given unitType. Object attributes unitType, valueInSpecifiedUnits, and valueAsString might be modified as a result of this method.

Specifications

SpecificationStatusComment
Scalable Vector Graphics (SVG) 2
The definition of 'SVGElement' in that specification.
Candidate RecommendationAdds the dataset property.
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'SVGElement' in that specification.
RecommendationInitial definition

Browser compatibility

BCD tables only load in the browser

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:32 次

字数:7127

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文