Sets the element's position.
The first two parameters, x and y, set the element's position relative to the top-left corner of the web page.
The third parameter, positionType, is optional. It sets the element's positioning scheme. positionType is a string that can be either 'static', 'fixed', 'relative', 'sticky', 'initial', or 'inherit'.
If no arguments passed, as in myElement.position(), the method returns the element's position in an object, as in { x: 0, y: 0 }.
Ejemplos
Sintaxis
position()
position([x], [y], [positionType])
Parámetros
x
Number:
x-position relative to top-left of window (optional)
y
Number:
y-position relative to top-left of window (optional)
positionType
String:
it can be static, fixed, relative, sticky, initial or inherit (optional)
Returns
Object: object of form `{ x: 0, y: 0 }` containing the element's position.
This page is generated from the comments in src/dom/dom.js . Please feel free to edit it and submit a pull request!