japgolly.scalajs.react.vdom

SvgAttrs

Related Docs: object SvgAttrs | package vdom

trait SvgAttrs extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SvgAttrs
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final val accentHeight: Attr

    This attribute defines the distance from the origin to the top of accent characters, measured by a distance within the font coordinate system.

    This attribute defines the distance from the origin to the top of accent characters, measured by a distance within the font coordinate system. If the attribute is not specified, the effect is as if the attribute were set to the value of the ascent attribute.

    Value <number>

    MDN

  5. final val accumulate: Attr

    This attribute controls whether or not the animation is cumulative.

    This attribute controls whether or not the animation is cumulative. It is frequently useful for repeated animations to build upon the previous results, accumulating with each iteration. This attribute said to the animation if the value is added to the previous animated attribute's value on each iteration.

    Value none | sum

    MDN

  6. final val additive: Attr

    This attribute controls whether or not the animation is additive.

    This attribute controls whether or not the animation is additive. It is frequently useful to define animation as an offset or delta to an attribute's value, rather than as absolute values. This attribute said to the animation if their values are added to the original animated attribute's value.

    Value replace | sum

    MDN

  7. final val alignmentBaseline: Attr

    The alignment-baseline attribute specifies how an object is aligned with respect to its parent.

    The alignment-baseline attribute specifies how an object is aligned with respect to its parent. This property specifies which baseline of this element is to be aligned with the corresponding baseline of the parent. For example, this allows alphabetic baselines in Roman text to stay aligned across font size changes. It defaults to the baseline with the same name as the computed value of the alignment-baseline property. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css alignment-baseline for further information.

    Value: auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical | inherit

    MDN

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. final val ascent: Attr

    This attribute defines the maximum unaccented depth of the font within the font coordinate system.

    This attribute defines the maximum unaccented depth of the font within the font coordinate system. If the attribute is not specified, the effect is as if the attribute were set to the vert-origin-y value for the corresponding font.

    Value <number>

    MDN

  10. final val attributeName: Attr

    This attribute indicates the name of the attribute in the parent element that is going to be changed during an animation.

    This attribute indicates the name of the attribute in the parent element that is going to be changed during an animation.

    Value <attributeName>

    MDN

  11. final val attributeType: Attr

    This attribute specifies the namespace in which the target attribute and its associated values are defined.

    This attribute specifies the namespace in which the target attribute and its associated values are defined.

    Value CSS | XML | auto

    MDN

  12. final val azimuth: Attr

    The azimuth attribute represent the direction angle for the light source on the XY plane (clockwise), in degrees from the x axis.

    The azimuth attribute represent the direction angle for the light source on the XY plane (clockwise), in degrees from the x axis. If the attribute is not specified, then the effect is as if a value of 0 were specified.

    Value <number>

    MDN

  13. final val baseFrequency: Attr

    The baseFrequency attribute represent The base frequencies parameter for the noise function of the <feturbulence> primitive.

    The baseFrequency attribute represent The base frequencies parameter for the noise function of the <feturbulence> primitive. If two <number>s are provided, the first number represents a base frequency in the X direction and the second value represents a base frequency in the Y direction. If one number is provided, then that value is used for both X and Y. Negative values are forbidden. If the attribute is not specified, then the effect is as if a value of 0 were specified.

    Value <number-optional-number>

    MDN

  14. final val baselineShift: Attr

    The baseline-shift attribute allows repositioning of the dominant-baseline relative to the dominant-baseline of the parent text content element.

    The baseline-shift attribute allows repositioning of the dominant-baseline relative to the dominant-baseline of the parent text content element. The shifted object might be a sub- or superscript. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css baseline-shift for further information.

    Value auto | baseline | sup | sub | <percentage> | <length> | inherit

    MDN

  15. final val begin: Attr

    This attribute defines when an animation should begin.

    This attribute defines when an animation should begin. The attribute value is a semicolon separated list of values. The interpretation of a list of start times is detailed in the SMIL specification in "Evaluation of begin and end time lists". Each individual value can be one of the following: <offset-value>, <syncbase-value>, <event-value>, <repeat-value>, <accessKey-value>, <wallclock-sync-value> or the keyword indefinite.

    Value <begin-value-list>

    MDN

  16. final val bias: Attr

    The bias attribute shifts the range of the filter.

    The bias attribute shifts the range of the filter. After applying the kernelMatrix of the <feconvolvematrix> element to the input image to yield a number and applied the divisor attribute, the bias attribute is added to each component. This allows representation of values that would otherwise be clamped to 0 or 1. If bias is not specified, then the effect is as if a value of 0 were specified.

    Value <number>

    MDN

  17. final val calcMode: Attr

    This attribute specifies the interpolation mode for the animation.

    This attribute specifies the interpolation mode for the animation. The default mode is linear, however if the attribute does not support linear interpolation (e.g. for strings), the calcMode attribute is ignored and discrete interpolation is used.

    Value discrete | linear | paced | spline

    MDN

  18. final val class: Attr

    Assigns a class name or set of class names to an element.

    Assigns a class name or set of class names to an element. You may assign the same class name or names to any number of elements. If you specify multiple class names, they must be separated by whitespace characters. The class name of an element has two key roles: -As a style sheet selector, for use when an author wants to assign style information to a set of elements. -For general usage by the browser. The class can be used to style SVG content using CSS.

    Value <list-of-class-names>

    MDN

  19. final val clip: Attr

    The clip attribute has the same parameter values as defined for the css clip property.

    The clip attribute has the same parameter values as defined for the css clip property. Unitless values, which indicate current user coordinates, are permitted on the coordinate values on the <shape>. The value of auto defines a clipping path along the bounds of the viewport created by the given element. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css clip for further information.

    Value auto | <shape> | inherit

    MDN

  20. final val clipPath: Attr

    The clip-path attribute bind the element is applied to with a given <clippath> element As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet

    The clip-path attribute bind the element is applied to with a given <clippath> element As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet

    Value <FuncIRI> | none | inherit

    MDN

  21. final val clipPathUnits: Attr

    The clipPathUnits attribute defines the coordinate system for the contents of the <clippath> element.

    The clipPathUnits attribute defines the coordinate system for the contents of the <clippath> element. the clipPathUnits attribute is not specified, then the effect is as if a value of userSpaceOnUse were specified. Note that values defined as a percentage inside the content of the <clippath> are not affected by this attribute. It means that even if you set the value of maskContentUnits to objectBoundingBox, percentage values will be calculated as if the value of the attribute were userSpaceOnUse.

    Value userSpaceOnUse | objectBoundingBox

    MDN

  22. final val clipRule: Attr

    The clip-rule attribute only applies to graphics elements that are contained within a <clippath> element.

    The clip-rule attribute only applies to graphics elements that are contained within a <clippath> element. The clip-rule attribute basically works as the fill-rule attribute, except that it applies to <clippath> definitions.

    Value nonezero | evenodd | inherit

    MDN

  23. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final val color: Attr

    The color attribute is used to provide a potential indirect value (currentColor) for the fill, stroke, stop-color, flood-color and lighting-color attributes.

    The color attribute is used to provide a potential indirect value (currentColor) for the fill, stroke, stop-color, flood-color and lighting-color attributes. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color for further information.

    Value <color> | inherit

    MDN

  25. final val colorInterpolation: Attr

    The color-interpolation attribute specifies the color space for gradient interpolations, color animations and alpha compositing.When a child element is blended into a background, the value of the color-interpolation attribute on the child determines the type of blending, not the value of the color-interpolation on the parent.

    The color-interpolation attribute specifies the color space for gradient interpolations, color animations and alpha compositing.When a child element is blended into a background, the value of the color-interpolation attribute on the child determines the type of blending, not the value of the color-interpolation on the parent. For gradients which make use of the xlink:href attribute to reference another gradient, the gradient uses the color-interpolation attribute value from the gradient element which is directly referenced by the fill or stroke attribute. When animating colors, color interpolation is performed according to the value of the color-interpolation attribute on the element being animated. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-interpolation for further information

    Value auto | sRGB | linearRGB | inherit

    MDN

  26. final val colorInterpolationFilters: Attr

    The color-interpolation-filters attribute specifies the color space for imaging operations performed via filter effects.

    The color-interpolation-filters attribute specifies the color space for imaging operations performed via filter effects. Note that color-interpolation-filters has a different initial value than color-interpolation. color-interpolation-filters has an initial value of linearRGB, whereas color-interpolation has an initial value of sRGB. Thus, in the default case, filter effects operations occur in the linearRGB color space, whereas all other color interpolations occur by default in the sRGB color space. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-interpolation-filters for further information

    Value auto | sRGB | linearRGB | inherit

    MDN

  27. final val colorProfile: Attr

    The color-profile attribute is used to define which color profile a raster image included through the <image> element should use.

    The color-profile attribute is used to define which color profile a raster image included through the <image> element should use. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-profile for further information.

    Value auto | sRGB | <name> | <IRI> | inherit

    MDN

  28. final val colorRendering: Attr

    The color-rendering attribute provides a hint to the SVG user agent about how to optimize its color interpolation and compositing operations.

    The color-rendering attribute provides a hint to the SVG user agent about how to optimize its color interpolation and compositing operations. color-rendering takes precedence over color-interpolation-filters. For example, assume color-rendering: optimizeSpeed and color-interpolation-filters: linearRGB. In this case, the SVG user agent should perform color operations in a way that optimizes performance, which might mean sacrificing the color interpolation precision as specified by color-interpolation-filters: linearRGB. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-rendering for further information

    Value auto | optimizeSpeed | optimizeQuality | inherit

    MDN

  29. final val contentScriptType: Attr

    The contentScriptType attribute on the <svg> element specifies the default scripting language for the given document fragment.

    The contentScriptType attribute on the <svg> element specifies the default scripting language for the given document fragment. This attribute sets the default scripting language used to process the value strings in event attributes. This language must be used for all instances of script that do not specify their own scripting language. The value content-type specifies a media type, per MIME Part Two: Media Types [RFC2046]. The default value is application/ecmascript

    Value <content-type>

    MDN

  30. final val contentStyleType: Attr

    This attribute specifies the style sheet language for the given document fragment.

    This attribute specifies the style sheet language for the given document fragment. The contentStyleType is specified on the <svg> element. By default, if it's not defined, the value is text/css

    Value <content-type>

    MDN

  31. final val cursor: Attr

    The cursor attribute specifies the mouse cursor displayed when the mouse pointer is over an element.This attribute behave exactly like the css cursor property except that if the browser suport the <cursor> element, it should allow to use it with the <funciri> notation.

    The cursor attribute specifies the mouse cursor displayed when the mouse pointer is over an element.This attribute behave exactly like the css cursor property except that if the browser suport the <cursor> element, it should allow to use it with the <funciri> notation. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css cursor for further information.

    Value auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize| text | wait | help | inherit

    MDN

  32. final val cx: Attr

    For the <circle> and the <ellipse> element, this attribute define the x-axis coordinate of the center of the element.

    For the <circle> and the <ellipse> element, this attribute define the x-axis coordinate of the center of the element. If the attribute is not specified, the effect is as if a value of "0" were specified.For the <radialgradient> element, this attribute define the x-axis coordinate of the largest (i.e., outermost) circle for the radial gradient. The gradient will be drawn such that the 100% gradient stop is mapped to the perimeter of this largest (i.e., outermost) circle. If the attribute is not specified, the effect is as if a value of 50% were specified

    Value <coordinate>

    MDN

  33. final val cy: Attr

    For the <circle> and the <ellipse> element, this attribute define the y-axis coordinate of the center of the element.

    For the <circle> and the <ellipse> element, this attribute define the y-axis coordinate of the center of the element. If the attribute is not specified, the effect is as if a value of "0" were specified.For the <radialgradient> element, this attribute define the x-axis coordinate of the largest (i.e., outermost) circle for the radial gradient. The gradient will be drawn such that the 100% gradient stop is mapped to the perimeter of this largest (i.e., outermost) circle. If the attribute is not specified, the effect is as if a value of 50% were specified

    Value <coordinate>

    MDN

  34. final val d: Attr

    MDN

  35. final val diffuseConstant: Attr

    MDN

  36. final val direction: Attr

    MDN

  37. final val display: Attr

    MDN

  38. final val divisor: Attr

    MDN

  39. final val dominantBaseline: Attr

    MDN

  40. final val dur: Attr

    MDN

  41. final val dx: Attr

    MDN

  42. final val dy: Attr

    MDN

  43. final val edgeMode: Attr

    MDN

  44. final val elevation: Attr

    MDN

  45. final val end: Attr

    MDN

  46. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  47. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  48. final val externalResourcesRequired: Attr

    MDN

  49. final val fill: Attr

    MDN

  50. final val fillOpacity: Attr

    MDN

  51. final val fillRule: Attr

    MDN

  52. final val filter: Attr

    MDN

  53. final val filterRes: Attr

    MDN

  54. final val filterUnits: Attr

    MDN

  55. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  56. final val floodColor: Attr

    MDN

  57. final val floodOpacity: Attr

    MDN

  58. final val fontFamily: Attr

    MDN

  59. final val fontSize: Attr

    MDN

  60. final val fontSizeAdjust: Attr

    MDN

  61. final val fontStretch: Attr

    MDN

  62. final val fontVariant: Attr

    MDN

  63. final val fontWeight: Attr

    MDN

  64. final val from: Attr

    MDN

  65. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  66. final val gradientTransform: Attr

    MDN

  67. final val gradientUnits: Attr

    MDN

  68. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  69. final val height: Attr

    MDN

  70. final val id: Attr

  71. final val imageRendering: Attr

    MDN

  72. final val in: Attr

    MDN

  73. final val in2: Attr

    MDN

  74. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  75. final val k1: Attr

    MDN

  76. final val k2: Attr

    MDN

  77. final val k3: Attr

    MDN

  78. final val k4: Attr

    MDN

  79. final val kernelMatrix: Attr

    MDN

  80. final val kernelUnitLength: Attr

    MDN

  81. final val kerning: Attr

    MDN

  82. final val keySplines: Attr

    MDN

  83. final val keyTimes: Attr

    MDN

  84. final val letterSpacing: Attr

    MDN

  85. final val lightingColor: Attr

    MDN

  86. final val limitingConeAngle: Attr

    MDN

  87. final val local: Attr

    MDN

  88. final val markerEnd: Attr

    MDN

  89. final val markerHeight: Attr

    MDN

  90. final val markerMid: Attr

    MDN

  91. final val markerStart: Attr

    MDN

  92. final val markerUnits: Attr

    MDN

  93. final val markerWidth: Attr

    MDN

  94. final val mask: Attr

    MDN

  95. final val maskContentUnits: Attr

    MDN

  96. final val maskUnits: Attr

    MDN

  97. final val max: Attr

    MDN

  98. final val min: Attr

    MDN

  99. final val mode: Attr

    MDN

  100. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  101. final def notify(): Unit

    Definition Classes
    AnyRef
  102. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  103. final val numOctaves: Attr

    MDN

  104. final val offset: Attr

  105. final val opacity: Attr

    MDN

  106. final val operator: Attr

    MDN

  107. final val order: Attr

    MDN

  108. final val overflow: Attr

    MDN

  109. final val paintOrder: Attr

    MDN

  110. final val pathLength: Attr

    MDN

  111. final val patternContentUnits: Attr

    MDN

  112. final val patternTransform: Attr

    MDN

  113. final val patternUnits: Attr

    MDN

  114. final val pointerEvents: Attr

    MDN

  115. final val points: Attr

    MDN

  116. final val pointsAtX: Attr

    MDN

  117. final val pointsAtY: Attr

    MDN

  118. final val pointsAtZ: Attr

    MDN

  119. final val preserveAlpha: Attr

    MDN

  120. final val preserveAspectRatio: Attr

    MDN

  121. final val primitiveUnits: Attr

    MDN

  122. final val r: Attr

    MDN

  123. final val radius: Attr

    MDN

  124. final val repeatCount: Attr

    MDN

  125. final val repeatDur: Attr

    MDN

  126. final val requiredFeatures: Attr

    MDN

  127. final val restart: Attr

    MDN

  128. final val result: Attr

    MDN

  129. final val rx: Attr

    MDN

  130. final val ry: Attr

    MDN

  131. final val scale: Attr

    MDN

  132. final val seed: Attr

    MDN

  133. final val shapeRendering: Attr

    MDN

  134. final val specularConstant: Attr

    MDN

  135. final val specularExponent: Attr

    MDN

  136. final val spreadMethod: Attr

    MDN

  137. final val stdDeviation: Attr

    MDN

  138. final val stitchTiles: Attr

    MDN

  139. final val stopColor: Attr

    MDN

  140. final val stopOpacity: Attr

    MDN

  141. final val stroke: Attr

    MDN

  142. final val strokeDasharray: Attr

    MDN

  143. final val strokeDashoffset: Attr

    MDN

  144. final val strokeLinecap: Attr

    MDN

  145. final val strokeLinejoin: Attr

    MDN

  146. final val strokeMiterlimit: Attr

    MDN

  147. final val strokeOpacity: Attr

    MDN

  148. final val strokeWidth: Attr

    MDN

  149. final val style: Attr

    MDN

  150. final val surfaceScale: Attr

    MDN

  151. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  152. final val targetX: Attr

    MDN

  153. final val targetY: Attr

    MDN

  154. final val textAnchor: Attr

    MDN

  155. final val textDecoration: Attr

    MDN

  156. final val textRendering: Attr

    MDN

  157. final val to: Attr

    MDN

  158. def toString(): String

    Definition Classes
    AnyRef → Any
  159. final val transform: Attr

  160. final val type: Attr

  161. final val values: Attr

  162. object vectorEffect extends Style

    NOTE: This is a Style because react.js does not support it as an Attribute

    NOTE: This is a Style because react.js does not support it as an Attribute

    Sometimes it is of interest to let the outline of an object keep its original width no matter which transforms are applied to it. For example, in a map with a 2px wide line representing roads it is of interest to keep the roads 2px wide even when the user zooms into the map. To achieve this, SVG Tiny 1.2 introduces the 'vector-effect' property. Future versions of the SVG language will allow for more powerful vector effects through this property but this version restricts it to being able to specify the non-scaling stroke behavior

    w3.org

  163. final val viewBox: Attr

    MDN

  164. final val visibility: Attr

  165. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  166. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  167. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  168. final val width: Attr

  169. final val wordSpacing: Attr

  170. final val writingMode: Attr

  171. final val x: Attr

  172. final val x1: Attr

  173. final val x2: Attr

  174. final val xChannelSelector: Attr

  175. final val xLink: Attr

  176. final val xLinkHref: Attr

  177. final val xLinkTitle: Attr

  178. final val xmlSpace: Attr

  179. final val xmlns: Attr

    MDN

  180. final val y: Attr

  181. final val y1: Attr

  182. final val y2: Attr

  183. final val yChannelSelector: Attr

  184. final val z: Attr

Inherited from AnyRef

Inherited from Any

Ungrouped