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?

link|improve this question

73% accept rate
feedback

5 Answers

up vote 8 down vote accepted

Given that the canvas element has a transparent content model, it may contain fallback elements which are displayed in the event that the canvas element is unsupported. They will not be displayed if the canvas is supported.

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:

<div id="container">
  <canvas id="viewport">
  </canvas>
  <menu id="controls">
  </menu>
</div>

CSS:

#container
{
  height: 400px;
  position: relative;
  width: 400px;
}
#viewport
{
  height: 100%;
  width: 100%;
}
#controls
{
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}
link|improve this answer
That worked. Thank you very much. – CyanPrime Jan 29 '11 at 5:32
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 <canvas>. You can, however, position your buttons absolutely over top of a canvas or render areas in your canvas that 'look' like buttons and handle the events yourself (a lot of work).

link|improve this answer
1  
You mean whatever you put inside canvas element (not tag) ;) – kangax Jan 26 '11 at 13:49
kangax is correct, I must be more clear! – Paul Spencer Jan 26 '11 at 14:08
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.

link|improve this answer
feedback

you can put the button on top of the canvas using z-nidex

by giving the canvas z-index lower than button.

<canvas style="z-index:1"></canvas>
<input type .... style="z-index:2; position:absolute; top:x, lef:y"></input>

where x and y are numbers.

link|improve this answer
I found that this worked in chrome, but for firefox I had to give the canvas a negative z-index. – skorulis May 23 '11 at 13:01
feedback

HTML inside of canvas is not possible.
But if you really want to use buttons, why don't you try positioning the buttons on top of the canvas?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.