Object

scalatags.Text

svgAttrs

Related Doc: package Text

Permalink

object svgAttrs extends Cap with SvgAttrs

SVG only attributes

Definition Classes
TextBundle
Linear Supertypes
generic.SvgAttrs[Builder, String, String], Cap, TagFactory, generic.Util[Builder, String, String], LowPriUtil[Builder, String, String], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. svgAttrs
  2. SvgAttrs
  3. Cap
  4. TagFactory
  5. Util
  6. LowPriUtil
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type BaseTagType = TypedTag[String]

    Permalink
    Definition Classes
    Cap
  2. type ConcreteHtmlTag[T <: String] = TypedTag[T]

    Permalink
    Definition Classes
    CapUtil
  3. implicit class SeqFrag[A] extends Text.Frag

    Permalink
    Definition Classes
    Cap
  4. implicit class SeqNode[A] extends Modifier[Builder]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

    Definition Classes
    Util

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit def ArrayFrag[A](xs: Array[A])(implicit ev: (A) ⇒ generic.Frag[Builder, String]): generic.Frag[Builder, String]

    Permalink

    Renders an Seq of FragT into a single FragT

    Renders an Seq of FragT into a single FragT

    Definition Classes
    LowPriUtil
  5. implicit def ArrayNode[A](xs: Array[A])(implicit ev: (A) ⇒ generic.Modifier[Builder]): SeqNode[A]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

    Definition Classes
    Util
  6. implicit def OptionFrag[A](xs: Option[A])(implicit ev: (A) ⇒ generic.Frag[Builder, String]): generic.Frag[Builder, String]

    Permalink

    Renders an Option of FragT into a single FragT

    Renders an Option of FragT into a single FragT

    Definition Classes
    LowPriUtil
  7. implicit def OptionNode[A](xs: Option[A])(implicit ev: (A) ⇒ generic.Modifier[Builder]): SeqNode[A]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

    Definition Classes
    Util
  8. implicit def UnitFrag(u: Unit): StringFrag

    Permalink

    Lets you put Unit into a scalatags tree, as a no-op.

    Lets you put Unit into a scalatags tree, as a no-op.

    Definition Classes
    CapLowPriUtil
  9. lazy val accentHeight: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  10. lazy val accumulate: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  11. lazy val additive: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  12. lazy val alignmentBaseline: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  13. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  14. lazy val ascent: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  15. def attr(s: String, ns: Namespace = null, raw: Boolean = false): generic.Attr

    Permalink

    Constructs an Attr attribute object from a string; can be used inline:

    Constructs an Attr attribute object from a string; can be used inline:

    div(
      attr("hello-world-special-attr") := "foo
    )

    Or assigned to a name and used later

    val hello = attr("hello-world-special-attr")
    div(
      hello := "foo
    )
    Definition Classes
    Util
  16. lazy val attributeName: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  17. lazy val attributeType: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  18. lazy val azimuth: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  19. lazy val baseFrequency: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  20. lazy val baselineShift: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  21. lazy val begin: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  22. lazy val bias: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  23. lazy val calcMode: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  24. lazy val class: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  25. lazy val clip: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  26. lazy val clipPath: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  27. lazy val clipPathUnits: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  28. lazy val clipRule: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  29. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. lazy val color: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  31. lazy val colorInterpolation: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  32. lazy val colorInterpolationFilters: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  33. lazy val colorProfile: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  34. lazy val colorRendering: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  35. lazy val contentScriptType: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  36. lazy val contentStyleType: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  37. def css(s: String): generic.Style

    Permalink

    Constructs a CSS Style from a string, can be used inline

    Constructs a CSS Style from a string, can be used inline

    div(
      css("-moz-special-style") := "foo"
    )

    Or assigned to a name and used later

    val mozSpecial := css("-moz-special-style")
    div(
      mozSpecial := "foo"
    )
    Definition Classes
    Util
  38. lazy val cursor: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  39. lazy val cx: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  40. lazy val cy: generic.Attr

    Permalink

    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

    Definition Classes
    SvgAttrs
  41. lazy val d: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  42. lazy val diffuseConstant: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  43. lazy val direction: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  44. lazy val display: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  45. lazy val divisor: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  46. lazy val dominantBaseline: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  47. lazy val dur: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  48. lazy val dx: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  49. lazy val dy: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  50. lazy val edgeMode: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  51. lazy val elevation: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  52. lazy val end: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  53. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  55. lazy val externalResourcesRequired: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  56. lazy val fill: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  57. lazy val fillOpacity: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  58. lazy val fillRule: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  59. lazy val filter: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  60. lazy val filterRes: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  61. lazy val filterUnits: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  62. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  63. lazy val floodColor: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  64. lazy val floodOpacity: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  65. lazy val fontFamily: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  66. lazy val fontSize: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  67. lazy val fontSizeAdjust: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  68. lazy val fontStretch: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  69. lazy val fontVariant: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  70. lazy val fontWeight: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  71. def frag(frags: generic.Frag[Builder, String]*): generic.Frag[Builder, String]

    Permalink
    Definition Classes
    Util
  72. lazy val from: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  73. lazy val fx: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  74. lazy val fy: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  75. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  76. lazy val gradientTransform: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  77. lazy val gradientUnits: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  78. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  79. lazy val height: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  80. lazy val id: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  81. lazy val imageRendering: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  82. lazy val in: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  83. lazy val in2: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  84. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  85. lazy val k1: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  86. lazy val k2: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  87. lazy val k3: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  88. lazy val k4: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  89. lazy val kernelMatrix: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  90. lazy val kernelUnitLength: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  91. lazy val kerning: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  92. lazy val keySplines: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  93. lazy val keyTimes: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  94. lazy val letterSpacing: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  95. lazy val lightingColor: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  96. lazy val limitingConeAngle: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  97. lazy val local: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  98. def makeAbstractTypedTag[T](tag: String, void: Boolean, namespaceConfig: Namespace): TypedTag[Nothing]

    Permalink
    Definition Classes
    CapUtil
  99. lazy val markerEnd: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  100. lazy val markerHeight: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  101. lazy val markerMid: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  102. lazy val markerStart: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  103. lazy val markerUnits: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  104. lazy val markerWidth: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  105. lazy val mask: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  106. lazy val maskContentUnits: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  107. lazy val maskUnits: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  108. lazy val max: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  109. lazy val min: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  110. lazy val mode: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  111. def modifier(mods: generic.Modifier[Builder]*): generic.Modifier[Builder]

    Permalink
    Definition Classes
    Util
  112. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  113. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  114. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  115. lazy val numOctaves: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  116. lazy val offset: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  117. lazy val opacity: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  118. lazy val operator: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  119. lazy val order: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  120. lazy val orient: generic.Attr

    Permalink

    The ‘orient’ attribute indicates how the marker is rotated when it is placed at its position on the markable element.

    The ‘orient’ attribute indicates how the marker is rotated when it is placed at its position on the markable element.

    W3C

    Definition Classes
    SvgAttrs
  121. lazy val overflow: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  122. lazy val paintOrder: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  123. lazy val pathLength: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  124. lazy val patternContentUnits: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  125. lazy val patternTransform: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  126. lazy val patternUnits: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  127. lazy val pointerEvents: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  128. lazy val points: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  129. lazy val pointsAtX: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  130. lazy val pointsAtY: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  131. lazy val pointsAtZ: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  132. lazy val preserveAlpha: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  133. lazy val preserveAspectRatio: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  134. lazy val primitiveUnits: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  135. lazy val r: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  136. lazy val radius: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  137. lazy val refX: generic.Attr

    Permalink

    The ‘refX’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element.

    The ‘refX’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element. It is interpreted as being in the coordinate system of the marker contents, after application of the ‘viewBox’ and ‘preserveAspectRatio’ attributes.

    W3C

    Definition Classes
    SvgAttrs
  138. lazy val refY: generic.Attr

    Permalink

    The ‘refY’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element.

    The ‘refY’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element. It is interpreted as being in the coordinate system of the marker contents, after application of the ‘viewBox’ and ‘preserveAspectRatio’ attributes.

    W3C

    Definition Classes
    SvgAttrs
  139. lazy val repeatCount: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  140. lazy val repeatDur: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  141. lazy val requiredFeatures: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  142. lazy val restart: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  143. lazy val result: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  144. lazy val rx: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  145. lazy val ry: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  146. lazy val scale: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  147. lazy val seed: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  148. lazy val shapeRendering: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  149. lazy val specularConstant: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  150. lazy val specularExponent: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  151. lazy val spreadMethod: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  152. lazy val stdDeviation: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  153. lazy val stitchTiles: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  154. lazy val stopColor: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  155. lazy val stopOpacity: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  156. implicit def stringAttrX: GenericAttr[String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    CapUtil
  157. implicit def stringPixelStyleX: GenericPixelStyle[String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    CapUtil
  158. implicit def stringStyleX: GenericStyle[String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    CapUtil
  159. lazy val stroke: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  160. lazy val strokeDasharray: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  161. lazy val strokeDashoffset: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  162. lazy val strokeLinecap: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  163. lazy val strokeLinejoin: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  164. lazy val strokeMiterlimit: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  165. lazy val strokeOpacity: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  166. lazy val strokeWidth: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  167. lazy val style: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  168. lazy val surfaceScale: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  169. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  170. def tag(s: String, void: Boolean = false): ConcreteHtmlTag[String]

    Permalink
    Definition Classes
    TagFactoryUtil
  171. lazy val targetX: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  172. lazy val targetY: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  173. lazy val textAnchor: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  174. lazy val textDecoration: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  175. lazy val textRendering: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  176. lazy val to: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  177. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  178. lazy val transform: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  179. lazy val type: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  180. lazy val values: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  181. lazy val viewBox: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  182. lazy val visibility: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  183. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  186. lazy val width: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  187. lazy val wordSpacing: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  188. lazy val writingMode: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  189. lazy val x: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  190. lazy val x1: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  191. lazy val x2: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  192. lazy val xChannelSelector: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  193. lazy val xLink: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  194. lazy val xLinkHref: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  195. lazy val xLinkTitle: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  196. lazy val xmlSpace: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  197. lazy val xmlns: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  198. lazy val xmlnsXlink: generic.Attr

    Permalink

    MDN

    MDN

    Definition Classes
    SvgAttrs
  199. lazy val y: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  200. lazy val y1: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  201. lazy val y2: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  202. lazy val yChannelSelector: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs
  203. lazy val z: generic.Attr

    Permalink
    Definition Classes
    SvgAttrs

Inherited from generic.SvgAttrs[Builder, String, String]

Inherited from Cap

Inherited from TagFactory

Inherited from generic.Util[Builder, String, String]

Inherited from LowPriUtil[Builder, String, String]

Inherited from AnyRef

Inherited from Any

Ungrouped