复制代码代码如下: !DOCTYPE html html head meta http-equiv="X-UA-Compatible" content="chrome=IE8" meta http-equiv="Content-type" content="text/html;charset=UTF-8" title Canvas Clip Demo /title link href="default.css" rel="stylesheet" / script var ctx = null; // global variable 2d context var imageTexture = null; window.onload = function() { var canvas = document.getElementById("text_canvas"); console.log(canvas.parentNode.clientWidth); canvas.width = canvas.parentNode.clientWidth; canvas.height = canvas.parentNode.clientHeight;
if (!canvas.getContext) { console.log("Canvas not supported. Please install a HTML5 compatible browser."); return; } var context = canvas.getContext('2d');
// section one - shadow and blur context.fill ; context.fillRect(0, 0, canvas.width, canvas.height/4); context.font = '60pt Calibri';