标签:
<!DOCTYPE HTML> <html> <head> <style> body { margin: 0px; padding: 0px; } </style> </head> <body> <canvas id="myCanvas" width="578" height="200"></canvas> <script> var canvas = document.getElementById(‘myCanvas‘); var context = canvas.getContext(‘2d‘); // do cool things with the context context.font = ‘40pt Calibri‘; context.fillStyle = ‘blue‘; context.fillText(‘Hello World!‘, 150, 100); </script> </body> </html>
HTML5
标签:
原文地址:http://www.cnblogs.com/peterfan/p/5122086.html