type
constructors
make |
Create a new Elem in the current Doc. |
---|
fields
enabled |
The enabled attribute for this element, or null if one not applicable. |
---|---|
html |
The HTML markup contained in this element. |
id |
The id for this element. |
pos |
Position of element relative to its parent in pixels. |
scrollPos |
Top left scroll position of element. |
size |
Size of element in pixels. |
text |
Text content contained in this element. |
methods
add |
Add a new element as a child to this element. |
---|---|
addAll |
Add all elements to this element. |
animateStart |
Start an animation on this element using the given key frames. |
animateStop |
Stop the current animation on this element, or do nothing if no animation in progress. |
attr |
Get the given HTML attribute value for this element. |
attrs |
Get |
blur |
Remove focus from this elem. |
children |
Get the child nodes of this element. |
clone |
Return a duplicate of this node. |
closest |
Traverses this element and its parents (heading toward the document root) until it finds a node that matches the specified CSS selector. |
containsChild |
Return |
firstChild |
Get the first child node of this element, or null if this element has no children. |
focus |
Request keyboard focus on this elem. |
fromHtml |
Create an |
fromNative |
Create an |
get |
Convenience for |
hasChildren |
Return |
hasFocus |
Return true if this elem has focus. |
insertBefore |
Insert a new element as a child to this element before the specified reference element. |
invoke |
Invoke the given native DOM function with optional arguments. |
lastChild |
Get the last child node of this element, or null if this element has no children. |
nextSibling |
Get the next sibling to this element, or null if this is the last element under its parent. |
ns |
The namespace URI of this element. |
onEvent |
Attach an event handler for the given event on this element. |
pagePos |
Position of element relative to the whole document. |
parent |
Get the parent Elem of this element, or null if this element has no parent. |
prevSibling |
Get the previous sibling to this element, or null if this is the first element under its parent. |
prop |
Get the given DOM property value for this element. |
querySelector |
Returns the first element that is a descendant of this element on which it is invoked that matches the specified group of selectors. |
querySelectorAll |
Returns a list of all elements descended from this element on which it is invoked that match the specified group of CSS selectors. |
relPos |
Given a page position, return |
remove |
Remove a child element from this element. |
removeAll |
Remove all children from this element. |
removeAttr |
Remove the given HTML attribute from this element. |
removeEvent |
Remove the given event handler from this element. |
renderCanvas |
Paint a |
replace |
Replace existing child node with a new child. |
scrollIntoView |
Scroll parent container so this Elem is visible to user. |
scrollSize |
Scrollable size of element. |
set |
Conveneince for |
setAttr |
Set the given HTML attribute value for this element. |
setProp |
Set the given DOM properity value for this element. |
style |
Get the Style instance for this element. |
tagName |
Get the tag name for this element. |
transition |
Transition a set of CSS properties. |
trap |
The |
Slot Details
add
addAll
animateStart
src
Void animateStart(KeyFrames frames, [Str:Obj]? opts, Duration dur)
Start an animation on this element using the given key frames.
frames := KeyFrames([ KeyFrame("0%", ["transform": "scale(1)"]), KeyFrame("50%", ["transform": "scale(1.1)"]), KeyFrame("100%", ["transform": "scale(1)"]), ]) animate(frames, null, 5sec) animate(frames, ["animation-iteration-count":"infinite"], 1sec)
animateStop
attr
attrs
blur
children
clone
closest
containsChild
enabled
firstChild
focus
fromHtml
fromNative
src
@Js
static Elem fromNative(Obj elem, Type type := dom::Elem#)
Create an Elem
instance from a native JavaScript DOM object. The type
may be specified to create a subclass instance of Elem. Note if the native instance has already been mapped to Fantom, the existing instance is returned and type
will have no effect.
get
hasChildren
hasFocus
html
id
insertBefore
invoke
lastChild
make
nextSibling
ns
onEvent
pagePos
parent
pos
prevSibling
prop
querySelector
querySelectorAll
relPos
remove
removeAll
removeAttr
removeEvent
renderCanvas
replace
scrollIntoView
scrollPos
scrollSize
set
setAttr
setProp
size
style
tagName
text
transition
trap
src
virtual override Obj? trap(Str name, Obj?[]? args := null)
The trap
operator will behave slightly differently based on the namespace of the element.
For HTML elements, trap
works as a convenience for prop
and setProp
:
div := Elem("div") div->tabIndex = 0 // equivalent to div.setProp("tabIndex", 0)
For SVG elements (where ns
is `http://www.w3.org/2000/svg`
), trap
routes to attr
and setAttr
:
svg := Svg.line(0, 0, 10, 10) svg->x1 = 5 // equivalent to svg.setAttr("x1", "5") svg->y1 = 5 // equivalent to svg.setAttr("y1", "5") svg->x2 == "10" // equivalent to svg.attr("x2")