I wanna make the buttons for the game I'm making as real html buttons, but they need to be inside the canvas.
How would I go about doing this?
|
I wanna make the buttons for the game I'm making as real html buttons, but they need to be inside the canvas. How would I go about doing this?
| |||
|
feedback
|
|
Given that the canvas element has a transparent content model, it may contain fallback elements which are displayed in the event that the If you display a list of controls in a menu element, you can position the menu relative to the canvas' parent, and have the buttons "hovering" over the canvas:
CSS:
| |||
|
feedback
|
|
I don't believe you can 'put' html content inside a canvas tag, whatever you put in there will actually be displayed if the browser doesn't support | |||||||
feedback
|
|
HTML inside canvas is not possible, but maybe you could position your elements absolutely so that they are "floating" over the canvas, but not inside it. | |||
|
feedback
|
|
you can put the button on top of the canvas using z-nidex by giving the canvas z-index lower than button.
where x and y are numbers. | |||
feedback
|
|
HTML inside of canvas is not possible. | |||
|
feedback
|