Class

pl.metastack.metaweb.tag

Img

Related Doc: package tag

Permalink

case class Img(attributes: scala.Predef.Map[String, Any] = Predef.Map.empty, children: Seq[Node] = Seq.empty) extends HTMLTag[Img] with Product with Serializable

The HTML Image Element (<img>) represents an image of the document.

Usage note:
Browsers do not always display the image referenced by the element. This is the case for non-graphical browsers (including those used by people with vision impairments), if the user chooses not to display images, or if the browser is unable to display the image because it is invalid or an unsupported type. In these cases, the browser may replace the image with the text defined in this element's alt attribute.

Linear Supertypes
Serializable, Serializable, Product, Equals, HTMLTag[Img], Tag, Node, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Img
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. HTMLTag
  7. Tag
  8. Node
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Img(attributes: scala.Predef.Map[String, Any] = Predef.Map.empty, children: Seq[Node] = Seq.empty)

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++(nodes: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  4. def +:(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  5. def -(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  6. def --(node: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  7. def :+(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def accesskey(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  10. def accesskey: scala.Option[String]

    Permalink

    Provides a hint for generating a keyboard shortcut for the current element.

    Provides a hint for generating a keyboard shortcut for the current element. This attribute consists of a space-separated list of characters. The browser should use the first one that exists on the computer keyboard layout.

    Definition Classes
    HTMLTag
  11. def align vertical-align(value: String): Img

    Permalink
  12. def align vertical-align: scala.Option[String]

    Permalink

    The alignment of the image with respect to its surrounding context.

  13. def alt(value: String): Img

    Permalink
  14. def alt: scala.Option[String]

    Permalink

    This attribute defines the alternative text describing the image.

    This attribute defines the alternative text describing the image. Users will see this displayed if the image URL is wrong, the image is not in one of the supported formats, or if the image is not yet downloaded.

    Usage note: Omitting this attribute indicates that the image is a key part of the content, but no textual equivalent is available. Setting this attribute to the empty string indicates that this image is not a key part of the content; non-visual browsers may omit it from rendering.

  15. def append(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  16. def appendAll(nodes: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  17. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  18. def attr(attribute: String): scala.Option[Any]

    Permalink
    Definition Classes
    Tag
  19. val attributes: scala.Predef.Map[String, Any]

    Permalink
    Definition Classes
    ImgTag
  20. def border(value: String): Img

    Permalink
  21. def border: scala.Option[String]

    Permalink

    The width of a border around the image.

  22. def byClass[T <: Tag](class: String): T

    Permalink
    Definition Classes
    Tag
  23. def byClassOpt[T <: HTMLTag[_]](class: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  24. def byId[T <: Tag](id: String): T

    Permalink
    Definition Classes
    Tag
  25. def byIdOpt[T <: Tag](id: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  26. def byTag[T <: Tag](tagName: String): T

    Permalink
    Definition Classes
    Tag
  27. def byTagOpt[T <: Tag](tag: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  28. val children: Seq[Node]

    Permalink
    Definition Classes
    ImgTag
  29. def class(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  30. def class: scala.Option[String]

    Permalink

    Is a space-separated list of the classes of the element.

    Is a space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method Document.getElementsByClassName().

    Definition Classes
    HTMLTag
  31. def clearAll: Tag

    Permalink
    Definition Classes
    Tag
  32. def clearAttr: Tag

    Permalink
    Definition Classes
    Tag
  33. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def contenteditable(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  35. def contenteditable: scala.Option[String]

    Permalink

    Is an enumerated attribute indicating if the element should be editable by the user.

    Is an enumerated attribute indicating if the element should be editable by the user. If so, the browser modifies its widget to allow editing. The attribute must take one of the following values:

    • true or the empty string, which indicates that the element must be editable;
    • false, which indicates that the element must not be editable.
    Definition Classes
    HTMLTag
  36. def contextmenu(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  37. def contextmenu: scala.Option[String]

    Permalink

    Is the id of an <menu> to use as the contextual menu for this element.

    Is the id of an <menu> to use as the contextual menu for this element.

    Definition Classes
    HTMLTag
  38. def copy(attributes: scala.Predef.Map[String, Any] = attributes, children: Seq[Node] = children): Img

    Permalink
    Definition Classes
    ImgTag
  39. def crossorigin(value: String): Img

    Permalink
  40. def crossorigin: scala.Option[String]

    Permalink

    This enumerated attribute indicates if the fetching of the related image must be done using CORS or not.

    This enumerated attribute indicates if the fetching of the related image must be done using CORS or not. CORS-enabled images can be reused in the <canvas> element without being tainted. The allowed values are: <dl> <dt> anonymous </dt>

    A cross-origin request (i.e., with Origin: HTTP header) is performed. But no credential is sent (i.e., no cookie, no X.509 certificate, and no HTTP Basic authentication is sent). If the server does not give credentials to the origin site (by not setting the Access-Control-Allow-Origin: HTTP header), the image will be tainted and its usage restricted.
    <dt> use-credentials </dt>
    A cross-origin request (i.e., with Origin: HTTP header) performed with credential is sent (i.e., a cookie, a certificate, and HTTP Basic authentication is performed). If the server does not give credentials to the origin site (through Access-Control-Allow-Credentials: HTTP header), the image will be tainted and its usage restricted.
    </dl> When not present, the resource is fetched without a CORS request (i.e., without sending the Origin: HTTP header), preventing its non-tainted usage in <canvas> elements. If invalid, it is handled as if the enumerated keyword anonymous was used. See CORS settings attributes for additional information.

  41. def dir(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  42. def dir: scala.Option[String]

    Permalink

    Is an enumerated attribute indicating the directionality of the element's text.

    Is an enumerated attribute indicating the directionality of the element's text. It can have the following values:

    • ltr, which means left to right and is to be used for languages that are written from the left to the right (like English);
    • rtl, which means right to left and is to be used for languages that are written from the right to the left (like Arabic);
    • auto, which let the user agent decides. It uses a basic algorithm as it parses the characters inside the element until it finds a character with a strong directionality, then apply that directionality to the whole element.
    Definition Classes
    HTMLTag
  43. def draggable(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  44. def draggable: scala.Option[String]

    Permalink

    Is an enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API.

    Is an enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API. It can have the following values:

    • true, which indicates that the element may be dragged
    • false, which indicates that the element may not be dragged.
    Definition Classes
    HTMLTag
  45. def dropzone(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  46. def dropzone: scala.Option[String]

    Permalink

    Is an enumerated attribute indicating what types of content can be dropped on an element, using the Drag and Drop API.

    Is an enumerated attribute indicating what types of content can be dropped on an element, using the Drag and Drop API. It can have the following values:

    • copy, which indicates that dropping will create a copy of the element that was dragged
    • move, which indicates that the element that was dragged will be moved to this new location.
    • link, will create a link to the dragged data.
    Definition Classes
    HTMLTag
  47. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  48. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  49. def find(f: (Node) ⇒ Boolean): scala.Option[Node]

    Permalink
    Definition Classes
    Tag
  50. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  51. def height(value: String): Img

    Permalink
  52. def height: scala.Option[String]

    Permalink

    The intrinsic height of the image in HTML5 CSS pixels, or HTML 4 in pixels or as a percentage.

    The intrinsic height of the image in HTML5 CSS pixels, or HTML 4 in pixels or as a percentage.

  53. def hidden(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  54. def hidden: scala.Option[String]

    Permalink

    Is a Boolean attribute indicates that the element is not yet, or is no longer, relevant.

    Is a Boolean attribute indicates that the element is not yet, or is no longer, relevant. For example, it can be used to hide elements of the page that can't be used until the login process has been completed. The browser won't render such elements. This attribute must not be used to hide content that could legitimately be shown.

    Definition Classes
    HTMLTag
  55. def hspace(value: String): Img

    Permalink
  56. def hspace: scala.Option[String]

    Permalink

    The number of pixels of white space to insert to the left and right of the image.

  57. def id(value: String): Img

    Permalink
    Definition Classes
    HTMLTagTag
  58. def id: scala.Option[String]

    Permalink

    Defines a unique identifier (ID) which must be unique in the whole document.

    Defines a unique identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS).

    Definition Classes
    HTMLTagTag
  59. def instantiate(nodes: (String, Node)*): Tag

    Permalink
    Definition Classes
    Tag
  60. def instantiateMap(nodes: scala.Predef.Map[String, Node]): Tag

    Permalink
    Definition Classes
    Tag
  61. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  62. def ismap(value: String): Img

    Permalink
  63. def ismap: scala.Option[String]

    Permalink

    This Boolean attribute indicates that the image is part of a server-side map.

    This Boolean attribute indicates that the image is part of a server-side map. If so, the precise coordinates of a click are sent to the server.

    Usage note: This attribute is allowed only if the <img> element is a descendant of an <a> element with a valid href attribute.

  64. def itemid(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  65. def itemid: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  66. def itemprop(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  67. def itemprop: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  68. def itemref(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  69. def itemref: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  70. def itemscope(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  71. def itemscope: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  72. def itemtype(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  73. def itemtype: scala.Option[String]

    Permalink

    These attributes are related to the WHATWG HTML Microdata feature.

    These attributes are related to the WHATWG HTML Microdata feature.

    Definition Classes
    HTMLTag
  74. def lang(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  75. def lang: scala.Option[String]

    Permalink

    Participates in defining the language of the element, the language that non-editable elements are written in or the language that editable elements should be written in.

    Participates in defining the language of the element, the language that non-editable elements are written in or the language that editable elements should be written in. The tag contains one single entry value in the format defines in the Tags for Identifying Languages (BCP47) IETF document. xml:lang has priority over it.

    Definition Classes
    HTMLTag
  76. def longdesc(value: String): Img

    Permalink
  77. def longdesc: scala.Option[String]

    Permalink

    The URL of a description of the image to be displayed, which supplements the alt text.

    The URL of a description of the image to be displayed, which supplements the alt text.

  78. def map(f: (Node) ⇒ Node): Node

    Permalink
    Definition Classes
    TagNode
  79. def name(value: String): Img

    Permalink
  80. def name: scala.Option[String]

    Permalink

    A name for the element.

    A name for the element. It is supported in HTML 4 only for backward compatibility. Use the id attribute instead.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  84. def partialMap(f: PartialFunction[Node, Node]): Node

    Permalink
    Definition Classes
    Tag
  85. def prepend(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  86. def remAttr(attribute: String): Tag

    Permalink
    Definition Classes
    Tag
  87. def remove(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  88. def removeAll(node: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  89. def replace(reference: Node, node: Node): Tag

    Permalink
    Definition Classes
    Tag
  90. def set(nodes: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  91. def set(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  92. def setAttr(attribute: String, value: Any): Tag

    Permalink
    Definition Classes
    Tag
  93. def sizes(value: String): Img

    Permalink
  94. def sizes: scala.Option[String]

    Permalink

    A list of one or more strings separated by commas indicating a set of source sizes.

    A list of one or more strings separated by commas indicating a set of source sizes. Each source size consists of:

    • a media condition. This must be omitted for the last item.
    • a source size value.

    Source size values specify the intended display size of the image. User agents use the current source size to select one of the sources supplied by the srcset attribute, when those sources are described using width ('w') descriptors. The selected source size affects the intrinsic size of the image (the image’s display size if no CSS styling is applied). If the srcset attribute is absent, or contains no values with a width descriptor, then the sizes attribute has no effect.

  95. def spellcheck(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  96. def spellcheck: scala.Option[String]

    Permalink

    Is an enumerated attribute defines whether the element may be checked for spelling errors.

    Is an enumerated attribute defines whether the element may be checked for spelling errors. It may have the following values:

    • true, which indicates that the element should be, if possible, checked for spelling errors;
    • false, which indicates that the element should not be checked for spelling errors.
    Definition Classes
    HTMLTag
  97. def src(value: String): Img

    Permalink
  98. def src: scala.Option[String]

    Permalink

    The image URL.

    The image URL. This attribute is mandatory for the <img> element. On browsers supporting srcset, src is treated like a candidate image with a pixel density descriptor 1x unless an image with this pixel density descriptor is already defined in srcset or srcset contains ' w' descriptors.

  99. def srcset(value: String): Img

    Permalink
  100. def srcset: scala.Option[String]

    Permalink

    A list of one or more strings separated by commas indicating a set of possible image sources for the user agent to use.

    A list of one or more strings separated by commas indicating a set of possible image sources for the user agent to use. Each string is composed of:

    • a URL to an image,
    • optionally, whitespace followed by one of:
    • a width descriptor, that is a positive integer directly followed by 'w'. The width descriptor is divided by the source size given in the sizes attribute to calculate the effective pixel density.
    • a pixel density descriptor, that is a positive floating point number directly followed by 'x'.

    If no descriptor is specified, the source is assigned the default descriptor: 1x.

    It is invalid to mix width descriptors and pixel density descriptors in the same srcset attribute. Duplicate descriptors (for instance, two sources in the same srcset which are both described with '2x') are invalid, too.

    User agents are given discretion to choose any one of the available sources. This provides them with significant leeway to tailor their selection based on things like user preferences or bandwidth conditions.

  101. def style(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  102. def style: scala.Option[String]

    Permalink

    Contains CSS styling declarations to be applied to the element.

    Contains CSS styling declarations to be applied to the element. Note that it is recommended for styles to be defined in a separate file or files. This attribute and the <style> element have mainly the purpose of allowing for quick styling, for example for testing purposes.

    Definition Classes
    HTMLTag
  103. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  104. def tabindex(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  105. def tabindex: scala.Option[String]

    Permalink

    Is an integer attribute indicates if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position.

    Is an integer attribute indicates if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position. It can takes several values:

    • a negative value means that the element should be focusable, but should not be reachable via sequential keyboard navigation;
    • 0 means that the element should be focusable and reachable via sequential keyboard navigation, but its relative order is defined by the platform convention;
    • a positive value which means should be focusable and reachable via sequential keyboard navigation; its relative order is defined by the value of the attribute: the sequential follow the increasing number of the tabindex. If several elements share the same tabindex, their relative order follows their relative position in the document).
    Definition Classes
    HTMLTag
  106. def tagName: String

    Permalink
    Definition Classes
    ImgTag
  107. def title(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  108. def title: scala.Option[String]

    Permalink

    Contains a text representing advisory information related to the element it belongs to.

    Contains a text representing advisory information related to the element it belongs to. Such information can typically, but not necessarily, be presented to the user as a tooltip.

    Definition Classes
    HTMLTag
  109. def translate(value: String): Img

    Permalink
    Definition Classes
    HTMLTag
  110. def translate: scala.Option[String]

    Permalink

    Is an enumerated attribute that is used to specify whether an element's attribute values and the values of it s Text node children are to be translated when the page is localized, or whether to leave them unchanged.

    Is an enumerated attribute that is used to specify whether an element's attribute values and the values of it s Text node children are to be translated when the page is localized, or whether to leave them unchanged. It can have the following values:

    • empty string and "yes", which indicates that the element will be translated.
    • "no", which indicates that the element will not be translated.
    Definition Classes
    HTMLTag
  111. def updateChild[T <: Tag](id: String, f: (T) ⇒ Node): Node

    Permalink
    Definition Classes
    Tag
  112. def usemap(value: String): Img

    Permalink
  113. def usemap: scala.Option[String]

    Permalink

    The partial URL (starting with '#') of an image map associated with the element.

    The partial URL (starting with '#') of an image map associated with the element.

    Usage note: You cannot use this attribute if the <img> element is a descendant of an <a> or <button> element.

  114. def vspace(value: String): Img

    Permalink
  115. def vspace: scala.Option[String]

    Permalink

    The number of pixels of white space to insert above and below the image.

  116. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  119. def width(value: String): Img

    Permalink
  120. def width: scala.Option[String]

    Permalink

    The intrinsic width of the image in HTML5 CSS pixels, or HTML 4 in pixels or as a percentage.

    The intrinsic width of the image in HTML5 CSS pixels, or HTML 4 in pixels or as a percentage.

  121. def withoutId: Tag

    Permalink
    Definition Classes
    Tag

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HTMLTag[Img]

Inherited from Tag

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped