다음을 사용하여 HTML5 Canvas로 패턴을 만듭니다. createPattern(image,repeat)− 이 메서드는 이미지를 사용하여 패턴을 만듭니다. 두 번째 매개변수는 반복, 반복-x, 반복-y 및 반복 없음 값 중 하나를 포함하는 문자열일 수 있습니다. 빈 문자열이나 null이 지정되면 중복된 것으로 간주됩니다.
다음 코드를 실행하여 패턴을 만드는 방법을 확인할 수 있습니다 -
<!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>
위 내용은 HTML5 Canvas를 사용하여 패턴 만들기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!