Extends
Methods
bottom()
Aligns the object flush against the bottom the screen.
- Inherited From:
- Source:
center()
Centers an object vertically and horizontally. Is chainable.
- Inherited From:
- Source:
centerAt(nx, ny)
Centers the object at a specified x and y coordinate.
Parameters:
Name | Type | Description |
---|---|---|
nx |
number | x coordinate to center the object around |
ny |
number | y coordinate to cetner the object around |
- Inherited From:
- Source:
centerH()
Centers the object horizontally.
- Inherited From:
- Source:
centerV()
Centers the object vertically.
- Inherited From:
- Source:
destroy()
Removes the object from the stage, and removes the node from the DOM.
- Inherited From:
- Source:
getCenter() → {Object}
Gets the center coordinates of the object.
- Inherited From:
- Source:
Returns:
Object with an x and y attribute with the center of the object
- Type
- Object
getHeight() → {number}
Gets the height of the object.
- Inherited From:
- Source:
Returns:
the current height of the object
- Type
- number
getWidth() → {number}
Gets the width of the object.
- Inherited From:
- Source:
Returns:
the current width of the object
- Type
- number
getX() → {number}
Gets the object's x position
- Inherited From:
- Source:
Returns:
the object's x coordinate
- Type
- number
getY() → {number}
Gets the object's y position
- Inherited From:
- Source:
Returns:
the object's y coordinate
- Type
- number
grow(a, b)
Adds a fixed amount to the width and height of the object. If the last paramter is omitted then both the width and the height are increased by the passed amount. (ex. grow(5, 5) is the same as grow(5))
Parameters:
Name | Type | Description |
---|---|---|
a |
number | the amount to increase the height in pixels |
b |
number | the amount to increase the width in pixels |
- Inherited From:
- Source:
hide()
Hides the object. Is Chainable.
- Inherited From:
- Source:
isBottomOf(a) → {boolean}
Determines whether or not an object is below of another object.
Parameters:
Name | Type | Description |
---|---|---|
a |
Object | Object that is or derives from sjs.Base |
- Inherited From:
- Source:
Returns:
true if the object is below of the passed object
- Type
- boolean
isLeftOf(a) → {boolean}
Determines whether or not an object is to the left of another object.
Parameters:
Name | Type | Description |
---|---|---|
a |
Object | Object that is or derives from sjs.Base |
- Inherited From:
- Source:
Returns:
true if the object is left of the passed object
- Type
- boolean
isRightOf(a) → {boolean}
Determines whether or not an object is to the right of another object.
Parameters:
Name | Type | Description |
---|---|---|
a |
Object | Object that is or derives from sjs.Base |
- Inherited From:
- Source:
Returns:
true if the object is left of the passed object
- Type
- boolean
isTopOf(a) → {boolean}
Determines whether or not an object is above of another object.
Parameters:
Name | Type | Description |
---|---|---|
a |
Object | Object that is or derives from sjs.Base |
- Inherited From:
- Source:
Returns:
true if the object is above of the passed object
- Type
- boolean
makeGlobal()
Removes the object from the stage so it is always visible. Is Chainable.
- Inherited From:
- Source:
moveBottomOf(a)
Moves an object exactly below of another object.
Parameters:
Name | Type | Description |
---|---|---|
a |
Object | Object to move below of that is or derives from sjs.Base |
- Inherited From:
- Source:
moveLeftOf(a)
Moves an object exactly to the left of another object.
Parameters:
Name | Type | Description |
---|---|---|
a |
Object | Object to move to the left of that is or derives from sjs.Base |
- Inherited From:
- Source:
moveRightOf(a)
Moves an object exactly to the right of another object.
Parameters:
Name | Type | Description |
---|---|---|
a |
Object | Object to move to the right of that is or derives from sjs.Base |
- Inherited From:
- Source:
moveTo(x, y)
Sets the object's position x and y coordinates.
Parameters:
Name | Type | Description |
---|---|---|
x |
number | the new x coordinate |
y |
number | the new y coordinate |
- Inherited From:
- Source:
moveTopOf(a)
Moves an object exactly above of another object.
Parameters:
Name | Type | Description |
---|---|---|
a |
Object | Object to move above of that is or derives from sjs.Base |
- Inherited From:
- Source:
offset(x, y)
Moves the Object to a new position relative to
its current position.
Parameters:
Name | Type | Description |
---|---|---|
x |
number | The amount to shift in the x(horizontal) direction. |
y |
number | The amount to shift in the y(vertical) direction. |
- Inherited From:
- Source:
right()
Aligns the object flush against the right side of the screen.
- Inherited From:
- Source:
scaleSize(a, b)
Scales the object by multiplying the width and the height. If the last paramter is omitted, then both the width and height are scaled. (ex. scaleSize(5) is the same as scaleSize(5, 5))
Parameters:
Name | Type | Description |
---|---|---|
a |
number | the amount to scale the width in pixels |
b |
number | the amount to scale the height in pixels (optional) |
- Inherited From:
- Source:
setHeight(h)
Sets the object's Height.
Parameters:
Name | Type | Description |
---|---|---|
h |
number | the new height in pixels |
- Inherited From:
- Source:
setSize()
Sets the size of the object. If only the first paramter is passed, then both the height and width are set to that value.
- Inherited From:
- Source:
setWidth(w)
Sets the object's width.
Parameters:
Name | Type | Description |
---|---|---|
w |
number | the new width in pixels |
- Inherited From:
- Source:
show()
Shows the object. Is Chainable.
- Inherited From:
- Source:
top()
Moves the object to the top of the screen (sets the y coordinate to 0).
- Overrides:
- Source: