I'm using the KineticJS text objects with gradient fills etc to act as buttons. But now that the verticalAlign property was recently removed, how do I vertically align my text in its bounding box? Why was the property removed if there are no alternatives?
|
verticalAlign property of a text did not make any sense to me. Text is a not a Kinetic.Container but a Kinetic.Shape. IMO, a Kinetic.Shape should not have vertialAlign. It's like a Circle has verticalAlign. Aligned to what? aligned to any container, layer or stage? see what I am saying? That's why it is removed, i guess, and hopefully, those property should be added back to KineticContainer along with horizontalAlign. If you want your text vertically aligned to a rectangle or circle. At this point, you need to set y position of your text to vertically align to your container. If your container is 100 pixel high and your text is 30px high, then you will get y position as 35.
|
||||
|
|
|
While this is not much of a solution you could add '\n' to the beginning of you text to create a blank line and move the text down. You can do add lines dynamically based on certain conditions, like height. Example:
You could also move the background rectangle behind the text to make it appear vertically aligned. |
|||
|
|
|
According to this, support has been temporarily dropped, and will hopefully be added in the near future. |
|||
|
|
