Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

สร้างรูปแบบด้วย HTML5 Canvas


ใช้วิธีการต่อไปนี้เพื่อสร้างรูปแบบด้วย HTML5 Canvas:createPattern(image, repetition)− วิธีนี้จะใช้รูปภาพเพื่อสร้างรูปแบบ อาร์กิวเมนต์ที่สองอาจเป็นสตริงที่มีค่าใดค่าหนึ่งต่อไปนี้:repeat, repeat-x, repeat-y และ no-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>