Heim >Web-Frontend >CSS-Tutorial >Kann Canvas als CSS-Hintergrund verwendet werden?
<html> <head> <style> div { background: -webkit-canvas(squares); width:600px; height:600px; border:2px solid black } </style> <script type="application/x-javascript"> function draw(w, h) { var ctx = document.getCSSCanvasContext("2d", "squares", w, h); ctx.fillStyle = "rgb(200,0,0)"; ctx.fillRect (10, 10, 55, 50); ctx.fillStyle = "rgba(0, 0, 200, 0.5)"; ctx.fillRect (30, 30, 55, 50); } </script> </head> <body onload="draw(300, 300)"> <div></div> </body> </html><p>Firefox-Implementierung <p>Firefox 4 hat eine Funktion eingeführt, die jedes Element (einschließlich Canvas) zulässt. zur Verwendung als CSS-Hintergrund:
<p><p>Weitere Informationen zu dieser Funktion finden Sie in den Mozilla Hacks Website.
Das obige ist der detaillierte Inhalt vonKann Canvas als CSS-Hintergrund verwendet werden?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!