使用 HTML5 Canvas 创建图案
使用以下方法使用 HTML5 Canvas 创建图案:createPattern(图像,重复);该方法将使用图像创建图案。第二个参数可以是包含下列值之一的字符串:repeat(重复)、repeat-x(重复 x)、repeat-y(重复 y)和 no-repeat(不重复)。如果指定空字符串或 null,则会假定 repeat(重复)。
示例
你可以尝试运行以下代码来学习如何创建图案 -
<!DOCTYPE HTML> <html> <head> <style> #test { width:100px; height:100px; margin: 0px auto; } </style> <script> function drawShape(){ // get the canvas element using the DOM var canvas = document.getElementById('mycanvas'); // Make sure we don't execute when canvas isn't supported if (canvas.getContext){ // use getContext to use the canvas for drawing var ctx = canvas.getContext('2d'); // create new image object to use as pattern var img = new Image(); img.src = 'images/pattern.jpg'; img.onload = function(){ // create pattern var ptrn = ctx.createPattern(img,'repeat'); ctx.fillStyle = ptrn; ctx.fillRect(0,0,150,150); } } else { alert('You need Safari or Firefox 1.5+ to see this demo.'); } } </script> </head> <body id = "test" onload = "drawShape();"> <canvas id = "mycanvas"></canvas> </body> </html>
广告