Can I use the canvas element as a css background?
|
|
This has been possible in WebKit since 2008, see http://webkit.org/blog/176/css-canvas-drawing/
Currently, Firefox 4 contains a feature, which allows you to use any element (including canvas) as a CSS background, in this fashion:
See http://hacks.mozilla.org/2010/08/mozelement/ for specifics. |
|||||||||||
|
|
Yes!!!! You can put a canvas in CSS background.
I know this is a pretty old question but I felt like posting my answer for people who'd visit this page because this is the correct answer, in just one line of code, using the |
|||||||||||||||
|
|
I think the closest you could get is to render into a |
|||
|
|
|
I've been triying to achieve this same feature past weeks, the best solution I've found its the same proposed by bcat:
The bad news, for static images works great, but with animation in Chrome sometimes "blinks", and in Firefox blinks-a-lot. Maybe someone knows a workaround to get rid of this "nasty blinking". Best regards.
|
|||
|
|
|
You can't directly use a canvas as a CSS background image, but you could create a window sized, absolutely positioned canvas and give it a very low z-index to ensure it stays behind all the other content. Update: Ok, so it is possible to have a background image canvas, but not as yet in a cross browser compatible way. I'd appreciate not getting any more down votes. |
||||
|
|
|
Try "-moz-element(#id)" for CSS background in Firefox. And "-webkit-canvas(name)" for CSS background in WebKit based browsers. |
|||
|
|
|
Short and easy answer is no, you can't. You can not have any element as a CSS background property. Of course you can put another block, transparent, over the canvas, making it look like a background of that element. |
|||||
|